From 9117965abcce69d4bf61f71cce874cc479b03fd4 Mon Sep 17 00:00:00 2001 From: Fabien LOISON Date: Sat, 2 Sep 2023 09:57:16 +0200 Subject: [PATCH] v1.2.3 --- README.rst | 4 ++++ .../org.flozz.yoga-image-optimizer.metainfo.xml | 13 ++++++++++++- setup.py | 2 +- yoga_image_optimizer/__init__.py | 2 +- yoga_image_optimizer/about_dialog.py | 2 +- 5 files changed, 19 insertions(+), 4 deletions(-) diff --git a/README.rst b/README.rst index c58966c..c972fbf 100644 --- a/README.rst +++ b/README.rst @@ -207,6 +207,10 @@ Changelog * **[NEXT]** (changes on ``master``, but not released yet): + * Nothing yet ;) + +* **v1.2.3:** + * Fixed crash when the system local cannot be determined (@flozz, #43) * **v1.2.2:** diff --git a/linuxpkg/org.flozz.yoga-image-optimizer.metainfo.xml b/linuxpkg/org.flozz.yoga-image-optimizer.metainfo.xml index dc14c4c..caf4ddd 100644 --- a/linuxpkg/org.flozz.yoga-image-optimizer.metainfo.xml +++ b/linuxpkg/org.flozz.yoga-image-optimizer.metainfo.xml @@ -67,6 +67,16 @@ + + +

Bug fix:

+
    +
  • Fixed crash when the system local cannot be determined (@flozz, + #43)
  • +
+
+
+

Bug fix:

@@ -110,7 +120,8 @@
  • Sped up thumbnail loading on Linux by using already generated thumbnails from the shared cache
  • Sped up thumbnail generation using BOX sampling instead of - LANCZOS
  • + LANCZOS +
  • Displayed a warning icon if the output image is larger than the input one
  • diff --git a/setup.py b/setup.py index a739d16..6e4a117 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ setup( name="yoga_image_optimizer", - version="1.2.2", + version="1.2.3", description="A graphical interface to convert and optimize JPEG, PNG and WebP images (based on YOGA)", url="https://yoga.flozz.org/", project_urls={ diff --git a/yoga_image_optimizer/__init__.py b/yoga_image_optimizer/__init__.py index b063290..f684308 100644 --- a/yoga_image_optimizer/__init__.py +++ b/yoga_image_optimizer/__init__.py @@ -5,4 +5,4 @@ APPLICATION_ID = "org.flozz.yoga-image-optimizer" APPLICATION_NAME = "YOGA Image Optimizer" -VERSION = "1.2.2" +VERSION = "1.2.3" diff --git a/yoga_image_optimizer/about_dialog.py b/yoga_image_optimizer/about_dialog.py index 98f76d9..d7dea83 100644 --- a/yoga_image_optimizer/about_dialog.py +++ b/yoga_image_optimizer/about_dialog.py @@ -18,7 +18,7 @@ def __init__(self, parent=None): "JPEG, PNG and WebP images (based on YOGA)" ), version=VERSION, - copyright="Copyright (c) 2021-2022 Fabien LOISON", + copyright="Copyright (c) 2021-2023 Fabien LOISON", website_label="yoga.flozz.org", website="https://yoga.flozz.org/", license_type=Gtk.License.GPL_3_0,