diff --git a/Songify Slim/App.xaml.cs b/Songify Slim/App.xaml.cs index 6fe49171..e7b1bad6 100644 --- a/Songify Slim/App.xaml.cs +++ b/Songify Slim/App.xaml.cs @@ -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 diff --git a/Songify Slim/Properties/AssemblyInfo.cs b/Songify Slim/Properties/AssemblyInfo.cs index 8206ebb3..5aee7dc1 100644 --- a/Songify Slim/Properties/AssemblyInfo.cs +++ b/Songify Slim/Properties/AssemblyInfo.cs @@ -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")] \ No newline at end of file