Epour 0.5.2.0

This commit is contained in:
Kai Huuhko 2013-08-17 21:23:39 +03:00
parent ef72f3673e
commit bd1774baa6
3 changed files with 14 additions and 1 deletions

View File

@ -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

12
debian/changelog vendored
View File

@ -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 <kai.huuhko@gmail.com> Sat, 17 Aug 2013 21:27:14 +0300
epour (0.5.1) precise; urgency=low
* Fix limit widgets

View File

@ -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"))