Skip to content

Commit

Permalink
Updated to version 1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Inzaniity committed Jul 6, 2022
1 parent fa4d0ea commit 32a17ac
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Songify Slim/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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, "))
{
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.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")]
2 changes: 1 addition & 1 deletion Songify Slim/Util/Songify/SongFetcher.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 32a17ac

Please sign in to comment.