Update download links
This commit is contained in:
@@ -11,9 +11,9 @@ namespace BadBuilder
|
|||||||
{
|
{
|
||||||
List<DownloadItem> items = new()
|
List<DownloadItem> items = new()
|
||||||
{
|
{
|
||||||
("XeXMenu", "https://consolemods.org/wiki/images/3/35/XeXmenu_12.7z"),
|
("XeXmenu", "https://github.com/Pdawg-bytes/BadBuilder/releases/download/v0.10a/MenuData.7z"),
|
||||||
("Rock Band Blitz", "https://github.com/Pdawg-bytes/BadBuilder/releases/download/v0.10a/GameData.zip"),
|
("Rock Band Blitz", "https://github.com/Pdawg-bytes/BadBuilder/releases/download/v0.10a/GameData.zip"),
|
||||||
("Simple 360 NAND Flasher", "https://www.consolemods.org/wiki/images/f/ff/Simple_360_NAND_Flasher.7z"),
|
("Simple 360 NAND Flasher", "https://github.com/Pdawg-bytes/BadBuilder/releases/download/v0.10a/Flasher.7z"),
|
||||||
};
|
};
|
||||||
await DownloadHelper.GetGitHubAssets(items);
|
await DownloadHelper.GetGitHubAssets(items);
|
||||||
|
|
||||||
|
|||||||
@@ -13,12 +13,12 @@ namespace BadBuilder
|
|||||||
{
|
{
|
||||||
internal partial class Program
|
internal partial class Program
|
||||||
{
|
{
|
||||||
static readonly Style OrangeStyle = new Style(new Color(255, 114, 0));
|
static readonly Style OrangeStyle = new(new Color(255, 114, 0));
|
||||||
static readonly Style LightOrangeStyle = new Style(new Color(255, 172, 77));
|
static readonly Style LightOrangeStyle = new(new Color(255, 172, 77));
|
||||||
static readonly Style PeachStyle = new Style(new Color(255, 216, 153));
|
static readonly Style PeachStyle = new(new Color(255, 216, 153));
|
||||||
|
|
||||||
static readonly Style GreenStyle = new Style(new Color(118, 185, 0));
|
static readonly Style GreenStyle = new(new Color(118, 185, 0));
|
||||||
static readonly Style GrayStyle = new Style(new Color(132, 133, 137));
|
static readonly Style GrayStyle = new(new Color(132, 133, 137));
|
||||||
|
|
||||||
static string XexToolPath = string.Empty;
|
static string XexToolPath = string.Empty;
|
||||||
static string TargetDriveLetter = string.Empty;
|
static string TargetDriveLetter = string.Empty;
|
||||||
@@ -40,7 +40,7 @@ namespace BadBuilder
|
|||||||
|
|
||||||
List<DiskInfo> disks = DiskHelper.GetDisks();
|
List<DiskInfo> disks = DiskHelper.GetDisks();
|
||||||
string selectedDisk = PromptDiskSelection(disks);
|
string selectedDisk = PromptDiskSelection(disks);
|
||||||
TargetDriveLetter = selectedDisk.Substring(0, 3);
|
TargetDriveLetter = selectedDisk[..3];
|
||||||
|
|
||||||
int diskIndex = disks.FindIndex(disk => $"{disk.DriveLetter} ({disk.SizeFormatted}) - {disk.Type}" == selectedDisk);
|
int diskIndex = disks.FindIndex(disk => $"{disk.DriveLetter} ({disk.SizeFormatted}) - {disk.Type}" == selectedDisk);
|
||||||
targetDisk = disks[diskIndex];
|
targetDisk = disks[diskIndex];
|
||||||
@@ -72,7 +72,7 @@ namespace BadBuilder
|
|||||||
{
|
{
|
||||||
switch (folder.Split("\\").Last())
|
switch (folder.Split("\\").Last())
|
||||||
{
|
{
|
||||||
case "XeXMenu":
|
case "XeXmenu":
|
||||||
EnqueueMirrorDirectory(
|
EnqueueMirrorDirectory(
|
||||||
Path.Combine(folder, $"{ContentFolder}C0DE9999"),
|
Path.Combine(folder, $"{ContentFolder}C0DE9999"),
|
||||||
Path.Combine(TargetDriveLetter, $"{ContentFolder}C0DE9999"),
|
Path.Combine(TargetDriveLetter, $"{ContentFolder}C0DE9999"),
|
||||||
@@ -211,7 +211,7 @@ namespace BadBuilder
|
|||||||
[#CCE388]██████╔╝██║ ██║██████╔╝██████╔╝╚██████╔╝██║███████╗██████╔╝███████╗██║ ██║[/]
|
[#CCE388]██████╔╝██║ ██║██████╔╝██████╔╝╚██████╔╝██║███████╗██████╔╝███████╗██║ ██║[/]
|
||||||
[#CCE388]╚═════╝ ╚═╝ ╚═╝╚═════╝ ╚═════╝ ╚═════╝ ╚═╝╚══════╝╚═════╝ ╚══════╝╚═╝ ╚═╝[/]
|
[#CCE388]╚═════╝ ╚═╝ ╚═╝╚═════╝ ╚═════╝ ╚═════╝ ╚═╝╚══════╝╚═════╝ ╚══════╝╚═╝ ╚═╝[/]
|
||||||
|
|
||||||
[#76B900]───────────────────────────────────────────────────────────────────────v0.30[/]
|
[#76B900]───────────────────────────────────────────────────────────────────────v0.31[/]
|
||||||
───────────────────────Xbox 360 [#FF7200]BadUpdate[/] USB Builder───────────────────────
|
───────────────────────Xbox 360 [#FF7200]BadUpdate[/] USB Builder───────────────────────
|
||||||
[#848589]Created by Pdawg[/]
|
[#848589]Created by Pdawg[/]
|
||||||
[#76B900]────────────────────────────────────────────────────────────────────────────[/]
|
[#76B900]────────────────────────────────────────────────────────────────────────────[/]
|
||||||
|
|||||||
Reference in New Issue
Block a user