From 783c44b2e667dc70c517234906de8a0016d3e914 Mon Sep 17 00:00:00 2001 From: yum Date: Tue, 25 Apr 2023 12:44:34 -0700 Subject: Fix custom chatbox zwrite/depth Depth was being calculated wrong, causing text box to render behind objects it's in front of. * Fix package.ps1 compression. 7z was increasing file size, somehow. --- GUI/package.ps1 | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'GUI') diff --git a/GUI/package.ps1 b/GUI/package.ps1 index e25473a..e21d109 100644 --- a/GUI/package.ps1 +++ b/GUI/package.ps1 @@ -132,7 +132,6 @@ cp ../"TaSTT-Whisper"/x64/Release/Whisper.dll TaSTT/Whisper.dll mkdir TaSTT/Resources/Models if (-Not $skip_zip) { - # Compress-Archive shits the bed if the input is larger than 2GB. - & "C:\Program Files\7-Zip\7z.exe" a -tzip "$install_dir.zip" "$install_dir" -mx=9 + Compress-Archive -Path "$install_dir" -DestinationPath "$install_dir.zip" -Force } -- cgit v1.2.3