diff --git a/UnitystationLauncher/Assets/org.unitystation.StationHub.metainfo.xml b/UnitystationLauncher/Assets/org.unitystation.StationHub.metainfo.xml index 79d1666..d01e0b5 100644 --- a/UnitystationLauncher/Assets/org.unitystation.StationHub.metainfo.xml +++ b/UnitystationLauncher/Assets/org.unitystation.StationHub.metainfo.xml @@ -65,6 +65,14 @@ + + +

Fix:

+
    +
  • Fixed TTS update not working and resulting in build update not working
  • +
+
+

Fix:

diff --git a/UnitystationLauncher/Constants/AppInfo.cs b/UnitystationLauncher/Constants/AppInfo.cs index 3521b1f..2506b3b 100644 --- a/UnitystationLauncher/Constants/AppInfo.cs +++ b/UnitystationLauncher/Constants/AppInfo.cs @@ -4,5 +4,5 @@ public static class AppInfo { // Whenever you change the currentBuild here, please also update the one in // UnitystationLauncher/Assets/org.unitystation.StationHub.metainfo.xml - public const int CurrentBuild = 936; + public const int CurrentBuild = 937; } \ No newline at end of file diff --git a/UnitystationLauncher/Services/TTSService.cs b/UnitystationLauncher/Services/TTSService.cs index 3541827..ac07999 100644 --- a/UnitystationLauncher/Services/TTSService.cs +++ b/UnitystationLauncher/Services/TTSService.cs @@ -115,6 +115,7 @@ public async Task CheckAndDownloadLatestVersion(Download Download) { if (localVersionModel == null || localVersionModel.Version != CurrentVersion.Version) { + StopTTS(); var LocalVersion = System.IO.Path.Combine(installationBasePath, "tts"); if (System.IO.Directory.Exists(LocalVersion)) {