summaryrefslogtreecommitdiffstats
path: root/GUI
diff options
context:
space:
mode:
authoryum <yum.food.vr@gmail.com>2023-04-25 12:44:34 -0700
committeryum <yum.food.vr@gmail.com>2023-04-25 12:44:34 -0700
commit783c44b2e667dc70c517234906de8a0016d3e914 (patch)
tree4d16dc5c61ea1500354214915c1b46a827d112cc /GUI
parent89c4fa29e5810fac7c75cb5edda1565320a5b8a9 (diff)
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.
Diffstat (limited to 'GUI')
-rw-r--r--GUI/package.ps13
1 files changed, 1 insertions, 2 deletions
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
}