From af3e1748fb137398343e53bce226f35600f392e8 Mon Sep 17 00:00:00 2001
From: Alex Verner <119082209+Retengart@users.noreply.github.com>
Date: Sun, 26 Jan 2025 00:47:55 +0300
Subject: [PATCH] Bump to 1.46: zip unpacking and version in title
---
Changelog.md | 6 ++++++
VERSION | 2 +-
src/Picocrypt.go | 6 +++---
3 files changed, 10 insertions(+), 4 deletions(-)
diff --git a/Changelog.md b/Changelog.md
index 045c9ba..99ff0c2 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -3,6 +3,12 @@
Migrate golang.org/x/crypto to standard library imports (https://github.com/golang/go/issues/65269)
+# v1.46 (Released 01/26/2025)
+
+ - ✓ Added Picocrypt version to the window title
+ - ✓ Added ability to automatically unpack zip archives during decryption
+
+
# v1.45 (Released 12/05/2024)
- ✓ Bumped GitHub Actions Ubuntu 22 -> 24 and macOS 14 -> 15
diff --git a/VERSION b/VERSION
index 24c87c5..7ab887e 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-1.45
+1.46
diff --git a/src/Picocrypt.go b/src/Picocrypt.go
index 06896b1..f21eb6b 100644
--- a/src/Picocrypt.go
+++ b/src/Picocrypt.go
@@ -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()
}
}),