-
-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from mattpannella/develop
v.1.4.0 changes
- Loading branch information
Showing
10 changed files
with
228 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
namespace pannella.analoguepocket; | ||
|
||
public class Config | ||
{ | ||
public bool download_bios { get; set; } | ||
public bool download_firmware { get; set; } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
namespace pannella.analoguepocket; | ||
|
||
public class CoreSettings | ||
{ | ||
public bool skip { get; set; } | ||
public Bios bios { get; set; } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
namespace pannella.analoguepocket; | ||
|
||
public class Firmware | ||
{ | ||
public string version { get; set; } | ||
|
||
public Firmware() | ||
{ | ||
version = ""; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
namespace pannella.analoguepocket; | ||
|
||
public class Settings | ||
{ | ||
public Firmware firmware { get; set; } | ||
public Config config { get; set; } | ||
public Dictionary<string, CoreSettings> coreSettings { get; set; } | ||
|
||
public Settings() | ||
{ | ||
firmware = new Firmware(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<OutputType>Exe</OutputType> | ||
<TargetFramework>net6.0</TargetFramework> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<Nullable>enable</Nullable> | ||
</PropertyGroup> | ||
|
||
</Project> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<OutputType>Exe</OutputType> | ||
<TargetFramework>net6.0</TargetFramework> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<Nullable>enable</Nullable> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="CommandLineParser" Version="2.9.1"/> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
{ | ||
"firmware": { | ||
"version": "" | ||
}, | ||
"config": { | ||
"download_bios": true, | ||
"download_firmware": true | ||
}, | ||
"coreSettings": { | ||
"GBA": { | ||
"skip": true, | ||
"bios": { | ||
"location": "assets/gba/common/", | ||
"files": [ | ||
{ | ||
"url": "https://archive.org/download/mister-console-bios-pack_theypsilon/GBA.zip/gba_bios.bin", | ||
"file_name": "gba_bios.bin", | ||
"zip": false, | ||
"zip_file": null, | ||
"overrideLocation": null | ||
} | ||
] | ||
} | ||
}, | ||
"NeoGeo": { | ||
"skip": false, | ||
"bios": { | ||
"location": "assets/ng/common", | ||
"files": [ | ||
{ | ||
"url": "http://unibios.free.fr/download/uni-bios-40.zip", | ||
"file_name": "uni-bios_1_0.rom", | ||
"zip": true, | ||
"zip_file": "uni-bios.rom", | ||
"overrideLocation": null | ||
}, | ||
{ | ||
"url": "https://archive.org/download/mister-console-bios-pack_theypsilon/NeoGeo.zip/000-lo.lo", | ||
"file_name": "000-lo.lo", | ||
"zip": false, | ||
"zip_file": null, | ||
"overrideLocation": null | ||
} | ||
] | ||
} | ||
}, | ||
"SG-1000": { | ||
"skip": true, | ||
"bios": null | ||
} | ||
} | ||
} |