Make preparations of a public release.

edi-0.5
Alastair Poole 6 years ago
parent 175034919a
commit 7915baed6e
  1. 19
      NEWS
  2. 7
      src/main.c

19
NEWS

@ -0,0 +1,19 @@
============
Evisum 0.1.0
============
Features:
* Full support across Linux, MacOS, FreeBSD and OpenBSD.
* Process Listing.
* Single-process view.
* Start/stop/kill individual process.
* Process PID, UID, name, thread count, memory use, nice, priority,
state, CPU ID and CPU usage.
* CPU monitoring.
* Memory monitoring.
* Disk usage monitoring.
* Network usage monitoring.
* CPU temperature monitoring.
* Battery and power status.

@ -1,6 +1,9 @@
/* Copyright 2018. Alastair Poole <netstar@gmail.com>
See LICENSE file for details.
*/
#define VERSION "0.1.0"
#include "process.h"
#include "system.h"
#include "ui.h"
@ -41,13 +44,11 @@ _win_add(void)
int
main(int argc, char **argv)
{
Evas_Object *win;
eina_init();
ecore_init();
elm_init(argc, argv);
win = _win_add();
_win_add();
ecore_main_loop_begin();

Loading…
Cancel
Save