diff --git a/CHANGELOG.md b/CHANGELOG.md index ba73414..362a48e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ All dates are UK format. +## 03/06/22 4.2.1 +_drdonk_: +* Missing message when removing ISOs in relock +* Updated darwin.iso to version 12.0.5 + ## 13/05/22 4.2.0 _drdonk:_ * Split unlocker.exe into 2 new files unlock.exe and relock.exe so can be directly executed on Windows without diff --git a/CHANGELOG.pdf b/CHANGELOG.pdf index 99372dd..c1770ae 100644 Binary files a/CHANGELOG.pdf and b/CHANGELOG.pdf differ diff --git a/commands/relock/relock.go b/commands/relock/relock.go index e761acc..ad5e77c 100644 --- a/commands/relock/relock.go +++ b/commands/relock/relock.go @@ -72,7 +72,7 @@ func main() { // Removing ISOs fmt.Println() fmt.Println("Removing VMware Tools...") - fmt.Printf(v.DstISOMacOSX) + fmt.Println(v.DstISOMacOSX) _ = os.Remove(v.DstISOMacOSX) fmt.Println(v.DstISOmacOS) _ = os.Remove(v.DstISOmacOS) diff --git a/iso/darwin.iso b/iso/darwin.iso index 2625085..0863b09 100644 Binary files a/iso/darwin.iso and b/iso/darwin.iso differ diff --git a/vmwpatch/version.go b/vmwpatch/version.go index 1ba8162..0a2596e 100755 --- a/vmwpatch/version.go +++ b/vmwpatch/version.go @@ -1,4 +1,4 @@ package vmwpatch -const VERSION = "4.2.0" +const VERSION = "4.2.1" const COPYRIGHT = "© 2014-2022 David Parsons"