Support to sort by most recent usage

This commit is contained in:
tverona1
2019-08-20 23:41:09 -07:00
parent d30673f8a3
commit 1ab8190827
7 changed files with 1495 additions and 18 deletions
+7
View File
@@ -20,6 +20,10 @@ namespace QuestAppLauncher
public const string Category_Left = "left";
public const string Category_Right = "right";
// Sort settings
public const string Sort_AZ = "az";
public const string Sort_MostRecent = "mostRecent";
// Download repos
public const string DownloadRepo_Type_GitHub = "github";
public const string DownloadRepo_Default = @"tverona1/QuestAppLauncher_Assets/releases/latest";
@@ -47,6 +51,9 @@ namespace QuestAppLauncher
// Grid size, specified as cols x rows
public GridSize gridSize = new GridSize();
// Sort mode
public string sortMode = Sort_AZ;
// Whether to show 2D apps
public bool show2D = false;