From f5bcf280e90c0d5afc76f54fca886c549bf450fd Mon Sep 17 00:00:00 2001 From: khalim19 Date: Sat, 9 Jun 2018 23:09:52 +0200 Subject: [PATCH] Release 3.2.1 --- CHANGELOG.md | 12 ++++++++++++ README.md | 2 +- export_layers/config.py | 3 ++- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ce5c3d29..25919dc7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +3.2.1 +===== + +* Added installers for Linux and macOS. +* Pressing the Help button now jumps to the Documentation subpage rather than + the main page of the plug-in. +* Fixed updates to previews not working and info/error messages not disappearing + automatically for GIMP 2.10 on Windows. +* Fixed GIMP version checks causing incorrect behavior of progress bars and + prevented displaying several file extensions available on certain GIMP + versions. + 3.2 === diff --git a/README.md b/README.md index c17b84a4..37d85889 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Features See the [documentation](https://khalim19.github.io/gimp-plugin-export-layers/sections) for information about installation, usage and known issues. -[**Download latest release**](https://github.com/khalim19/gimp-plugin-export-layers/releases/tag/3.2) (3.2) +[**Download latest release**](https://github.com/khalim19/gimp-plugin-export-layers/releases/tag/3.2.1) (3.2.1) Support diff --git a/export_layers/config.py b/export_layers/config.py index b00fee0c..17e25f0c 100644 --- a/export_layers/config.py +++ b/export_layers/config.py @@ -47,7 +47,8 @@ def init(): pygimplib.config.LOG_MODE = pygimplib.pgconstants.LOG_EXCEPTIONS_ONLY pygimplib.config.PLUGIN_TITLE = lambda: _("Export Layers") - pygimplib.config.PLUGIN_VERSION = "3.2" + pygimplib.config.PLUGIN_VERSION = "3.2.1" + pygimplib.config.LATEST_PLUGIN_VERSION_RELEASE_DATE = "June 9, 2018" pygimplib.config.AUTHOR_NAME = "khalim19" pygimplib.config.AUTHOR_CONTACT = "khalim19@gmail.com" pygimplib.config.PAGE_URL = "https://khalim19.github.io/gimp-plugin-export-layers"