- Added a horizontal and list view for depot/library - Games only show covers (with fallback cover) - Added install addon / directory select dialog - Fixed download queue - Added footer somewhat matching Blazor launcher - Temporarily removed sidebar - Implemented custom window chrome - Added profile button - Reworked game details to better match Blazor launcher - Added grouping by genre, collection, or first letter
11 lines
177 B
C#
11 lines
177 B
C#
namespace LANCommander.Launcher.Settings.Enums
|
|
{
|
|
public enum GroupBy
|
|
{
|
|
None,
|
|
Collection,
|
|
Genre,
|
|
Platform,
|
|
FirstLetter
|
|
}
|
|
}
|