mirror of
https://github.com/Royce551/FRESHMusicPlayer.git
synced 2025-01-22 10:51:52 -05:00
Bump version
This commit is contained in:
parent
33acbdd87e
commit
9087c0c2ca
3 changed files with 42 additions and 5 deletions
|
@ -33,7 +33,7 @@ namespace FRESHMusicPlayer.Forms.TagEditor
|
||||||
this.player = player ?? new Player();
|
this.player = player ?? new Player();
|
||||||
this.library = library;
|
this.library = library;
|
||||||
InitializeComponent();
|
InitializeComponent();
|
||||||
httpClient.DefaultRequestHeaders.UserAgent.ParseAdd("FRESHMusicPlayer/8.2.0 (https://github.com/Royce551/FRESHMusicPlayer)");
|
httpClient.DefaultRequestHeaders.UserAgent.ParseAdd("FRESHMusicPlayer/11.1.0 (https://github.com/Royce551/FRESHMusicPlayer)");
|
||||||
FilePaths = filePaths;
|
FilePaths = filePaths;
|
||||||
player.SongChanged += Player_SongChanged;
|
player.SongChanged += Player_SongChanged;
|
||||||
InitFields();
|
InitFields();
|
||||||
|
|
|
@ -64,6 +64,43 @@ namespace FRESHMusicPlayer.Handlers
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public override void AddTrackToPlaylist(string playlist, string path)
|
||||||
|
{
|
||||||
|
base.AddTrackToPlaylist(playlist, path);
|
||||||
|
LibraryChanged?.Invoke(null, EventArgs.Empty);
|
||||||
|
}
|
||||||
|
|
||||||
|
public override DatabasePlaylist CreatePlaylist(string playlist, string path = null)
|
||||||
|
{
|
||||||
|
var newPlaylist = base.CreatePlaylist(playlist, path);
|
||||||
|
LibraryChanged?.Invoke(null, EventArgs.Empty);
|
||||||
|
return newPlaylist;
|
||||||
|
}
|
||||||
|
|
||||||
|
public override void DeletePlaylist(string playlist)
|
||||||
|
{
|
||||||
|
base.DeletePlaylist(playlist);
|
||||||
|
LibraryChanged?.Invoke(null, EventArgs.Empty);
|
||||||
|
}
|
||||||
|
|
||||||
|
public override void Import(string path)
|
||||||
|
{
|
||||||
|
base.Import(path);
|
||||||
|
LibraryChanged?.Invoke(null, EventArgs.Empty);
|
||||||
|
}
|
||||||
|
|
||||||
|
public override void Remove(string path)
|
||||||
|
{
|
||||||
|
base.Remove(path);
|
||||||
|
LibraryChanged?.Invoke(null, EventArgs.Empty);
|
||||||
|
}
|
||||||
|
|
||||||
|
public override void RemoveTrackFromPlaylist(string playlist, string path)
|
||||||
|
{
|
||||||
|
base.RemoveTrackFromPlaylist(playlist, path);
|
||||||
|
LibraryChanged?.Invoke(null, EventArgs.Empty);
|
||||||
|
}
|
||||||
|
|
||||||
//public List<DatabaseQueue> GetAllQueues() FMP 10.2
|
//public List<DatabaseQueue> GetAllQueues() FMP 10.2
|
||||||
//{
|
//{
|
||||||
// return Database.GetCollection<DatabaseQueue>("queues").Query().ToList();
|
// return Database.GetCollection<DatabaseQueue>("queues").Query().ToList();
|
||||||
|
|
|
@ -49,6 +49,6 @@ using System.Windows;
|
||||||
// You can specify all the values or you can default the Build and Revision Numbers
|
// You can specify all the values or you can default the Build and Revision Numbers
|
||||||
// by using the '*' as shown below:
|
// by using the '*' as shown below:
|
||||||
// [assembly: AssemblyVersion("1.0.*")]
|
// [assembly: AssemblyVersion("1.0.*")]
|
||||||
[assembly: AssemblyVersion("11.1.4.0")]
|
[assembly: AssemblyVersion("11.1.5.0")]
|
||||||
[assembly: AssemblyFileVersion("11.1.4.0")]
|
[assembly: AssemblyFileVersion("11.1.5.0")]
|
||||||
[assembly: AssemblyInformationalVersion("FRESHMusicPlayer Ver. 11")]
|
[assembly: AssemblyInformationalVersion("FRESHMusicPlayer Ver. 11.1")]
|
||||||
|
|
Loading…
Reference in a new issue