mirror of
https://github.com/dborth/snes9xgx.git
synced 2024-11-24 03:29:22 +01:00
finalize 4.2.3
This commit is contained in:
parent
3aa626f2b5
commit
dfa49325ec
@ -2,8 +2,8 @@
|
|||||||
<app version="1">
|
<app version="1">
|
||||||
<name>Snes9x GX</name>
|
<name>Snes9x GX</name>
|
||||||
<coder>Tantric</coder>
|
<coder>Tantric</coder>
|
||||||
<version>4.2.2</version>
|
<version>4.2.3</version>
|
||||||
<release_date>20100720</release_date>
|
<release_date>20100722</release_date>
|
||||||
<short_description>Super Nintendo Emulator</short_description>
|
<short_description>Super Nintendo Emulator</short_description>
|
||||||
<long_description>A Super Nintendo Emulator for Wii</long_description>
|
<long_description>A Super Nintendo Emulator for Wii</long_description>
|
||||||
</app>
|
</app>
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
————————————————————————————————————————————————————————————————————————————
|
————————————————————————————————————————————————————————————————————————————
|
||||||
|
|
||||||
×—–—–—–—– –—–—–—–—–—–—–—–—–—–— —–—–—–—–—–—–—–—-—–-–•¬
|
×—–—–—–—– –—–—–—–—–—–—–—–—–—–— —–—–—–—–—–—–—–—-—–-–•¬
|
||||||
|0O×øo· Snes9x GX 4.2.2 ·oø×O0|
|
|0O×øo· Snes9x GX ·oø×O0|
|
||||||
| http://code.google.com/p/snes9x-gx |
|
| http://code.google.com/p/snes9x-gx |
|
||||||
| (Under GPL License) |
|
| (Under GPL License) |
|
||||||
`¨•¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨'
|
`¨•¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨'
|
||||||
@ -43,6 +43,10 @@ Wii homebrew is WiiBrew (www.wiibrew.org).
|
|||||||
| UPDATE HISTORY |
|
| UPDATE HISTORY |
|
||||||
•˜———–—––-- - —————————––––– ———–—––-- - —————————––––– ———–—––-- - ————————•
|
•˜———–—––-- - —————————––––– ———–—––-- - —————————––––– ———–—––-- - ————————•
|
||||||
|
|
||||||
|
[4.2.3 - July 22, 2010]
|
||||||
|
|
||||||
|
* Fixed broken auto-update
|
||||||
|
|
||||||
[4.2.2 - July 20, 2010]
|
[4.2.2 - July 20, 2010]
|
||||||
|
|
||||||
* Reverted USB2 changes
|
* Reverted USB2 changes
|
||||||
|
@ -152,8 +152,14 @@ bool DownloadUpdate()
|
|||||||
if (hfile)
|
if (hfile)
|
||||||
{
|
{
|
||||||
if(http_request(updateURL, hfile, NULL, (1024*1024*10), NOTSILENT) > 0)
|
if(http_request(updateURL, hfile, NULL, (1024*1024*10), NOTSILENT) > 0)
|
||||||
|
{
|
||||||
|
fclose (hfile);
|
||||||
result = unzipArchive(updateFile, (char *)pathPrefix[device]);
|
result = unzipArchive(updateFile, (char *)pathPrefix[device]);
|
||||||
fclose (hfile);
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
fclose (hfile);
|
||||||
|
}
|
||||||
remove(updateFile); // delete update file
|
remove(updateFile); // delete update file
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
#include "filelist.h"
|
#include "filelist.h"
|
||||||
|
|
||||||
#define APPNAME "Snes9x GX"
|
#define APPNAME "Snes9x GX"
|
||||||
#define APPVERSION "4.2.2"
|
#define APPVERSION "4.2.3"
|
||||||
#define APPFOLDER "snes9xgx"
|
#define APPFOLDER "snes9xgx"
|
||||||
#define PREF_FILE_NAME "settings.xml"
|
#define PREF_FILE_NAME "settings.xml"
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||||
<app version="4.2.2">
|
<app version="4.2.3">
|
||||||
<file url="http://snes9x-gx.googlecode.com/files/Snes9x%20GX%204.2.2.zip"></file>
|
<file url="http://snes9x-gx.googlecode.com/files/Snes9x%20GX%204.2.3.zip"></file>
|
||||||
</app>
|
</app>
|
||||||
|
Loading…
Reference in New Issue
Block a user