diff --git a/Info.plist b/Info.plist index eb7cb49..a115190 100644 --- a/Info.plist +++ b/Info.plist @@ -19,9 +19,9 @@ NSSupportsAutomaticGraphicsSwitching CFBundleShortVersionString - 2.8.1 + 2.8.2 CFBundleVersion - 2.8.1 + 2.8.2 SUFeedURL https://saerasoft.com/repository/com.saerasoft.caesium/osx/appcast.xml SUEnableAutomaticChecks diff --git a/README.md b/README.md index 2fbc20f..c0754d6 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Try it directly on browser at [caesium.app](https://caesium.app) -###### v2.8.1 +###### v2.8.2 ![caesium_screenshot_280](https://github.com/user-attachments/assets/e5a6510a-58c5-4349-8563-f4e3ee84d5a0) diff --git a/resources/icons.rc b/resources/icons.rc index d90cb12..01e8769 100644 --- a/resources/icons.rc +++ b/resources/icons.rc @@ -4,7 +4,7 @@ IDI_ICON1 ICON "icons/icon.ico" 1 VERSIONINFO FILEVERSION 1,0,0,0 - PRODUCTVERSION 2,8,1,0 + PRODUCTVERSION 2,8,2,0 BEGIN BLOCK "StringFileInfo" BEGIN @@ -15,7 +15,7 @@ BEGIN VALUE "FileVersion", "1.0.0\0" VALUE "InternalName", "Cs-133\0" VALUE "ProductName", "Caesium Image Compressor\0" - VALUE "ProductVersion", "2.8.1\0" + VALUE "ProductVersion", "2.8.2\0" END END diff --git a/setup.iss b/setup.iss index 4269f89..87a5c73 100644 --- a/setup.iss +++ b/setup.iss @@ -2,7 +2,7 @@ ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES! #define MyAppName "Caesium Image Compressor" -#define MyAppVersion "2.8.1" +#define MyAppVersion "2.8.2" #define MyAppPublisher "SaeraSoft" #define MyAppURL "https://saerasoft.com/caesium" #define MyAppExeName "Caesium Image Compressor.exe" diff --git a/src/main.cpp b/src/main.cpp index 4e6b3da..54df311 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -51,7 +51,7 @@ int main(int argc, char* argv[]) QCoreApplication::setOrganizationName("SaeraSoft"); QCoreApplication::setOrganizationDomain("saerasoft.com"); QCoreApplication::setApplicationName("Caesium Image Compressor"); - QCoreApplication::setApplicationVersion("2.8.1"); + QCoreApplication::setApplicationVersion("2.8.2"); #ifdef NDEBUG qInstallMessageHandler(Logger::messageHandler);