diff --git a/ChangeLog b/ChangeLog index 06edf29d7..ffaf3b2dc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,4 @@ -=== Deluge 1.3.13 (In Progress) === +=== Deluge 1.3.13 (20 July 2016) === ==== Core ==== * Increase RSA key size from 1024 to 2048 and use SHA256 digest. * Fixed empty error message from certain trackers. diff --git a/deluge/i18n/deluge.pot b/deluge/i18n/deluge.pot index 139d68a4e..4e6ce2ca9 100644 --- a/deluge/i18n/deluge.pot +++ b/deluge/i18n/deluge.pot @@ -6,7 +6,7 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: Deluge 1.3.12\n" +"Project-Id-Version: Deluge 1.3.13\n" "Report-Msgid-Bugs-To: http://deluge-torrent.org\n" "POT-Creation-Date: 2016-06-19 12:14+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" diff --git a/deluge/ui/gtkui/aboutdialog.py b/deluge/ui/gtkui/aboutdialog.py index bca7bb6c8..99ca45497 100644 --- a/deluge/ui/gtkui/aboutdialog.py +++ b/deluge/ui/gtkui/aboutdialog.py @@ -57,7 +57,7 @@ class AboutDialog: version = deluge.common.get_version() self.about.set_copyright( - _("Copyright %(year_start)s-%(year_end)s Deluge Team") % {"year_start": 2007, "year_end": 2015}) + _("Copyright %(year_start)s-%(year_end)s Deluge Team") % {"year_start": 2007, "year_end": 2016}) self.about.set_comments( _("A peer-to-peer file sharing program\nutilizing the BitTorrent protocol.") + "\n\n" + _("Client:") + " %s\n" % version) diff --git a/docs/man/deluge-console.1 b/docs/man/deluge-console.1 index ec86c22fc..1f3907453 100644 --- a/docs/man/deluge-console.1 +++ b/docs/man/deluge-console.1 @@ -1,4 +1,4 @@ -.TH DELUGE-CONSOLE 1 "September 2015" "1.3.12" +.TH DELUGE-CONSOLE 1 "July 2016" "1.3.13" .SH NAME deluge-console - a bittorrent client curses interface diff --git a/docs/man/deluge-gtk.1 b/docs/man/deluge-gtk.1 index d002965ab..ad032884d 100644 --- a/docs/man/deluge-gtk.1 +++ b/docs/man/deluge-gtk.1 @@ -1,4 +1,4 @@ -.TH DELUGE-GTK 1 "September 2015" "1.3.12" +.TH DELUGE-GTK 1 "July 2016" "1.3.13" .SH NAME deluge-gtk - a bittorrent client gtk interface diff --git a/docs/man/deluge-web.1 b/docs/man/deluge-web.1 index 4769456fa..6694fc842 100644 --- a/docs/man/deluge-web.1 +++ b/docs/man/deluge-web.1 @@ -1,4 +1,4 @@ -.TH DELUGE-WEB 1 "September 2015" "1.3.12" +.TH DELUGE-WEB 1 "July 2016" "1.3.13" .SH NAME deluge-web - a bittorrent client ajax web interface diff --git a/docs/man/deluge.1 b/docs/man/deluge.1 index a86a94783..dc0353532 100644 --- a/docs/man/deluge.1 +++ b/docs/man/deluge.1 @@ -1,4 +1,4 @@ -.TH DELUGE 1 "September 2015" "1.3.12" +.TH DELUGE 1 "July 2016" "1.3.13" .SH NAME deluge - a bittorrent client diff --git a/docs/man/deluged.1 b/docs/man/deluged.1 index e7facd7dd..3a5a7d4e0 100644 --- a/docs/man/deluged.1 +++ b/docs/man/deluged.1 @@ -1,4 +1,4 @@ -.TH DELUGED 1 "September 2015" "1.3.12" +.TH DELUGED 1 "July 2016" "1.3.13" .SH NAME deluged - a bittorrent client daemon diff --git a/osx/Info.plist b/osx/Info.plist index d143d0c88..0cd51009a 100644 --- a/osx/Info.plist +++ b/osx/Info.plist @@ -11,13 +11,13 @@ CFBundleExecutable Deluge CFBundleShortVersionString - 1.3.12 + 1.3.13 CFBundleVersion - 1.3.12 + 1.3.13 CFBundleGetInfoString - 1.3.12 (c) 2008-2015 Deluge Team http://deluge-torrent.org/ + 1.3.13 (c) 2008-2016 Deluge Team http://deluge-torrent.org/ NSHumanReadableCopyright - Copyright 2008-2015 Deluge Team + Copyright 2008-2016 Deluge Team CFBundleDevelopmentRegion English CFBundleInfoDictionaryVersion diff --git a/setup.py b/setup.py index b62d6c331..47f982fde 100755 --- a/setup.py +++ b/setup.py @@ -535,7 +535,7 @@ if windows_check(): # Main setup setup( name = "deluge", - version = "1.3.12", + version = "1.3.13", fullname = "Deluge Bittorrent Client", description = "Bittorrent Client", author = "Andrew Resch, Damien Churchill",