Compare commits
No commits in common. "c7a93c2d821f91cb0cdcd098ba54e47039aad987" and "301309737be541baab61dc35ba8dbbe112380a12" have entirely different histories.
c7a93c2d82
...
301309737b
29
CHANGELOG.md
29
CHANGELOG.md
@ -1,29 +0,0 @@
|
|||||||
# Changelog
|
|
||||||
|
|
||||||
## v1.2
|
|
||||||
|
|
||||||
*Released: 07/04/2022*
|
|
||||||
|
|
||||||
* New feature: support for custom shortcuts
|
|
||||||
* New feature: MPD stats
|
|
||||||
* Add GitHub repository link in settings
|
|
||||||
* MpcNET NuGet package integration
|
|
||||||
* Update Snapcast from v0.25 to v0.26
|
|
||||||
* Fix: hostname supported for connection
|
|
||||||
* Fix: crash when using invalid IP or Hostname
|
|
||||||
* Fix: crash when no internet connection when using RadioBrowser
|
|
||||||
|
|
||||||
## v1.1
|
|
||||||
|
|
||||||
*Released: 04/10/2021*
|
|
||||||
|
|
||||||
* Radio browser
|
|
||||||
* Mute shortcut
|
|
||||||
* Enter key works in settings textboxes
|
|
||||||
* Share current song by double-clicking
|
|
||||||
|
|
||||||
## v1.0
|
|
||||||
|
|
||||||
*Released: 03/09/2021*
|
|
||||||
|
|
||||||
* First release of unison
|
|
@ -83,7 +83,7 @@ namespace unison
|
|||||||
SongAlbum.Text = _mpd.GetCurrentSong().Album;
|
SongAlbum.Text = _mpd.GetCurrentSong().Album;
|
||||||
|
|
||||||
if (_mpd.GetCurrentSong().Date != null)
|
if (_mpd.GetCurrentSong().Date != null)
|
||||||
SongAlbum.Text += $" ({_mpd.GetCurrentSong().Date.Split("-")[0]})";
|
SongAlbum.Text += $" ({ _mpd.GetCurrentSong().Date})";
|
||||||
|
|
||||||
SongGenre.Text = _mpd.GetCurrentSong().Genre;
|
SongGenre.Text = _mpd.GetCurrentSong().Genre;
|
||||||
SongFormat.Text = _mpd.GetCurrentSong().Path.Substring(_mpd.GetCurrentSong().Path.LastIndexOf(".") + 1);
|
SongFormat.Text = _mpd.GetCurrentSong().Path.Substring(_mpd.GetCurrentSong().Path.LastIndexOf(".") + 1);
|
||||||
|
Loading…
Reference in New Issue
Block a user