mirror of
https://github.com/modmii/modmii.github.io.git
synced 2025-05-03 10:01:15 +02:00

Updated md5 hash and sysCheck Updater recognition for v1.0 of the HackMii Installer. A big thanks goes out to Team Twiizers for this unexpected update. settings.exe was updated to v1.1 by obcd (v1.0 by cwstjdenobs). setting.txt's built for an Emulated NAND of one region but based on a different region's serial number will now also be able to establish a wifi connection. Added an option to change the setting.txt to ModMii's Emulated NAND Modifier. This will allow you to modify an Emulated NAND to be able to establish a wifi connection when running on a different real Wii. Fixed bug that only occurred when running ModMii Skin on Windows XP and it would not wait for ModMii Classic to finish running before reporting the Download Log. Thanks to person66 for his revisions to ModMii's Launcher (aka shortcut-er). Fixed bug where drag and drop support did not work when items were dragged into ModMii.bat and ModMiiSkin.bat. This bug did not apply when items were dragged onto ModMii.exe and ModMiiSkin.exe. Other Minor Changes.
37 lines
1.4 KiB
C#
37 lines
1.4 KiB
C#
using System.Reflection;
|
|
using System.Runtime.CompilerServices;
|
|
using System.Runtime.InteropServices;
|
|
|
|
// General Information about an assembly is controlled through the following
|
|
// set of attributes. Change these attribute values to modify the information
|
|
// associated with an assembly.
|
|
[assembly: AssemblyTitle("ModMii Launcher")]
|
|
[assembly: AssemblyDescription("")]
|
|
[assembly: AssemblyConfiguration("")]
|
|
[assembly: AssemblyCompany("")]
|
|
[assembly: AssemblyProduct("ModMii Launcher")]
|
|
[assembly: AssemblyCopyright("ModMii by XFlak, Launcher by person66")]
|
|
[assembly: AssemblyTrademark("")]
|
|
[assembly: AssemblyCulture("")]
|
|
|
|
// Setting ComVisible to false makes the types in this assembly not visible
|
|
// to COM components. If you need to access a type in this assembly from
|
|
// COM, set the ComVisible attribute to true on that type.
|
|
[assembly: ComVisible(false)]
|
|
|
|
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
|
[assembly: Guid("2c726ad6-2c29-430f-9e44-92d025160689")]
|
|
|
|
// Version information for an assembly consists of the following four values:
|
|
//
|
|
// Major Version
|
|
// Minor Version
|
|
// Build Number
|
|
// Revision
|
|
//
|
|
// You can specify all the values or you can default the Build and Revision Numbers
|
|
// by using the '*' as shown below:
|
|
// [assembly: AssemblyVersion("1.0.*")]
|
|
[assembly: AssemblyVersion("1.0.0.0")]
|
|
[assembly: AssemblyFileVersion("1.0.0.0")]
|