Skip to content

Commit

Permalink
Updated Version to 1.7
Browse files Browse the repository at this point in the history
Ready for release
  • Loading branch information
Inzaniity committed May 1, 2019
1 parent 5c8ca3e commit 1094e85
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions Songify Slim/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public partial class MainWindow
private System.Threading.Timer timer;
private System.Timers.Timer timerFetcher = new System.Timers.Timer();

#endregion Variables
#endregion

public MainWindow()
{
Expand Down Expand Up @@ -383,7 +383,7 @@ private void MetroWindowLoaded(object sender, RoutedEventArgs e)
var assembly = Assembly.GetExecutingAssembly();
var fvi = FileVersionInfo.GetVersionInfo(assembly.Location);
Version = fvi.FileVersion;

// generate UUID if not exists, expand the window and show the telemetrydisclaimer
if (Settings.GetUUID() == "")
{
Expand Down Expand Up @@ -510,7 +510,7 @@ private void WriteSong(string artist, string title, string extra)
// get the first occurance of "}" to get the seperator from the custom output ({artist} - {title})
// and replace it
int pFrom = _currSong.IndexOf("}");
String result = _currSong.Substring(pFrom + 2, 1);
String result = _currSong.Substring(pFrom + 2, 1);
_currSong = _currSong.Replace(result, "");

// artist is set to be artist and title in this case, {title} and {extra} are empty strings
Expand Down
6 changes: 3 additions & 3 deletions Songify Slim/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Jan Blömacher")]
[assembly: AssemblyProduct("Songify Slim")]
[assembly: AssemblyCopyright("Copyright © 2018")]
[assembly: AssemblyCopyright("Copyright © 2019")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand Down Expand Up @@ -51,5 +51,5 @@
// 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.0.6.0")]
[assembly: AssemblyFileVersion("1.0.6.0")]
[assembly: AssemblyVersion("1.0.7.0")]
[assembly: AssemblyFileVersion("1.0.7.0")]

0 comments on commit 1094e85

Please sign in to comment.