diff --git a/NEWS b/NEWS index 995e543..c999f19 100644 --- a/NEWS +++ b/NEWS @@ -1,14 +1,17 @@ ============ -Evisum 0.3.4 +Evisum 0.4.0 ============ + * Use a generic list for process listing (pretty). + * Add process menu. + * Set application priority (nice). + * UI improvements. * Offer kvm_openfiles means of obtaining PID list on FreeBSD-based platforms. This requires specific permissions (s+g kmem). We fallback if that fails. - * Get rid of the horrible entry-based process list and use a genlist (meh). * Save settings upon exit (kb/mb/gb) and sorting. - * UI Changes (Too many labels and progress bars). + * Remove redundant code. * Other stuff. ============ diff --git a/README b/README index 9e402f1..e2e5391 100644 --- a/README +++ b/README @@ -1,6 +1,6 @@ # evisum -System Information (EFL) +System Monitor (EFL) This is a process monitor and system monitor for Linux, macOS, FreeBSD, DragonFlyBSD and OpenBSD. diff --git a/VERSION b/VERSION index 42045ac..1d0ba9e 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.3.4 +0.4.0 diff --git a/data/desktop/evisum.desktop b/data/desktop/evisum.desktop index 8df9ef3..dfc53b6 100644 --- a/data/desktop/evisum.desktop +++ b/data/desktop/evisum.desktop @@ -1,7 +1,7 @@ [Desktop Entry] Type=Application Name=Evisum -GenericName=System Activity +GenericName=System Monitor GenericName[fr]=Moniteur d'activité système GenericName[it]=Attività del sistema GenericName[ru]=Системная активность diff --git a/src/bin/main.c b/src/bin/main.c index 325cc51..1c589d0 100644 --- a/src/bin/main.c +++ b/src/bin/main.c @@ -28,7 +28,7 @@ _win_add(void) elm_icon_standard_set(icon, "evisum"); elm_win_icon_object_set(win, icon); evas_object_resize(win, EVISUM_SIZE_WIDTH * elm_config_scale_get(), EVISUM_SIZE_HEIGHT * elm_config_scale_get()); - elm_win_title_set(win, "System Activity"); + elm_win_title_set(win, "Evisum: System Monitor"); elm_win_center(win, EINA_TRUE, EINA_TRUE); ui = ui_add(win); diff --git a/src/bin/ui.c b/src/bin/ui.c index 0bb544e..0d1fdcf 100644 --- a/src/bin/ui.c +++ b/src/bin/ui.c @@ -2617,7 +2617,7 @@ _ui_tabs_add(Evas_Object *parent, Ui *ui) evas_object_size_hint_weight_set(button, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND); evas_object_size_hint_align_set(button, EVAS_HINT_FILL, EVAS_HINT_FILL); evas_object_size_hint_min_set(button, TAB_BTN_SIZE * elm_config_scale_get(), 0); - elm_object_text_set(button, "General"); + elm_object_text_set(button, "Processes"); evas_object_show(button); elm_object_content_set(border, button); elm_box_pack_end(hbox, border); @@ -2649,7 +2649,7 @@ _ui_tabs_add(Evas_Object *parent, Ui *ui) evas_object_size_hint_weight_set(button, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND); evas_object_size_hint_align_set(button, EVAS_HINT_FILL, EVAS_HINT_FILL); evas_object_size_hint_min_set(button, TAB_BTN_SIZE * elm_config_scale_get(), 0); - elm_object_text_set(button, "Memory"); + elm_object_text_set(button, "RAM"); evas_object_show(button); elm_object_content_set(border, button); elm_box_pack_end(hbox, border); @@ -2681,7 +2681,7 @@ _ui_tabs_add(Evas_Object *parent, Ui *ui) evas_object_size_hint_weight_set(button, EVAS_HINT_FILL, EVAS_HINT_EXPAND); evas_object_size_hint_align_set(button, EVAS_HINT_FILL, EVAS_HINT_FILL); evas_object_size_hint_min_set(button, TAB_BTN_SIZE * elm_config_scale_get(), 0); - elm_object_text_set(button, "Misc"); + elm_object_text_set(button, "Other"); evas_object_show(button); elm_object_content_set(border, button); elm_box_pack_end(hbox, border);