diff --git a/Changelog.md b/Changelog.md index 58d6c0b..6fe8531 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,9 +1,8 @@ -# v1.49 (Unreleased) +# v1.49 (Released 08/03/2025) # v1.48 (Released 04/18/2025) diff --git a/VERSION b/VERSION index 46284af..d4d0f85 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.48 \ No newline at end of file +1.49 diff --git a/dist/flatpak/io.github.picocrypt.Picocrypt.metainfo.xml b/dist/flatpak/io.github.picocrypt.Picocrypt.metainfo.xml index 05ebab2..b1294aa 100644 --- a/dist/flatpak/io.github.picocrypt.Picocrypt.metainfo.xml +++ b/dist/flatpak/io.github.picocrypt.Picocrypt.metainfo.xml @@ -26,18 +26,11 @@ - - https://github.com/Picocrypt/Picocrypt/blob/main/Changelog.md#v148-released-04182025 + + https://github.com/Picocrypt/Picocrypt/blob/main/Changelog.md#v149-released-08032025
    -
  • Allow pressing 'Enter' key to press Start/Process button
  • -
  • Update "Encrypt" button to "Zip and Encrypt" if multiple files
  • -
  • Give user estimated required free disk space in status label
  • -
  • Encrypt previously unencrypted temporary zip files
  • -
  • Add `.incomplete` to filenames while work is in progress
  • -
  • Use `encrypted-*.zip.pcv` output name instead of `Encrypted.zip.pcv`
  • -
  • Use 0700 permissions when auto unzipping and creating folders
  • -
  • Handle many more errors in the code where they were ignored previously
  • +
  • Added support for displaying Cyrillic characters in the UI
diff --git a/dist/windows/versioninfo.rc b/dist/windows/versioninfo.rc index f2678e3..cdcae00 100644 --- a/dist/windows/versioninfo.rc +++ b/dist/windows/versioninfo.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 1,48,0,0 -PRODUCTVERSION 1,48,0,0 +FILEVERSION 1,49,0,0 +PRODUCTVERSION 1,49,0,0 FILEOS 0x40004 FILETYPE 0x1 { @@ -8,7 +8,7 @@ BLOCK "StringFileInfo" { BLOCK "040904B0" { - VALUE "FileVersion", "1.48" + VALUE "FileVersion", "1.49" VALUE "LegalCopyright", "\xA9 Evan Su & contributors, GPLv3" VALUE "ProductName", "Picocrypt" } diff --git a/src/Picocrypt.go b/src/Picocrypt.go index 630d03f..4d39a34 100644 --- a/src/Picocrypt.go +++ b/src/Picocrypt.go @@ -2,7 +2,7 @@ package main /* -Picocrypt v1.48 +Picocrypt v1.49 Copyright (c) Evan Su Released under a GNU GPL v3 License https://github.com/Picocrypt/Picocrypt @@ -61,7 +61,7 @@ var TRANSPARENT = color.RGBA{0x00, 0x00, 0x00, 0x00} // Generic variables var window *giu.MasterWindow -var version = "v1.48" +var version = "v1.49" var dpi float32 var mode string var working bool