Skip to content

Commit

Permalink
Fixed a bug where the UUID wouldn't be generated for new installations.
Browse files Browse the repository at this point in the history
  • Loading branch information
Inzaniity committed Aug 23, 2023
1 parent 67c71c8 commit 4b4dc65
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions Songify Slim/App.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,12 @@ private App()
{
Thread.CurrentThread.CurrentUICulture = new CultureInfo("en");
}

if (string.IsNullOrEmpty(Settings.Uuid))
{
Settings.Uuid = Guid.NewGuid().ToString();
}

// Adding the RegKey for Songify in startup(autostart with windows)

// Check if the UUI is set, if not generate a new UUID
Expand Down
4 changes: 2 additions & 2 deletions Songify Slim/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.5.0.0")]
[assembly: AssemblyFileVersion("1.5.0.0")]
[assembly: AssemblyVersion("1.5.1.0")]
[assembly: AssemblyFileVersion("1.5.1.0")]
[assembly: NeutralResourcesLanguage("en")]
[assembly: Guid("442379e3-32d8-42d1-ab09-cba229672453")]

0 comments on commit 4b4dc65

Please sign in to comment.