Skip to content

Commit

Permalink
TTS2
Browse files Browse the repository at this point in the history
  • Loading branch information
Bod9001 committed Dec 13, 2024
1 parent bde7857 commit 06df8b7
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,14 @@
</screenshots>

<releases>
<release version="937" date="2024-12-13">
<description>
<p>Fix:</p>
<ul>
<li>Fixed TTS update not working and resulting in build update not working</li>
</ul>
</description>
</release>
<release version="936" date="2024-12-13">
<description>
<p>Fix:</p>
Expand Down
2 changes: 1 addition & 1 deletion UnitystationLauncher/Constants/AppInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
1 change: 1 addition & 0 deletions UnitystationLauncher/Services/TTSService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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))
{
Expand Down

0 comments on commit 06df8b7

Please sign in to comment.