mirror of
https://github.com/stuff-by-3-random-dudes/UWUVCI-AIO-WPF
synced 2024-11-12 22:37:10 +00:00
Merge branch 'dev' of https://github.com/stuff-by-3-random-dudes/UWUVCI-AIO-WPF into dev
This commit is contained in:
commit
299be6c281
6 changed files with 67 additions and 48 deletions
|
@ -8,6 +8,7 @@ using System.Linq;
|
|||
using System.Threading.Tasks;
|
||||
using System.Timers;
|
||||
using System.Windows;
|
||||
using UWUVCI_AIO_WPF.Classes;
|
||||
using UWUVCI_AIO_WPF.UI.Windows;
|
||||
|
||||
namespace UWUVCI_AIO_WPF
|
||||
|
@ -98,12 +99,13 @@ namespace UWUVCI_AIO_WPF
|
|||
}
|
||||
if (Environment.Is64BitOperatingSystem)
|
||||
{
|
||||
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
//wnd.is32();
|
||||
Custom_Message cm = new Custom_Message("Warning", "Some features may cause issues on a 32Bit System. Upgrading to 64Bit would be recommended. \nReport any issues in the UWUVCI Discord, or ping @NicoAICP in #wiiu-assistance in the Nintendo Homebrew discord. ");
|
||||
Custom_Message cm = new Custom_Message("Warning", "Some features may cause issues on a 32Bit System. Upgrading to 64Bit would be recommended.\nDue to an Issue with packing on 32Bit Systems, you need Java installed for packing. \nReport any issues in the UWUVCI Discord, or ping @NicoAICP in #wiiu-assistance in the Nintendo Homebrew discord. ");
|
||||
cm.ShowDialog();
|
||||
}
|
||||
|
||||
|
|
|
@ -1682,7 +1682,7 @@ namespace UWUVCI_AIO_WPF
|
|||
mvvm.foldername = $"[WUP]{reg.Replace(gameName, "").Replace("|", " ")}_{i}";
|
||||
i++;
|
||||
}
|
||||
|
||||
var oldpath = Directory.GetCurrentDirectory();
|
||||
mvm.Progress = 40;
|
||||
mvm.msg = "Packing...";
|
||||
using (Process cnuspacker = new Process())
|
||||
|
@ -1692,12 +1692,19 @@ namespace UWUVCI_AIO_WPF
|
|||
cnuspacker.StartInfo.UseShellExecute = false;
|
||||
cnuspacker.StartInfo.CreateNoWindow = true;
|
||||
}
|
||||
|
||||
cnuspacker.StartInfo.FileName = Path.Combine(toolsPath, "CNUSPACKER.exe");
|
||||
cnuspacker.StartInfo.Arguments = $"-in \"{baseRomPath}\" -out \"{outputPath}\" -encryptKeyWith {Properties.Settings.Default.Ckey}";
|
||||
|
||||
if (Environment.Is64BitOperatingSystem)
|
||||
{
|
||||
cnuspacker.StartInfo.FileName = Path.Combine(toolsPath, "CNUSPACKER.exe");
|
||||
cnuspacker.StartInfo.Arguments = $"-in \"{baseRomPath}\" -out \"{outputPath}\" -encryptKeyWith {Properties.Settings.Default.Ckey}";
|
||||
}
|
||||
else
|
||||
{
|
||||
cnuspacker.StartInfo.FileName = "java";
|
||||
cnuspacker.StartInfo.Arguments = $"-jar \"{Path.Combine(toolsPath, "NUSPacker.jar")}\" -in \"{baseRomPath}\" -out \"{outputPath}\" -encryptKeyWith {Properties.Settings.Default.Ckey}";
|
||||
}
|
||||
cnuspacker.Start();
|
||||
cnuspacker.WaitForExit();
|
||||
Directory.SetCurrentDirectory(oldpath);
|
||||
}
|
||||
mvm.Progress = 90;
|
||||
mvm.msg = "Cleaning...";
|
||||
|
|
|
@ -506,8 +506,15 @@ namespace UWUVCI_AIO_WPF
|
|||
}
|
||||
public MainViewModel()
|
||||
{
|
||||
|
||||
|
||||
if (!Environment.Is64BitOperatingSystem)
|
||||
{
|
||||
List<string> Tools = ToolCheck.ToolNames.ToList();
|
||||
Tools.Remove("CNUSPACKER.exe");
|
||||
Tools.Add("NUSPacker.jar");
|
||||
ToolCheck.ToolNames = Tools.ToArray();
|
||||
}
|
||||
|
||||
|
||||
//if (Directory.Exists(@"Tools")) Directory.Delete(@"Tools", true);
|
||||
if (Directory.Exists(@"bases")) Directory.Delete(@"bases", true);
|
||||
if (Directory.Exists(@"temp")) Directory.Delete(@"temp", true);
|
||||
|
@ -1869,7 +1876,16 @@ namespace UWUVCI_AIO_WPF
|
|||
|
||||
foreach (MissingTool m in missingTools)
|
||||
{
|
||||
DownloadTool(m.Name,this);
|
||||
if(m.Name == "blank.ini")
|
||||
{
|
||||
StreamWriter sw = new StreamWriter(Path.Combine(Directory.GetCurrentDirectory(), "bin", "Tools", "blank.ini"));
|
||||
sw.Close();
|
||||
}
|
||||
else
|
||||
{
|
||||
DownloadTool(m.Name, this);
|
||||
}
|
||||
|
||||
Progress += Convert.ToInt32(l);
|
||||
}
|
||||
Progress = 100;
|
||||
|
@ -3658,26 +3674,7 @@ namespace UWUVCI_AIO_WPF
|
|||
{
|
||||
WebRequest request;
|
||||
//get download link from uwuvciapi
|
||||
try
|
||||
{
|
||||
request = WebRequest.Create("https://uwuvciapi.azurewebsites.net/GetURL?cns=" + console.ToLower());
|
||||
|
||||
|
||||
|
||||
|
||||
var response = request.GetResponse();
|
||||
using (Stream dataStream = response.GetResponseStream())
|
||||
{
|
||||
// Open the stream using a StreamReader for easy access.
|
||||
StreamReader reader = new StreamReader(dataStream);
|
||||
// Read the content.
|
||||
string responseFromServer = reader.ReadToEnd();
|
||||
// Display the content.
|
||||
return responseFromServer;
|
||||
}
|
||||
}
|
||||
catch (Exception)
|
||||
{
|
||||
|
||||
string url = "";
|
||||
switch (console.ToLower())
|
||||
{
|
||||
|
@ -3717,22 +3714,7 @@ namespace UWUVCI_AIO_WPF
|
|||
url = null;
|
||||
break;
|
||||
}
|
||||
request = WebRequest.Create(url + console.ToLower());
|
||||
|
||||
|
||||
|
||||
|
||||
var response = request.GetResponse();
|
||||
using (Stream dataStream = response.GetResponseStream())
|
||||
{
|
||||
// Open the stream using a StreamReader for easy access.
|
||||
StreamReader reader = new StreamReader(dataStream);
|
||||
// Read the content.
|
||||
string responseFromServer = reader.ReadToEnd();
|
||||
// Display the content.
|
||||
return responseFromServer;
|
||||
}
|
||||
}
|
||||
return url;
|
||||
|
||||
}
|
||||
WaveOutEvent waveOutEvent = new WaveOutEvent();
|
||||
|
|
28
UWUVCI AIO WPF/Settings.cs
Normal file
28
UWUVCI AIO WPF/Settings.cs
Normal file
|
@ -0,0 +1,28 @@
|
|||
namespace UWUVCI_AIO_WPF.Properties {
|
||||
|
||||
|
||||
// Diese Klasse ermöglicht die Behandlung bestimmter Ereignisse der Einstellungsklasse:
|
||||
// Das SettingChanging-Ereignis wird ausgelöst, bevor der Wert einer Einstellung geändert wird.
|
||||
// Das PropertyChanged-Ereignis wird ausgelöst, nachdem der Wert einer Einstellung geändert wurde.
|
||||
// Das SettingsLoaded-Ereignis wird ausgelöst, nachdem die Einstellungswerte geladen wurden.
|
||||
// Das SettingsSaving-Ereignis wird ausgelöst, bevor die Einstellungswerte gespeichert werden.
|
||||
internal sealed partial class Settings {
|
||||
|
||||
public Settings() {
|
||||
// // Heben Sie die Auskommentierung der unten angezeigten Zeilen auf, um Ereignishandler zum Speichern und Ändern von Einstellungen hinzuzufügen:
|
||||
//
|
||||
// this.SettingChanging += this.SettingChangingEventHandler;
|
||||
//
|
||||
// this.SettingsSaving += this.SettingsSavingEventHandler;
|
||||
//
|
||||
}
|
||||
|
||||
private void SettingChangingEventHandler(object sender, System.Configuration.SettingChangingEventArgs e) {
|
||||
// Fügen Sie hier Code zum Behandeln des SettingChangingEvent-Ereignisses hinzu.
|
||||
}
|
||||
|
||||
private void SettingsSavingEventHandler(object sender, System.ComponentModel.CancelEventArgs e) {
|
||||
// Fügen Sie hier Code zum Behandeln des SettingsSaving-Ereignisses hinzu.
|
||||
}
|
||||
}
|
||||
}
|
|
@ -46,7 +46,7 @@
|
|||
<Ellipse Fill="#FF2196F3" HorizontalAlignment="Left" Height="21" Margin="12,7,0,0" VerticalAlignment="Top" Width="17"/>
|
||||
<Ellipse Fill="#FF2196F3" HorizontalAlignment="Left" Height="21" Margin="12,7,0,0" VerticalAlignment="Top" Width="17"/>
|
||||
<Border BorderBrush="#FF2196F3" BorderThickness="1" HorizontalAlignment="Left" Height="33" Margin="12,6,0,0" VerticalAlignment="Top" Width="1108" CornerRadius="5" Background="#FF2196F3"/>
|
||||
<Label Content="v3.0 BETA" HorizontalAlignment="Left" Margin="1048,10,0,0" VerticalAlignment="Top" Foreground="#DDFFFFFF" Width="72" Height="24"/>
|
||||
<Label Content="v3.0 BETA 15" HorizontalAlignment="Left" Margin="1039,10,0,0" VerticalAlignment="Top" Foreground="#DDFFFFFF" Width="81" Height="24"/>
|
||||
|
||||
|
||||
</Grid>
|
||||
|
|
|
@ -103,7 +103,7 @@ namespace UWUVCI_AIO_WPF.UI.Windows
|
|||
throw new Exception();
|
||||
}
|
||||
}
|
||||
catch (Exception)
|
||||
catch (Exception e)
|
||||
{
|
||||
Custom_Message cm = new Custom_Message("Not Implemented", $"The Helppage for {url.ToUpper()} is not implemented yet");
|
||||
try
|
||||
|
|
Loading…
Reference in a new issue