From c0a36e4e0159306aca3d00a3785c1bd63780abcc Mon Sep 17 00:00:00 2001 From: aomizu Date: Tue, 10 Jun 2025 23:28:17 +0900 Subject: [PATCH] fixed vanilla tweaks typo --- FyneApp.toml | 4 ++-- main.go | 2 +- pkg/launcher/vanilla_tweaks.go | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/FyneApp.toml b/FyneApp.toml index 1a87ce7..63c701c 100644 --- a/FyneApp.toml +++ b/FyneApp.toml @@ -2,5 +2,5 @@ Icon = "Icon.png" Name = "TurtleSilicon" ID = "com.tairasu.turtlesilicon" - Version = "1.2.1" - Build = 47 + Version = "1.2.2" + Build = 50 diff --git a/main.go b/main.go index 7d4c114..32132f6 100644 --- a/main.go +++ b/main.go @@ -12,7 +12,7 @@ import ( "fyne.io/fyne/v2/app" ) -const appVersion = "1.2.1" +const appVersion = "1.2.2" func main() { TSApp := app.NewWithID("com.tairasu.turtlesilicon") diff --git a/pkg/launcher/vanilla_tweaks.go b/pkg/launcher/vanilla_tweaks.go index a5c1539..ab9557f 100644 --- a/pkg/launcher/vanilla_tweaks.go +++ b/pkg/launcher/vanilla_tweaks.go @@ -80,7 +80,7 @@ func ApplyVanillaTweaks(myWindow fyne.Window) error { // Build the command to apply vanilla-tweaks using the correct format: // cd "path" && "wineloader2" ./vanilla-tweaks.exe --no-frilldistance -no-farclip ./WoW.exe - shellCmd := fmt.Sprintf(`cd %s && %s ./vanilla-tweaks.exe --no-frilldistance -no-farclip ./WoW.exe`, + shellCmd := fmt.Sprintf(`cd %s && %s ./vanilla-tweaks.exe --no-frilldistance --no-farclip ./WoW.exe`, utils.QuotePathForShell(paths.TurtlewowPath), utils.QuotePathForShell(wineloader2Path))