mirror of
https://github.com/Picocrypt/Picocrypt.git
synced 2026-03-11 14:04:23 +00:00
commit
f53b4ceab9
5 changed files with 10 additions and 18 deletions
|
|
@ -1,9 +1,8 @@
|
||||||
# v1.49 (Unreleased)
|
# v1.49 (Released 08/03/2025)
|
||||||
<ul>
|
<ul>
|
||||||
<li>✓ Update macOS icon to fit better</li>
|
<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>✓ 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>✓ 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>
|
</ul>
|
||||||
|
|
||||||
# v1.48 (Released 04/18/2025)
|
# v1.48 (Released 04/18/2025)
|
||||||
|
|
|
||||||
2
VERSION
2
VERSION
|
|
@ -1 +1 @@
|
||||||
1.48
|
1.49
|
||||||
|
|
|
||||||
|
|
@ -26,18 +26,11 @@
|
||||||
</screenshot>
|
</screenshot>
|
||||||
</screenshots>
|
</screenshots>
|
||||||
<releases>
|
<releases>
|
||||||
<release version="1.48" date="2025-04-18">
|
<release version="1.49" date="2025-08-03">
|
||||||
<url type="details">https://github.com/Picocrypt/Picocrypt/blob/main/Changelog.md#v148-released-04182025</url>
|
<url type="details">https://github.com/Picocrypt/Picocrypt/blob/main/Changelog.md#v149-released-08032025</url>
|
||||||
<description>
|
<description>
|
||||||
<ul>
|
<ul>
|
||||||
<li>Allow pressing 'Enter' key to press Start/Process button</li>
|
<li>Added support for displaying Cyrillic characters in the UI</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>
|
|
||||||
</ul>
|
</ul>
|
||||||
</description>
|
</description>
|
||||||
</release>
|
</release>
|
||||||
|
|
|
||||||
6
dist/windows/versioninfo.rc
vendored
6
dist/windows/versioninfo.rc
vendored
|
|
@ -1,6 +1,6 @@
|
||||||
1 VERSIONINFO
|
1 VERSIONINFO
|
||||||
FILEVERSION 1,48,0,0
|
FILEVERSION 1,49,0,0
|
||||||
PRODUCTVERSION 1,48,0,0
|
PRODUCTVERSION 1,49,0,0
|
||||||
FILEOS 0x40004
|
FILEOS 0x40004
|
||||||
FILETYPE 0x1
|
FILETYPE 0x1
|
||||||
{
|
{
|
||||||
|
|
@ -8,7 +8,7 @@ BLOCK "StringFileInfo"
|
||||||
{
|
{
|
||||||
BLOCK "040904B0"
|
BLOCK "040904B0"
|
||||||
{
|
{
|
||||||
VALUE "FileVersion", "1.48"
|
VALUE "FileVersion", "1.49"
|
||||||
VALUE "LegalCopyright", "\xA9 Evan Su & contributors, GPLv3"
|
VALUE "LegalCopyright", "\xA9 Evan Su & contributors, GPLv3"
|
||||||
VALUE "ProductName", "Picocrypt"
|
VALUE "ProductName", "Picocrypt"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@ package main
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
||||||
Picocrypt v1.48
|
Picocrypt v1.49
|
||||||
Copyright (c) Evan Su
|
Copyright (c) Evan Su
|
||||||
Released under a GNU GPL v3 License
|
Released under a GNU GPL v3 License
|
||||||
https://github.com/Picocrypt/Picocrypt
|
https://github.com/Picocrypt/Picocrypt
|
||||||
|
|
@ -61,7 +61,7 @@ var TRANSPARENT = color.RGBA{0x00, 0x00, 0x00, 0x00}
|
||||||
|
|
||||||
// Generic variables
|
// Generic variables
|
||||||
var window *giu.MasterWindow
|
var window *giu.MasterWindow
|
||||||
var version = "v1.48"
|
var version = "v1.49"
|
||||||
var dpi float32
|
var dpi float32
|
||||||
var mode string
|
var mode string
|
||||||
var working bool
|
var working bool
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue