diff --git a/MANIFEST b/MANIFEST index 4a2ff26..842e783 100644 --- a/MANIFEST +++ b/MANIFEST @@ -28,6 +28,7 @@ debian/source/format epour/Epour.py epour/Globals.py epour/__init__.py +epour/session.py epour/gui/Main.py epour/gui/Notify.py epour/gui/Preferences.py diff --git a/debian/changelog b/debian/changelog index dee1cb1..dea6703 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,15 @@ +epour (0.5.2.0) precise; urgency=low + + * Handle file:// URI's + * Make the magnet link entry editable so it can be copied easily when using EFL 1.7. + * Add auto-pasted text to add torrent selectors magnet entry (EFL1.8 only). + * Update desktop file, thanks to cippp for ideas. + * Add identification info to session init and settings. + * Move session to its own file. + * Allow a higher maximum for the settings spinners + + -- Kai Huuhko Sat, 17 Aug 2013 21:27:14 +0300 + epour (0.5.1) precise; urgency=low * Fix limit widgets diff --git a/epour/Globals.py b/epour/Globals.py index 6e35652..3dae9d5 100644 --- a/epour/Globals.py +++ b/epour/Globals.py @@ -1,6 +1,6 @@ import os -version = "0.5.1.0" +version = "0.5.2.0" conf_dir = os.path.expanduser(os.path.join("~", ".config", "epour")) conf_path = os.path.join(conf_dir, "epour.conf") data_dir = os.path.expanduser(os.path.join("~", ".local", "share", "epour"))