diff --git a/NEWS.md b/NEWS.md index d14aaaff53c2..faf4a8297771 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,11 +1,16 @@ # Release Notes -## Version 3.2.4 (Release Candidate 1) +## Version 3.2.4 (August 7, 2022) ### Corrections * Fixed a regression where shared folders could not be added using the Preferences dialog * Fixed a performance regression when updating file transfer lists + * Fixed a potential crash when displaying the estimated time of a very large download + +### Issues closed on GitHub + + * File sharing error ([#2142](https://github.com/nicotine-plus/nicotine-plus/issues/2142)) ## Version 3.2.3 (August 5, 2022) diff --git a/README.md b/README.md index 1ad5e9c0c67a..7fb1897885f6 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Check out the [screenshots](data/screenshots/SCREENSHOTS.md) and [source code](h ## Download -The current stable version of Nicotine+ is 3.2.3, released on August 5, 2022. See the [release notes](NEWS.md). +The current stable version of Nicotine+ is 3.2.4, released on August 7, 2022. See the [release notes](NEWS.md). Downloads are available for: diff --git a/data/org.nicotine_plus.Nicotine.appdata.xml.in b/data/org.nicotine_plus.Nicotine.appdata.xml.in index 0c7d65546662..573aea8a05b2 100644 --- a/data/org.nicotine_plus.Nicotine.appdata.xml.in +++ b/data/org.nicotine_plus.Nicotine.appdata.xml.in @@ -57,6 +57,7 @@ mild + diff --git a/debian/changelog b/debian/changelog index b5aaaeb2fde1..f95d0c301cfc 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,8 +1,8 @@ -nicotine (3.2.4-rc1) jammy; urgency=medium +nicotine (3.2.4-1) jammy; urgency=medium - * Development version. + * Latest upstream. - -- Mat Sat, 06 Aug 2022 01:41:19 +0300 + -- Mat Sun, 07 Aug 2022 17:08:56 +0300 nicotine (3.2.3-1) jammy; urgency=medium diff --git a/pynicotine/config.py b/pynicotine/config.py index 5a1c2eaad7f1..f9b5d6efa772 100644 --- a/pynicotine/config.py +++ b/pynicotine/config.py @@ -55,7 +55,7 @@ def __init__(self): config_dir, self.data_dir = self.get_user_directories() self.filename = os.path.join(config_dir, "config") self.plugin_dir = os.path.join(self.data_dir, "plugins") - self.version = "3.2.4rc1" + self.version = "3.2.4" self.python_version = sys.version self.gtk_version = ""