Test 1
This commit is contained in:
@@ -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}
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
@@ -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 |
Reference in New Issue
Block a user