netstar pushed a commit to branch master.

http://git.enlightenment.org/apps/evisum.git/commit/?id=acf601c456e58e35798bf7b515bf277d3a2a7bd7

commit acf601c456e58e35798bf7b515bf277d3a2a7bd7
Author: Alastair Poole <[email protected]>
Date:   Sat Apr 18 15:58:20 2020 +0100

    0.4.0: Prepare for a release.
    
    Let's try to make this work good for a release with EFL 1.24.
---
 NEWS                        | 9 ++++++---
 README                      | 2 +-
 VERSION                     | 2 +-
 data/desktop/evisum.desktop | 2 +-
 src/bin/main.c              | 2 +-
 src/bin/ui.c                | 6 +++---
 6 files changed, 13 insertions(+), 10 deletions(-)

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

-- 


Reply via email to