mirror of
https://github.com/modmii/SysCheck-ModMii-Edition.git
synced 2024-11-22 08:09:19 +01:00
Uploaded latest version
This commit is contained in:
parent
12a1cfb776
commit
8c9566996a
Binary file not shown.
Before Width: | Height: | Size: 1.9 MiB After Width: | Height: | Size: 1.9 MiB |
@ -2,8 +2,8 @@
|
||||
<app version="1">
|
||||
<name>SysCheck HacksDen Edition</name>
|
||||
<coder>Double_A, R2-D2199, JoostinOnline, Nano</coder>
|
||||
<version>2.3.0 HD Edition</version>
|
||||
<release_date>20140818000000</release_date>
|
||||
<version>2.3.1 HD Edition</version>
|
||||
<release_date>20150121000000</release_date>
|
||||
<short_description>System Checker HacksDen Edition</short_description>
|
||||
<long_description>Homebrew application which does several checks on installed IOS and custom IOS:
|
||||
- Base IOS Detection
|
||||
@ -21,6 +21,11 @@ The author can not be held responsible for any damage sysCheck might cause!
|
||||
|
||||
------------------
|
||||
Changelog
|
||||
Version 2.3.1 HacksDen Edition
|
||||
* Added hashes for hermes cIOS 2XX[38+60]v4, 2XX[38+37]v4, and 2XX[57]v5.1 (thanks Cyan)
|
||||
* Now reports if you have a vIOS installed
|
||||
* Added support for the latest System Menu on vWii
|
||||
|
||||
Version 2.3.0 HacksDen Edition
|
||||
* Added a new argument --skipIOS, which lets you skip any specific IOS in the scan. This is useful for freezes. Multiple arguments are supported.
|
||||
* Added translations for "Homebrew Channel is not installed" message
|
||||
|
@ -1 +1 @@
|
||||
Version=36
|
||||
Version=39
|
@ -2,7 +2,7 @@
|
||||
#define _UPDATE_H_
|
||||
|
||||
/* Constants */
|
||||
#define REVISION 36
|
||||
#define REVISION 39
|
||||
#define PATH "sd:/apps/SysCheckHDE/"
|
||||
|
||||
s32 updateApp(void);
|
||||
|
@ -263,6 +263,9 @@ float GetSysMenuNintendoVersion(u32 sysVersion)
|
||||
case 544:
|
||||
case 545:
|
||||
case 546:
|
||||
case 608:
|
||||
case 609:
|
||||
case 610:
|
||||
ninVersion = 4.3f;
|
||||
break;
|
||||
}
|
||||
@ -288,6 +291,7 @@ char GetSysMenuRegion(u32 sysVersion) {
|
||||
case 481: //4.2U
|
||||
case 513: //4.3U
|
||||
case 545:
|
||||
case 609:
|
||||
SysMenuRegion = 'U';
|
||||
break;
|
||||
case 130: //2.0E
|
||||
@ -304,6 +308,7 @@ char GetSysMenuRegion(u32 sysVersion) {
|
||||
case 482: //4.2E
|
||||
case 514: //4.3E
|
||||
case 546:
|
||||
case 610:
|
||||
SysMenuRegion = 'E';
|
||||
break;
|
||||
case 128: //2.0J
|
||||
@ -319,6 +324,7 @@ char GetSysMenuRegion(u32 sysVersion) {
|
||||
case 480: //4.2J
|
||||
case 512: //4.3J
|
||||
case 544:
|
||||
case 608:
|
||||
SysMenuRegion = 'J';
|
||||
break;
|
||||
case 326: //3.3K
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
int initLanguages(struct tm today)
|
||||
{
|
||||
TXT_AppVersion = "v2.3.0 HacksDen Edition";
|
||||
TXT_AppVersion = "v2.3.1 HacksDen Edition";
|
||||
switch (CONF_GetLanguage())
|
||||
{
|
||||
case CONF_LANG_GERMAN:
|
||||
|
Loading…
Reference in New Issue
Block a user