Skip to content

Commit

Permalink
v1.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
flozz committed Sep 2, 2023
1 parent 0f8311a commit 9117965
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 4 deletions.
4 changes: 4 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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:**
Expand Down
13 changes: 12 additions & 1 deletion linuxpkg/org.flozz.yoga-image-optimizer.metainfo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,16 @@

<releases>

<release version="1.2.3" date="2023-09-02">
<description>
<p>Bug fix:</p>
<ul>
<li>Fixed crash when the system local cannot be determined (@flozz,
#43)</li>
</ul>
</description>
</release>

<release version="1.2.2" date="2022-12-30">
<description>
<p>Bug fix:</p>
Expand Down Expand Up @@ -110,7 +120,8 @@
<li>Sped up thumbnail loading on Linux by using already generated
thumbnails from the shared cache</li>
<li>Sped up thumbnail generation using BOX sampling instead of
LANCZOS</li>
LANCZOS
</li>
<li>Displayed a warning icon if the output image is larger than
the input one</li>
</ul>
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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={
Expand Down
2 changes: 1 addition & 1 deletion yoga_image_optimizer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@

APPLICATION_ID = "org.flozz.yoga-image-optimizer"
APPLICATION_NAME = "YOGA Image Optimizer"
VERSION = "1.2.2"
VERSION = "1.2.3"
2 changes: 1 addition & 1 deletion yoga_image_optimizer/about_dialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 9117965

Please sign in to comment.