Skip to content

Commit

Permalink
Python Bridge self-destruction hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
flabbet committed Aug 16, 2020
1 parent 520ee41 commit c2869ff
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion SwagLyricsGUI/Models/SwagLyricsBridge.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public class SwagLyricsBridge
public event EventHandler OnResumed;
public event EventHandler OnAdvertisement;

public string BridgeFileOnPath = Path.Join(BridgeManager.BridgeFilesPath, "swaglyricsGUIOn.txt");
public string BridgeFileOnPath => Path.Combine(BridgeManager.BridgeFilesPath, "swaglyricsGUIOn.txt");

public bool IsAdvertisement { get; private set; } = false;
public Process LyricsProcess { get; set; }
Expand Down
5 changes: 4 additions & 1 deletion setup_script_win_x64.iss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "SwagLyricsGUI"
#define MyAppVersion "0.3"
#define VerFile FileOpen("version.txt")
#define MyAppVersion FileRead(VerFile)
#expr FileClose(VerFile)
#undef VerFile
#define MyAppPublisher "The SwagLyrics Project"
#define MyAppURL "http://swaglyrics.dev/"
#define MyAppExeName "SwagLyricsGUI.exe"
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.4
v0.4.1

0 comments on commit c2869ff

Please sign in to comment.