Compare commits
2 Commits
301309737b
...
c7a93c2d82
Author | SHA1 | Date | |
---|---|---|---|
c7a93c2d82 | |||
43350aed36 |
29
CHANGELOG.md
Normal file
29
CHANGELOG.md
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
# 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})";
|
SongAlbum.Text += $" ({_mpd.GetCurrentSong().Date.Split("-")[0]})";
|
||||||
|
|
||||||
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