From e407217e37fdc0984c61a63c2db1408960cfcfe5 Mon Sep 17 00:00:00 2001 From: lxnay Date: Thu, 8 Jan 2009 20:13:43 +0000 Subject: [PATCH] Entropy/Notification Applet: - change config file name Entropy/TODO: - updated TODO git-svn-id: http://svn.sabayonlinux.org/projects/entropy/trunk@2870 cd1c1023-2f26-0410-ae45-c471fc1f0318 --- TODO | 26 +++++++++---------- .../src/etp_applet_config.py | 5 ++-- 2 files changed, 14 insertions(+), 17 deletions(-) diff --git a/TODO b/TODO index 199bf0daa..ecd3e8526 100644 --- a/TODO +++ b/TODO @@ -1,22 +1,14 @@ TODO list + - server-side db backup tool + - add changelog to packages - split entropy.py into entropy package (move exceptionTools to something saner) - implement pdepend support in dependencies sorting - - automatic client db backup - move etpConst['conflicting_tagged_packages'] elsewhere - move etpConst['filesystemdirs'] and etpConst['filesystemdirsmask'] to config file - - UGC: personal package sets - - UGC: bug report documents? - - UGC: bbcode docs? - - server-side messages collection - - community repos: add repository handling on dependencies to avoid library breakages - - External trigger: rewrite support and use bash - - use expiration as a base to have and handle multiple packages in repo? - - add changelog to packages - - documentation + man page + - automatic client db backup - find a way to better handle real smartapps deps (need split PDEPEND?) - - server-side: packages upload through socket? (removing handlers s*it) - - shrink sql indexes (remove branch?) + - documentation + man page Repository Manager: - fix queue length issue with extended commands on the repository manager server @@ -26,5 +18,11 @@ TODO list Spritz: - package sets add/remove tool - allow package remasking - - ability to change colours - - deptest/libtest \ No newline at end of file + - deptest/libtest + +Proposed for Entropy >1.0 (require API changes): + - UGC: personal package sets + - UGC: bug report documents? + - UGC: bbcode docs? + - External trigger: rewrite support and use bash + - use expiration as a base to have and handle multiple packages in repo? \ No newline at end of file diff --git a/entropy-notification-applet/src/etp_applet_config.py b/entropy-notification-applet/src/etp_applet_config.py index 7aa272295..f151d7131 100644 --- a/entropy-notification-applet/src/etp_applet_config.py +++ b/entropy-notification-applet/src/etp_applet_config.py @@ -31,9 +31,8 @@ APPLET_ENABLED = 1 ANIMATION_TOTAL_TIME = 0.75 home = os.getenv("HOME") -if not home: - home = "/tmp" -SETTINGS_FILE = os.path.join(home, ".config/entropy/settings") +if not home: home = "/tmp" +SETTINGS_FILE = os.path.join(home, ".config/entropy/entropy-notification-applet.conf") def save_settings(settings): global SETTINGS_FILE