From 0b8924b345ab9055887d2566d7fa5651469b29d1 Mon Sep 17 00:00:00 2001 From: Huluti Date: Thu, 8 Dec 2016 17:48:43 +0100 Subject: [PATCH] Update README --- README.md | 9 ++++----- src/manjaro-hello.py | 2 +- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 1c686bb..1a7d3ec 100644 --- a/README.md +++ b/README.md @@ -9,15 +9,15 @@ New Manjaro Welcome Screen Manjaro-hello is widely inspired by [manjaro-welcome](https://github.com/manjaro/manjaro-welcome). I've started to work on a new welcome screen because I think that the current has several defects, some of which are inherited from the technologies used. - First, it is based on Gtk3 but because of the use of Webkit and its old Python binding, it is forced to use Gtk2. -- All the app content is displayed by using HTML that is rendered by Webkit. This makes the evolution of the software very complicated. For example, it is very hard to make a translation system. +- All content of the app is displayed with HTML that is rendered by Webkit. This makes the evolution of the software very complicated. For example, it is very hard to make a translation system. - By using web technologies and Webkit, the renderer is a little bit slower than using native technologies. - Can't know if each link will be open in an external browser or in app. -For all this reasons, I have choosen to build a new software from scratch but keeping the original structure. +For all this reasons, I have choosen to build a new software from scratch but keeping the original structure. Currently, manjaro-hello has all the major features of manjaro-welcome but have a translation system. - Interface is translated using gettext and po files. (src/locale) -- Pages are translated using differents files. (src/data) +- Pages are translated using differents files. (src/pages) ## What goals ? @@ -34,9 +34,8 @@ Manjaro-hello is build with Python, Gtk3 and Glade. For the moment, even if the soft works, it is not finished. - We have to test it and fix bugs. - Make translations to distribute it in all the world. -- Improve way to render pages. (use a Markdown-like system ?) +- Improve the way to render pages (use a Markdown-like system ?). - Improve the look (manjaro-welcome is very great-looking). -- Add "Installation" section instead of project in live sessions. ## Manjaro forum discussion diff --git a/src/manjaro-hello.py b/src/manjaro-hello.py index 3fb51bd..9cd1290 100644 --- a/src/manjaro-hello.py +++ b/src/manjaro-hello.py @@ -20,7 +20,7 @@ class ManjaroHello(): config_path = os.path.expanduser("~") + "/.config/" #share_path = "/usr/share/" - self.preferences_path = config_path + self.app +".json" + self.preferences_path = config_path + self.app + ".json" self.desktop_path = os.getcwd() + "/" + self.app + ".desktop" # later use share_path self.autostart_path = config_path + "autostart/" + self.app + ".desktop" self.icon_path = self.app + ".png" # later use share_path