diff --git a/Assets/Scenes/QuestAppLauncher.unity b/Assets/Scenes/QuestAppLauncher.unity index bf7697b..ac7a71d 100644 --- a/Assets/Scenes/QuestAppLauncher.unity +++ b/Assets/Scenes/QuestAppLauncher.unity @@ -20934,7 +20934,7 @@ MonoBehaviour: m_PersistentCalls: m_Calls: - m_Target: {fileID: 883330328} - m_MethodName: OpenSettings + m_MethodName: "" m_Mode: 1 m_Arguments: m_ObjectArgument: {fileID: 0} diff --git a/Assets/Scripts/AssetsDownloader.cs b/Assets/Scripts/AssetsDownloader.cs index 10130f3..6f68961 100644 --- a/Assets/Scripts/AssetsDownloader.cs +++ b/Assets/Scripts/AssetsDownloader.cs @@ -187,9 +187,9 @@ namespace QuestAppLauncher var configRepos = new HashSet(); foreach (var item in config.downloadRepos) { - if (null == item.type || !string.Equals(item.type, Config.DownloadRepo_Type_GitHub, StringComparison.OrdinalIgnoreCase)) + if (null == item.type || !string.Equals(item.type, Config.DownloadRepo_Type_GitHub, StringComparison.OrdinalIgnoreCase) || !string.Equals(item.type, Config.DownloadRepo_Type_PrivUrl, StringComparison.OrdinalIgnoreCase)) { - // For now, we only support GitHub repos + // For now, we only support GitHub repos, or our private update url continue; } diff --git a/Assets/Scripts/Config.cs b/Assets/Scripts/Config.cs index ff5880c..5ff6b51 100644 --- a/Assets/Scripts/Config.cs +++ b/Assets/Scripts/Config.cs @@ -26,10 +26,11 @@ namespace QuestAppLauncher // Download repos public const string DownloadRepo_Type_GitHub = "github"; + public const string DownloadRepo_Type_PrivUrl = "hhsupserver"; public const string DownloadRepo_Default = @"hooverhigh/QuestAppLauncher_Assets/releases/latest"; // Background - public const string Background_Default = "default"; + public const string Background_Default = "background.png"; /// /// Grid size @@ -37,8 +38,8 @@ namespace QuestAppLauncher [Serializable] public class GridSize { - public int rows = 3; - public int cols = 3; + public int rows = 4; + public int cols = 4; } /// diff --git a/Assets/Sprites/QuestAppLauncher.png b/Assets/Sprites/QuestAppLauncher.png index 1d6ad61..f339c19 100644 Binary files a/Assets/Sprites/QuestAppLauncher.png and b/Assets/Sprites/QuestAppLauncher.png differ