This commit is contained in:
2022-12-29 07:51:19 -08:00
parent a3fa21c61b
commit a9247df300
4 changed files with 7 additions and 6 deletions
+1 -1
View File
@@ -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}
+2 -2
View File
@@ -187,9 +187,9 @@ namespace QuestAppLauncher
var configRepos = new HashSet<string>();
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;
}
+4 -3
View File
@@ -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";
/// <summary>
/// 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;
}
/// <summary>
Binary file not shown.

Before

Width:  |  Height:  |  Size: 70 KiB

After

Width:  |  Height:  |  Size: 80 KiB