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">
|
<app version="1">
|
||||||
<name>SysCheck HacksDen Edition</name>
|
<name>SysCheck HacksDen Edition</name>
|
||||||
<coder>Double_A, R2-D2199, JoostinOnline, Nano</coder>
|
<coder>Double_A, R2-D2199, JoostinOnline, Nano</coder>
|
||||||
<version>2.3.0 HD Edition</version>
|
<version>2.3.1 HD Edition</version>
|
||||||
<release_date>20140818000000</release_date>
|
<release_date>20150121000000</release_date>
|
||||||
<short_description>System Checker HacksDen Edition</short_description>
|
<short_description>System Checker HacksDen Edition</short_description>
|
||||||
<long_description>Homebrew application which does several checks on installed IOS and custom IOS:
|
<long_description>Homebrew application which does several checks on installed IOS and custom IOS:
|
||||||
- Base IOS Detection
|
- Base IOS Detection
|
||||||
@ -21,6 +21,11 @@ The author can not be held responsible for any damage sysCheck might cause!
|
|||||||
|
|
||||||
------------------
|
------------------
|
||||||
Changelog
|
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
|
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 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
|
* Added translations for "Homebrew Channel is not installed" message
|
||||||
|
@ -1 +1 @@
|
|||||||
Version=36
|
Version=39
|
@ -2,7 +2,7 @@
|
|||||||
#define _UPDATE_H_
|
#define _UPDATE_H_
|
||||||
|
|
||||||
/* Constants */
|
/* Constants */
|
||||||
#define REVISION 36
|
#define REVISION 39
|
||||||
#define PATH "sd:/apps/SysCheckHDE/"
|
#define PATH "sd:/apps/SysCheckHDE/"
|
||||||
|
|
||||||
s32 updateApp(void);
|
s32 updateApp(void);
|
||||||
|
@ -263,6 +263,9 @@ float GetSysMenuNintendoVersion(u32 sysVersion)
|
|||||||
case 544:
|
case 544:
|
||||||
case 545:
|
case 545:
|
||||||
case 546:
|
case 546:
|
||||||
|
case 608:
|
||||||
|
case 609:
|
||||||
|
case 610:
|
||||||
ninVersion = 4.3f;
|
ninVersion = 4.3f;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@ -288,6 +291,7 @@ char GetSysMenuRegion(u32 sysVersion) {
|
|||||||
case 481: //4.2U
|
case 481: //4.2U
|
||||||
case 513: //4.3U
|
case 513: //4.3U
|
||||||
case 545:
|
case 545:
|
||||||
|
case 609:
|
||||||
SysMenuRegion = 'U';
|
SysMenuRegion = 'U';
|
||||||
break;
|
break;
|
||||||
case 130: //2.0E
|
case 130: //2.0E
|
||||||
@ -304,6 +308,7 @@ char GetSysMenuRegion(u32 sysVersion) {
|
|||||||
case 482: //4.2E
|
case 482: //4.2E
|
||||||
case 514: //4.3E
|
case 514: //4.3E
|
||||||
case 546:
|
case 546:
|
||||||
|
case 610:
|
||||||
SysMenuRegion = 'E';
|
SysMenuRegion = 'E';
|
||||||
break;
|
break;
|
||||||
case 128: //2.0J
|
case 128: //2.0J
|
||||||
@ -319,6 +324,7 @@ char GetSysMenuRegion(u32 sysVersion) {
|
|||||||
case 480: //4.2J
|
case 480: //4.2J
|
||||||
case 512: //4.3J
|
case 512: //4.3J
|
||||||
case 544:
|
case 544:
|
||||||
|
case 608:
|
||||||
SysMenuRegion = 'J';
|
SysMenuRegion = 'J';
|
||||||
break;
|
break;
|
||||||
case 326: //3.3K
|
case 326: //3.3K
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
int initLanguages(struct tm today)
|
int initLanguages(struct tm today)
|
||||||
{
|
{
|
||||||
TXT_AppVersion = "v2.3.0 HacksDen Edition";
|
TXT_AppVersion = "v2.3.1 HacksDen Edition";
|
||||||
switch (CONF_GetLanguage())
|
switch (CONF_GetLanguage())
|
||||||
{
|
{
|
||||||
case CONF_LANG_GERMAN:
|
case CONF_LANG_GERMAN:
|
||||||
|
Loading…
Reference in New Issue
Block a user