diff --git a/Changelog.md b/Changelog.md index 0414cd6..d6dba27 100644 --- a/Changelog.md +++ b/Changelog.md @@ -3,11 +3,12 @@
  • Figure out how to remove use of temporary files completely
  • -# v1.48 (Released 04/11/2025) +# v1.48 (Released 04/15/2025) # v1.47 (Released 02/19/2025) diff --git a/src/Picocrypt.go b/src/Picocrypt.go index e61c08a..a9b97c0 100644 --- a/src/Picocrypt.go +++ b/src/Picocrypt.go @@ -1040,7 +1040,7 @@ func onDrop(names []string) { } // Set the input and output paths - inputFile = filepath.Join(filepath.Dir(names[0]), "Encrypted") + ".zip" + inputFile = filepath.Join(filepath.Dir(names[0]), "encrypted-"+strconv.Itoa(int(time.Now().Unix()))) + ".zip" outputFile = inputFile + ".pcv" usingTempZip = true }