From 7915baed6e03720cd32f00649b46092b69f08d9c Mon Sep 17 00:00:00 2001 From: Alastair Poole Date: Sun, 17 Jun 2018 08:45:46 +0100 Subject: [PATCH] Make preparations of a public release. --- NEWS | 19 +++++++++++++++++++ src/main.c | 7 ++++--- 2 files changed, 23 insertions(+), 3 deletions(-) create mode 100644 NEWS 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();