Merge pull request #133 from Picocrypt/release-1.49

Release v1.49
This commit is contained in:
Evan Su 2025-08-03 23:29:22 -04:00 committed by GitHub
commit f53b4ceab9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 10 additions and 18 deletions

View file

@ -1,9 +1,8 @@
# v1.49 (Unreleased)
# v1.49 (Released 08/03/2025)
<ul>
<li>✓ Update macOS icon to fit better</li>
<li>✓ Added support for Cyrillic characters (https://github.com/Picocrypt/giu/pull/1), thanks <a href="https://github.com/Retengart">@Retengart</a></li>
<li>✓ upx Linux binary in addition to Windows, update upx version for Windows</li>
<li>Fix Picocrypt not running on macOS 26 (and remember to update Homebrew after release)</li>
</ul>
# v1.48 (Released 04/18/2025)

View file

@ -1 +1 @@
1.48
1.49

View file

@ -26,18 +26,11 @@
</screenshot>
</screenshots>
<releases>
<release version="1.48" date="2025-04-18">
<url type="details">https://github.com/Picocrypt/Picocrypt/blob/main/Changelog.md#v148-released-04182025</url>
<release version="1.49" date="2025-08-03">
<url type="details">https://github.com/Picocrypt/Picocrypt/blob/main/Changelog.md#v149-released-08032025</url>
<description>
<ul>
<li>Allow pressing 'Enter' key to press Start/Process button</li>
<li>Update "Encrypt" button to "Zip and Encrypt" if multiple files</li>
<li>Give user estimated required free disk space in status label</li>
<li>Encrypt previously unencrypted temporary zip files</li>
<li>Add `.incomplete` to filenames while work is in progress</li>
<li>Use `encrypted-*.zip.pcv` output name instead of `Encrypted.zip.pcv`</li>
<li>Use 0700 permissions when auto unzipping and creating folders</li>
<li>Handle many more errors in the code where they were ignored previously</li>
<li>Added support for displaying Cyrillic characters in the UI</li>
</ul>
</description>
</release>

View file

@ -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"
}

View file

@ -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