Bump to 1.46: zip unpacking and version in title

This commit is contained in:
Alex Verner 2025-01-26 00:47:55 +03:00
parent fee796845b
commit af3e1748fb
3 changed files with 10 additions and 4 deletions

View file

@ -3,6 +3,12 @@
<li>Migrate golang.org/x/crypto to standard library imports (https://github.com/golang/go/issues/65269)</li>
</ul>
# v1.46 (Released 01/26/2025)
<ul>
<li>✓ Added Picocrypt version to the window title</li>
<li>✓ Added ability to automatically unpack zip archives during decryption</li>
</ul>
# v1.45 (Released 12/05/2024)
<ul>
<li>✓ Bumped GitHub Actions Ubuntu 22 -> 24 and macOS 14 -> 15</li>

View file

@ -1 +1 @@
1.45
1.46

View file

@ -2,7 +2,7 @@ package main
/*
Picocrypt v1.45
Picocrypt v1.46
Copyright (c) Evan Su
Released under a GNU GPL v3 License
https://github.com/Picocrypt/Picocrypt
@ -60,7 +60,7 @@ var TRANSPARENT = color.RGBA{0x00, 0x00, 0x00, 0x00}
// Generic variables
var window *giu.MasterWindow
var version = "v1.45"
var version = "v1.46"
var dpi float32
var mode string
var working bool
@ -556,7 +556,7 @@ func draw() {
giu.Row(
giu.Checkbox("Unpack .zip", &unpack),
giu.Tooltip("Extract the decrypted .zip (ovewrite files)"),
giu.Tooltip("Extract the decrypted .zip (overwrite files)"),
).Build()
}
}),