From 32a17ac9422e2c5bfbbd55b6f69ab73b49ac8971 Mon Sep 17 00:00:00 2001 From: Inzaniity Date: Wed, 6 Jul 2022 02:16:05 +0200 Subject: [PATCH] Updated to version 1.3.1 --- Songify Slim/MainWindow.xaml.cs | 4 ++-- Songify Slim/Properties/AssemblyInfo.cs | 4 ++-- Songify Slim/Util/Songify/SongFetcher.cs | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Songify Slim/MainWindow.xaml.cs b/Songify Slim/MainWindow.xaml.cs index fc69dba4..f4111387 100644 --- a/Songify Slim/MainWindow.xaml.cs +++ b/Songify Slim/MainWindow.xaml.cs @@ -768,8 +768,8 @@ private void WriteSong(string rArtist, string rTitle, string rExtra, string rCov { _currentId = rTrackId; - if(rTrackUrl != null) - Console.WriteLine(rTrackUrl); + //if(rTrackUrl != null) + // Console.WriteLine(rTrackUrl); if (rArtist.Contains("Various Artists, ")) { diff --git a/Songify Slim/Properties/AssemblyInfo.cs b/Songify Slim/Properties/AssemblyInfo.cs index fad79eb1..56e4d413 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.3.0")] -[assembly: AssemblyFileVersion("1.3.0")] +[assembly: AssemblyVersion("1.3.1")] +[assembly: AssemblyFileVersion("1.3.1")] [assembly: NeutralResourcesLanguage("en")] [assembly: Guid("442379e3-32d8-42d1-ab09-cba229672453")] \ No newline at end of file diff --git a/Songify Slim/Util/Songify/SongFetcher.cs b/Songify Slim/Util/Songify/SongFetcher.cs index 1ea4a5bf..87fae073 100644 --- a/Songify Slim/Util/Songify/SongFetcher.cs +++ b/Songify Slim/Util/Songify/SongFetcher.cs @@ -310,7 +310,7 @@ public TrackInfo FetchSpotifyWeb() // gets the current playing songinfo TrackInfo songInfo = ApiHandler.GetSongInfo(); File.WriteAllText("progress.txt", songInfo.DurationPercentage.ToString()); - Console.WriteLine($"{songInfo.Progress} / {songInfo.DurationTotal} ({songInfo.DurationPercentage}%)"); + //Console.WriteLine($"{songInfo.Progress} / {songInfo.DurationTotal} ({songInfo.DurationPercentage}%)"); // if no song is playing and custompausetext is enabled return songInfo ?? new TrackInfo { isPlaying = false }; // return a new stringarray containing artist, title and so on