Make preparations of a public release.

This commit is contained in:
Alastair Poole 2018-06-17 08:45:46 +01:00
parent 175034919a
commit 7915baed6e
2 changed files with 23 additions and 3 deletions

19
NEWS Normal file
View File

@ -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.

View File

@ -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();