Skip to content

Commit

Permalink
Version 3.2.4 (#2140)
Browse files Browse the repository at this point in the history
  • Loading branch information
mathiascode committed Aug 7, 2022
1 parent e65f7e1 commit a414df6
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 6 deletions.
7 changes: 6 additions & 1 deletion 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)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -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:

Expand Down
1 change: 1 addition & 0 deletions data/org.nicotine_plus.Nicotine.appdata.xml.in
Expand Up @@ -57,6 +57,7 @@
<content_attribute id="social-info">mild</content_attribute>
</content_rating>
<releases>
<release version="3.2.4" date="2022-08-07"/>
<release version="3.2.3" date="2022-08-05"/>
<release version="3.2.2" date="2022-03-19"/>
<release version="3.2.1" date="2022-02-10"/>
Expand Down
6 changes: 3 additions & 3 deletions 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 <mail@mathias.is> Sat, 06 Aug 2022 01:41:19 +0300
-- Mat <mail@mathias.is> Sun, 07 Aug 2022 17:08:56 +0300

nicotine (3.2.3-1) jammy; urgency=medium

Expand Down
2 changes: 1 addition & 1 deletion pynicotine/config.py
Expand Up @@ -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 = ""

Expand Down

1 comment on commit a414df6

@slook
Copy link
Member

@slook slook commented on a414df6 Aug 7, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@mathiascode Don't forget to bump the 3.2.x branch to 3.2.5dev1

Please sign in to comment.