raster pushed a commit to branch master.

http://git.enlightenment.org/apps/edi.git/commit/?id=019451e8b640edc3c942ebc4c5cfecf55d14b05c

commit 019451e8b640edc3c942ebc4c5cfecf55d14b05c
Author: Carsten Haitzler (Rasterman) <ras...@rasterman.com>
Date:   Mon Apr 5 16:41:02 2021 +0100

    edi about - remove or fix broken buttons like donate, website etc.
    
    donmations - zero ever happened, so stop sounding beggy. about website
    doesnt exist - point to e's about edit page, and well bugs are not
    going to get looke dat on github.
---
 src/bin/screens/edi_about.c | 20 +++-----------------
 1 file changed, 3 insertions(+), 17 deletions(-)

diff --git a/src/bin/screens/edi_about.c b/src/bin/screens/edi_about.c
index 736a327..0b466d3 100644
--- a/src/bin/screens/edi_about.c
+++ b/src/bin/screens/edi_about.c
@@ -127,7 +127,7 @@ edi_about_show(Evas_Object *mainwin)
    button = elm_button_add(box);
    elm_object_text_set(button, _("Visit Website"));
    evas_object_smart_callback_add(button, "clicked", _edi_about_url_cb,
-                                  "http://edi-ide.com";);
+                                  
"https://www.enlightenment.org/about-edi.md";);
    elm_box_pack_end(buttonbox, button);
    evas_object_show(button);
 
@@ -137,9 +137,9 @@ edi_about_show(Evas_Object *mainwin)
    evas_object_show(space);
 
    button = elm_button_add(box);
-   elm_object_text_set(button, _("Report Issue"));
+   elm_object_text_set(button, _("Report Issues"));
    evas_object_smart_callback_add(button, "clicked", _edi_about_url_cb,
-                                  
"https://github.com/Enlightenment/edi/issues/new";);
+                                  "https://phab.enlightenment.org";);
    elm_box_pack_end(buttonbox, button);
    evas_object_show(button);
 
@@ -148,25 +148,11 @@ edi_about_show(Evas_Object *mainwin)
    elm_box_pack_end(buttonbox, space);
    evas_object_show(space);
 
-   button = elm_button_add(box);
-   elm_object_text_set(button, _("Help Translate"));
-   evas_object_smart_callback_add(button, "clicked", _edi_about_url_cb,
-                                  
"https://www.transifex.com/enlightenment/edi-ide/languages/";);
-   elm_box_pack_end(buttonbox, button);
-   evas_object_show(button);
-
    space = elm_box_add(box);
    evas_object_size_hint_min_set(space, 20 * elm_config_scale_get(), 0);
    elm_box_pack_end(buttonbox, space);
    evas_object_show(space);
 
-   button = elm_button_add(box);
-   elm_object_text_set(button, _("Donate Now"));
-   evas_object_smart_callback_add(button, "clicked", _edi_about_url_cb,
-                                  
"https://www.bountysource.com/teams/edi-ide";);
-   elm_box_pack_end(buttonbox, button);
-   evas_object_show(button);
-
    evas_object_resize(win, 520 * elm_config_scale_get(), 360 * 
elm_config_scale_get());
    evas_object_show(win);
 

-- 


Reply via email to