From e8f0a3fdd49e9bbf31281cd757afc507d948e2d1 Mon Sep 17 00:00:00 2001 From: Evan Su <48808396+HACKERALERT@users.noreply.github.com> Date: Thu, 31 Jul 2025 22:21:50 -0400 Subject: [PATCH 1/7] Update VERSION to 1.49 --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From a6fdbab2c331bacac3f840770c10a376b1056e88 Mon Sep 17 00:00:00 2001 From: Evan Su <48808396+HACKERALERT@users.noreply.github.com> Date: Thu, 31 Jul 2025 22:25:26 -0400 Subject: [PATCH 2/7] Update flatpak xml in prep for 1.49 --- .../io.github.picocrypt.Picocrypt.metainfo.xml | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/dist/flatpak/io.github.picocrypt.Picocrypt.metainfo.xml b/dist/flatpak/io.github.picocrypt.Picocrypt.metainfo.xml index 05ebab2..be66a62 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
    -
  • 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
  • +
  • TO BE UPDATED
From 2480307dfb0d6d22c5522c271b2bf6717606939c Mon Sep 17 00:00:00 2001 From: Evan Su <48808396+HACKERALERT@users.noreply.github.com> Date: Thu, 31 Jul 2025 22:26:13 -0400 Subject: [PATCH 3/7] Update versioninfo.rc to 1.49 --- dist/windows/versioninfo.rc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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" } From c04aa8585d7674dbb46789f045db6a88d39a7184 Mon Sep 17 00:00:00 2001 From: Evan Su <48808396+HACKERALERT@users.noreply.github.com> Date: Thu, 31 Jul 2025 22:26:40 -0400 Subject: [PATCH 4/7] Update Picocrypt.go header comment version to 1.49 --- src/Picocrypt.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Picocrypt.go b/src/Picocrypt.go index 630d03f..49bc0d3 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 From 33b349d86d344ff595d468ff9b22053207721cd0 Mon Sep 17 00:00:00 2001 From: Evan Su <48808396+HACKERALERT@users.noreply.github.com> Date: Fri, 1 Aug 2025 16:55:50 -0400 Subject: [PATCH 5/7] Update Picocrypt.go: bump var version to 1.49 --- src/Picocrypt.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Picocrypt.go b/src/Picocrypt.go index 49bc0d3..4d39a34 100644 --- a/src/Picocrypt.go +++ b/src/Picocrypt.go @@ -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 From 67b351732aba8272ce6d1a13019070107330280b Mon Sep 17 00:00:00 2001 From: Evan Su <48808396+HACKERALERT@users.noreply.github.com> Date: Sun, 3 Aug 2025 23:17:43 -0400 Subject: [PATCH 6/7] Update Changelog.md: release v1.49 --- Changelog.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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) From f5a71df14cae2bb6f6cc29de741d3ccd12c553ca Mon Sep 17 00:00:00 2001 From: Evan Su <48808396+HACKERALERT@users.noreply.github.com> Date: Sun, 3 Aug 2025 23:20:09 -0400 Subject: [PATCH 7/7] Update io.github.picocrypt.Picocrypt.metainfo.xml: update release changes --- dist/flatpak/io.github.picocrypt.Picocrypt.metainfo.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dist/flatpak/io.github.picocrypt.Picocrypt.metainfo.xml b/dist/flatpak/io.github.picocrypt.Picocrypt.metainfo.xml index be66a62..b1294aa 100644 --- a/dist/flatpak/io.github.picocrypt.Picocrypt.metainfo.xml +++ b/dist/flatpak/io.github.picocrypt.Picocrypt.metainfo.xml @@ -26,11 +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
    -
  • TO BE UPDATED
  • +
  • Added support for displaying Cyrillic characters in the UI