mirror of
https://github.com/stuff-by-3-random-dudes/UWUVCI-AIO-WPF
synced 2024-11-10 05:34:13 +00:00
Fixed packing for all systems 32 bit users have to use java
This commit is contained in:
parent
83c9778698
commit
44c38dec03
4 changed files with 53 additions and 9 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);
|
||||
|
|
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.
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue