Pre-1.9 release

This commit is contained in:
givememystuffplease 2011-01-19 21:17:32 +00:00
parent 8d60f920c7
commit fbd8c159ff
3 changed files with 25 additions and 22 deletions

View File

@ -450,12 +450,12 @@ namespace NUS_Downloader
this.toolStripSeparator3, this.toolStripSeparator3,
this.proxySettingsToolStripMenuItem, this.proxySettingsToolStripMenuItem,
this.toolStripSeparator6, this.toolStripSeparator6,
this.moreExtrasToolStripMenuItem,
this.openNUSDDirectoryToolStripMenuItem, this.openNUSDDirectoryToolStripMenuItem,
this.moreExtrasToolStripMenuItem,
this.donateToolStripMenuItem, this.donateToolStripMenuItem,
this.aboutNUSDToolStripMenuItem}); this.aboutNUSDToolStripMenuItem});
this.extrasStrip.Name = "extrasStrip"; this.extrasStrip.Name = "extrasStrip";
this.extrasStrip.Size = new System.Drawing.Size(178, 148); this.extrasStrip.Size = new System.Drawing.Size(178, 170);
this.extrasStrip.Text = "Hidden"; this.extrasStrip.Text = "Hidden";
this.extrasStrip.Closed += new System.Windows.Forms.ToolStripDropDownClosedEventHandler(this.anyStrip_Closed); this.extrasStrip.Closed += new System.Windows.Forms.ToolStripDropDownClosedEventHandler(this.anyStrip_Closed);
this.extrasStrip.Opening += new System.ComponentModel.CancelEventHandler(this.extrasStrip_Opening); this.extrasStrip.Opening += new System.ComponentModel.CancelEventHandler(this.extrasStrip_Opening);

View File

@ -47,7 +47,7 @@ namespace NUS_Downloader
private static string version = String.Format("SVN r{0}", ((int.Parse(svnversion.Replace("$"+"R"+"e"+"v"+": ","").Replace(" "+"$","")))+1)); private static string version = String.Format("SVN r{0}", ((int.Parse(svnversion.Replace("$"+"R"+"e"+"v"+": ","").Replace(" "+"$","")))+1));
#else #else
// TODO: Always remember to change version! // TODO: Always remember to change version!
private string version = "v2.0"; private string version = "v1.9";
#endif #endif
// Cross-thread Windows Formsing // Cross-thread Windows Formsing
@ -2420,28 +2420,30 @@ namespace NUS_Downloader
WriteStatus("SVN BUILD: DO NOT REPORT BROKEN FEATURES!"); WriteStatus("SVN BUILD: DO NOT REPORT BROKEN FEATURES!");
WriteStatus("This application created by WB3000"); WriteStatus("This application created by WB3000");
WriteStatus("Various sections contributed by lukegb"); WriteStatus("Various contributions by lukegb");
WriteStatus(String.Empty); WriteStatus(String.Empty);
/*
if (NUSDFileExists("key.bin") == false) if (NUSDFileExists("key.bin") == false)
WriteStatus("Wii Decryption: Need (key.bin)"); WriteStatus("Wii Decryption: Local (key.bin)");
else
WriteStatus("Wii Decryption: OK");
if (NUSDFileExists("kkey.bin") == false) if (NUSDFileExists("kkey.bin") == false)
WriteStatus("Wii Korea Decryption: Need (kkey.bin)"); WriteStatus("Wii Korea Decryption: Local (kkey.bin)");
else
WriteStatus("Wii Korea Decryption: OK");
*/
if (NUSDFileExists("dsikey.bin") == false) if (NUSDFileExists("dsikey.bin") == false)
WriteStatus("DSi Decryption: Need (dsikey.bin)"); WriteStatus("DSi Decryption: Local (dsikey.bin)");
else
WriteStatus("DSi Decryption: OK");
if (NUSDFileExists("database.xml") == false) if (NUSDFileExists("database.xml") == false)
WriteStatus("Database: Need (database.xml)"); WriteStatus("Database (Wii): Need (database.xml)");
else else
WriteStatus("Database: OK"); WriteStatus("Database (Wii): OK");
if (NUSDFileExists("dsidatabase.xml") == false)
WriteStatus("Database (DSi): Need (dsidatabase.xml)");
else
WriteStatus("Database (DSi): OK");
if (IsWin7()) if (IsWin7())
WriteStatus("Windows 7 Features: Enabled"); WriteStatus("Windows 7 Features: Enabled");
@ -2450,13 +2452,12 @@ namespace NUS_Downloader
WriteStatus("Special thanks to:"); WriteStatus("Special thanks to:");
WriteStatus(" * Crediar for his wadmaker tool + source, and for the advice!"); WriteStatus(" * Crediar for his wadmaker tool + source, and for the advice!");
WriteStatus(" * Leathl for libWiiSharp."); WriteStatus(" * Leathl for libWiiSharp.");
WriteStatus(" * SquidMan/Galaxy/comex/Xuzz for advice/sources."); WriteStatus(" * SquidMan/Galaxy/comex/Xuzz/#WiiDev for advice.");
WriteStatus(" * Pasta for database compilation assistance."); WriteStatus(" * Pasta for impressive database contributions.");
WriteStatus(" * Napo7 for testing proxy usage."); WriteStatus(" * Napo7 for testing proxy settings.");
WriteStatus(" * Wyatt O'Day for the Windows7ProgressBar Control."); WriteStatus(" * Wyatt O'Day for the Windows7ProgressBar Control.");
WriteStatus(" * Famfamfam for the Silk Icon Set."); WriteStatus(" * Famfamfam for the Silk Icon Set.");
WriteStatus(" * #WiiDev for answering the tough questions."); WriteStatus(" * Anyone who has helped beta test!");
WriteStatus(" * Anyone who helped beta test!");
} }
private void checkBox1_CheckedChanged(object sender, EventArgs e) private void checkBox1_CheckedChanged(object sender, EventArgs e)
@ -2856,6 +2857,8 @@ namespace NUS_Downloader
if (File.Exists(Path.Combine(CURRENT_DIR, "database.xml"))) if (File.Exists(Path.Combine(CURRENT_DIR, "database.xml")))
File.Delete(Path.Combine(CURRENT_DIR, "database.xml")); File.Delete(Path.Combine(CURRENT_DIR, "database.xml"));
if (File.Exists(Path.Combine(CURRENT_DIR, "dsidatabase.xml")))
File.Delete(Path.Combine(CURRENT_DIR, "dsidatabase.xml"));
if (File.Exists(Path.Combine(CURRENT_DIR, "olddatabase.xml"))) if (File.Exists(Path.Combine(CURRENT_DIR, "olddatabase.xml")))
File.Delete(Path.Combine(CURRENT_DIR, "olddatabase.xml")); File.Delete(Path.Combine(CURRENT_DIR, "olddatabase.xml"));