Skip to content

Commit

Permalink
[Fixed] Artists are not sorted alphabetically
Browse files Browse the repository at this point in the history
  • Loading branch information
raphgodart committed Jan 2, 2017
1 parent 94622c2 commit 6cadb82
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 deletions.
3 changes: 3 additions & 0 deletions Dopamine.Common/Database/Repositories/ArtistRepository.cs
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,9 @@ await Task.Run(() =>
}
}
}
// Orders the artists
artists = artists.OrderBy((a) => Utils.GetSortableString(a.ArtistName, true)).ToList();
}
catch (Exception ex)
{
Expand Down
6 changes: 6 additions & 0 deletions Dopamine/Changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
2017-01-02: Dopamine 1.2.4 Build 861 (Release)
----------------------------------------------

- [Fixed] Artists are not sorted alphabetically


2017-01-01: Dopamine 1.2.3 Build 860 (Release)
----------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion Dopamine/Dopamine.wxs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<?define Version="1.2.860.3" ?>
<?define Version="1.2.861.4" ?>
<?define Manufacturer="Digimezzo" ?>
<?define Product="Dopamine" ?>
<?define ProductCab="Dopamine.cab" ?>
Expand Down
8 changes: 4 additions & 4 deletions Dopamine/SharedAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

[assembly: AssemblyCompany("Digimezzo")]
[assembly: AssemblyCopyright("Copyright Digimezzo © 2014 - 2017")]
[assembly: AssemblyVersion("1.2.860.3")]
[assembly: AssemblyFileVersion("1.2.860.3")]
[assembly: AssemblyVersion("1.2.861.4")]
[assembly: AssemblyFileVersion("1.2.861.4")]

#if DEBUG
[assembly: AssemblyInformationalVersion("1.2.860.3 Preview")]
[assembly: AssemblyInformationalVersion("1.2.861.4 Preview")]
#else
[assembly: AssemblyInformationalVersion("1.2.860.3")]
[assembly: AssemblyInformationalVersion("1.2.861.4")]
#endif

0 comments on commit 6cadb82

Please sign in to comment.