CustomizeMii 2.31 (Hotfix)

This commit is contained in:
leathl 2010-02-25 00:08:01 +00:00
parent 7f0c3bc9f3
commit 771f44f4a2
4 changed files with 22 additions and 14 deletions

View File

@ -800,8 +800,8 @@ namespace CustomizeMii
void bwCreateWad_DoWork(object sender, DoWorkEventArgs e)
{
try
{
//try
//{
BackgroundWorker bwCreateWad = sender as BackgroundWorker;
WadCreationInfo wadInfo = (WadCreationInfo)e.Argument;
EventHandler DisableControls = new EventHandler(this.DisableControls);
@ -1014,15 +1014,15 @@ namespace CustomizeMii
wadCreationInfo = wadInfo;
wadCreationInfo.success = true;
}
catch (Exception ex)
{
sendWadReady = -1;
CreationTimer.Stop();
EventHandler EnableControls = new EventHandler(this.EnableControls);
this.Invoke(EnableControls);
ErrorBox(ex.Message);
}
//}
//catch (Exception ex)
//{
// sendWadReady = -1;
// CreationTimer.Stop();
// EventHandler EnableControls = new EventHandler(this.EnableControls);
// this.Invoke(EnableControls);
// ErrorBox(ex.Message);
//}
}
}
}

View File

@ -33,7 +33,7 @@ namespace CustomizeMii
public partial class CustomizeMii_Main : Form
{
#region Constants
const string version = "2.3"; //Hint for myself: Never use a char in the Version (UpdateCheck)!
const string version = "2.31"; //Hint for myself: Never use a char in the Version (UpdateCheck)!
const int SoundMaxLength = 30; //In seconds
const int SoundWarningLength = 20; //In seconds
const int BnsWarningLength = 45; //In seconds
@ -1288,11 +1288,16 @@ namespace CustomizeMii
{
WadCreationInfo wadInfo = new WadCreationInfo();
wadInfo.outFile = TempPath + "SendToWii.wad";
wadInfo.titles = new string[] { tbJapanese.Text, tbEnglish.Text, tbGerman.Text, tbFrench.Text, tbSpanish.Text, tbItalian.Text, tbDutch.Text, tbKorean.Text };
wadInfo.allLangTitle = tbAllLanguages.Text;
wadInfo.nandLoader = (WadCreationInfo.NandLoader)cmbNandLoader.SelectedIndex;
wadInfo.sendToWii = true;
wadInfo.transmitProtocol = (TransmitProtocol)cmt.Protocol;
wadInfo.transmitIp = cmt.IPAddress;
wadInfo.transmitIos = int.Parse(cmt.IOS);
wadInfo.titleId = tbTitleID.Text;
wadInfo.sound = tbSound.Text;
wadInfo.dol = tbDol.Text;
BackgroundWorker bwCreateWad = new BackgroundWorker();
bwCreateWad.DoWork += new DoWorkEventHandler(bwCreateWad_DoWork);

View File

@ -50,6 +50,6 @@ using System.Resources;
// Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern
// übernehmen, indem Sie "*" eingeben:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.3.0.0")]
[assembly: AssemblyFileVersion("2.3.0.0")]
[assembly: AssemblyVersion("2.3.1.0")]
[assembly: AssemblyFileVersion("2.3.1.0")]
[assembly: NeutralResourcesLanguageAttribute("en")]

View File

@ -9,6 +9,9 @@ Thanks to icefire / Xuzz for the basic idea of this Application!
-----------------------------------------------------------------------------------------
Changelog:
Version 2.31
- Fixed sending to Wii
Version 2.3
- Fixed bug when extracting icon images
- Added ability to change the startup IOS (IOS used to launch the title)