mirror of
https://github.com/Picocrypt/Picocrypt.git
synced 2025-05-12 13:48:31 +02:00
Bump to 1.46: zip unpacking and version in title
This commit is contained in:
parent
fee796845b
commit
af3e1748fb
3 changed files with 10 additions and 4 deletions
|
@ -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>
|
||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
1.45
|
||||
1.46
|
||||
|
|
|
@ -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()
|
||||
}
|
||||
}),
|
||||
|
|
Loading…
Add table
Reference in a new issue