Skip to content

Commit

Permalink
v1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
flozz committed Nov 22, 2022
1 parent b7dc3d5 commit 9ef99b1
Show file tree
Hide file tree
Showing 5 changed files with 41 additions and 15 deletions.
18 changes: 14 additions & 4 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -210,10 +210,20 @@ Changelog

* **[NEXT]** (changes on ``master``, but not released yet):

* Added Brazilian Portuguese translation (@Kazevic, #36)
* Completed Dutch translation (@Vistaus, #34)
* Added Python 3.11 support (@flozz)
* Flatpak: use the real user cache, not the one of the Flatpak application (@flozz)
* Nothing yet :)

* **v1.2.1:**

* Fixes / improvements:

* Flatpak: use the real user cache, not the one of the Flatpak application
(@flozz)
* Added Python 3.11 support (@flozz)

* Translations:

* Added Brazilian Portuguese translation (@Kazevic, #36)
* Completed Dutch translation (@Vistaus, #34)

* **v1.2.0:**

Expand Down
2 changes: 1 addition & 1 deletion RELEASE.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ This file is a memo for the maintainer.

* Update version number in ``setup.py``
* Update version number in ``yoga_image_optimizer/__init__.py``
* Edit / update changelog in ``README.rst``
* Add release in ``linuxpkg/org.flozz.yoga-image-optimizer.metainfo``
* Check appstream file: ``appstream-util validate-relax linuxpkg/org.flozz.yoga-image-optimizer.metainfo.xml``
* Edit / update changelog in ``README.rst``
* Commit / tag (``git commit -m vX.Y.Z && git tag vX.Y.Z && git push && git push --tags``)


Expand Down
32 changes: 24 additions & 8 deletions linuxpkg/org.flozz.yoga-image-optimizer.metainfo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,22 @@

<releases>

<release version="1.2.1" date="2022-11-22">
<description>
<p>Fixes / improvements:</p>
<ul>
<li>Flatpak: use the real user cache, not the one of the Flatpak
application (@flozz)</li>
<li>Added Python 3.11 support (@flozz)</li>
</ul>
<p>Translations:</p>
<ul>
<li>Added Brazilian Portuguese translation (@Kazevic, #36)</li>
<li>Completed Dutch translation (@Vistaus, #34)</li>
</ul>
</description>
</release>

<release version="1.2.0" date="2022-10-20">
<description>
<p>Interface / User Experience:</p>
Expand All @@ -78,22 +94,22 @@
the interface when importing a lot of images (#26)</li>
<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>
<li>Sped up thumbnail generation using BOX sampling instead of
LANCZOS</li>
<li>Displayed a warning icon if the output image is larger than
the input one</li>
</ul>
<p>Bugfix / Code Improvement:</p>
<ul>
<li>Fixed a crash when generating thumbnails for JPEGs with an invalid
orientation EXIF tag (#29)</li>
<li>Fixed a crash when generating thumbnails for JPEGs with an
invalid orientation EXIF tag (#29)</li>
<li>Fixed inverted width and height with rotated JPEGs</li>
<li>Fixed a crash of the image import process when generating the
thumbnail of a broken image (#27)</li>
<li>Fixed a crash of the optimization batch if an error occurs when
optimizing an image (#27)</li>
<li>Fixed issues related to "concurrent.futures" on Python 3.7 and
3.8 (#32)</li>
<li>Fixed a crash of the optimization batch if an error occurs
when optimizing an image (#27)</li>
<li>Fixed issues related to "concurrent.futures" on Python 3.7
and 3.8 (#32)</li>
<li>Updated the code to not use deprecated constants on newer Pillow
versions
</li>
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.0",
version="1.2.1",
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 @@ -4,4 +4,4 @@

APPLICATION_ID = "org.flozz.yoga-image-optimizer"
APPLICATION_NAME = "YOGA Image Optimizer"
VERSION = "1.2.0"
VERSION = "1.2.1"

0 comments on commit 9ef99b1

Please sign in to comment.