Skip to content

Commit

Permalink
Version 0.12.2.4 Stable - Fixed a bug affecting localization file acc…
Browse files Browse the repository at this point in the history
…ess + Various Bugfixes
  • Loading branch information
Faster3ck committed Oct 29, 2024
1 parent a64d45d commit 0c0c9f4
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 14 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
0.12.2.4 – 2024-10-29
- Fixed a bug affecting localization file access
- Various Bugfixes

0.12.2.3 – 2024-04-21
- Updated French translation
- AppImage version ported to Qt6
Expand Down
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ if(WIN32)
cmake_policy(SET CMP0135 NEW)
endif()

set(CONVERSEEN_VERSION 0.12.2.3)
set(CONVERSEEN_VERSION 0.12.2.4)

project(
converseen
Expand Down Expand Up @@ -76,7 +76,7 @@ set(converseen_HEADERS
src/thumbnailgeneratorthread.h
src/translator.h
src/updatechecker.h
src/magickdefine.cpp
src/magickdefine.h
src/Modules/multipageconverter.h
)

Expand Down Expand Up @@ -275,7 +275,7 @@ if(WIN32)
set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_SOURCE_DIR}/COPYING.txt")
set(CPACK_RESOURCE_FILE_README "${CMAKE_SOURCE_DIR}/COPYING.txt")

set(CPACK_WIX_PRODUCT_GUID "B35C58D3-FBD2-4A81-8371-588F51000007")
set(CPACK_WIX_PRODUCT_GUID "B35C58D3-FBD2-4A81-8371-588F51000008")
set(CPACK_WIX_UPGRADE_GUID "B35C58D3-FBD2-4A81-8371-588F51EC180F")

configure_file("${CMAKE_CURRENT_SOURCE_DIR}/cmake/wixCheckInnoVersion.xml.in" wixCheckInnoVersion.xml)
Expand Down
8 changes: 4 additions & 4 deletions converseen.appdata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -79,12 +79,12 @@
<url type="help">https://converseen.fasterland.net/help/</url>
<url type="contact">https://converseen.fasterland.net/contact-me/</url>
<releases>
<release version="0.12.2.3" date="2024-04-21">
<url type="details">https://converseen.fasterland.net/changelog/</url>
<release version="0.12.2.4" date="2024-10-29">
<url type="details">https://converseen.fasterland.net/changelog/</url>
<description>
<p>Changelog for 0.12.2.3</p>
<p>Changelog for 0.12.2.4</p>
<ul>
<li>Updated French translation</li>
<li>Fixed a bug affecting localization file access</li>
<li>Various Bugfixes</li>
</ul>
</description>
Expand Down
4 changes: 2 additions & 2 deletions package/AppImage/finalize-appimage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ set -x
set -e

PROGRAM_NAME="Converseen"
PROGRAM_VERSION="0.12.2.3"
BUILD_VERSION="3"
PROGRAM_VERSION="0.12.2.4"
BUILD_VERSION="1"
ARCH=$(uname -m)

OUTPUT_NAME=$PROGRAM_NAME-$PROGRAM_VERSION-$BUILD_VERSION-$ARCH.AppImage
Expand Down
2 changes: 1 addition & 1 deletion package/Snap/snapcraft.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: converseen
version: '0.12.2.3'
version: '0.12.2.4'
summary: Converseen - A Batch Image Converter, Resizer and Processor for your Pictures!
description: |
Converseen is a free and cross-platform batch image processor that allows you to convert, resize, rotate, and flip an infinite number of images with a mouse click. Converseen is also able to transform an entire PDF file into a group of images with the characteristics you prefer: you can choose one of the 100+ formats, set the size, resolution, and the filename.
Expand Down
2 changes: 1 addition & 1 deletion package/Windows/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.12.2.3-3
0.12.2.4-1
2 changes: 1 addition & 1 deletion package/macOS/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.12.2.3-3
0.12.2.4-1
4 changes: 2 additions & 2 deletions src/globals.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ using namespace std;
namespace globals
{
const QString PROGRAM_NAME = "Converseen";
const int CURRENT_INTERNAL_VERSION = 1323;
const QString VERSION = "0.12.2.3";
const int CURRENT_INTERNAL_VERSION = 1324;
const QString VERSION = "0.12.2.4";

class Globals
{
Expand Down
1 change: 1 addition & 0 deletions src/translator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ QString Translator::findLangDir()
langDirs.append(QString("%1/share/converseen/loc").arg(rootPath));
langDirs.append(QString("%1/local/share/converseen/loc").arg(rootPath));
langDirs.append(QString("%1/usr/share/locale/converseen/loc").arg(rootPath));
langDirs.append(QString("%1/usr/share/converseen/loc").arg(QString::fromLocal8Bit(qgetenv("SNAP")))); // For snapcraft loc search

foreach (langDir, langDirs) {
if (qmFilesFound(langDir))
Expand Down

0 comments on commit 0c0c9f4

Please sign in to comment.