diff --git a/NEWS b/NEWS new file mode 100644 index 0000000..4b60391 --- /dev/null +++ b/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. + diff --git a/src/main.c b/src/main.c index ba2a2be..a431522 100644 --- a/src/main.c +++ b/src/main.c @@ -1,6 +1,9 @@ /* Copyright 2018. Alastair Poole 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();