mirror of
https://github.com/dborth/fceugx.git
synced 2025-01-24 14:31:10 +01:00
finalize 3.2.1
This commit is contained in:
parent
7988928c6f
commit
bc45121dd8
@ -2,8 +2,8 @@
|
|||||||
<app version="1">
|
<app version="1">
|
||||||
<name>FCE Ultra GX</name>
|
<name>FCE Ultra GX</name>
|
||||||
<coder>Tantric</coder>
|
<coder>Tantric</coder>
|
||||||
<version>3.2.0</version>
|
<version>3.2.1</version>
|
||||||
<release_date>20100720</release_date>
|
<release_date>20100722</release_date>
|
||||||
<short_description>Nintendo Emulator</short_description>
|
<short_description>Nintendo Emulator</short_description>
|
||||||
<long_description>A port of FCE Ultra to the Wii.</long_description>
|
<long_description>A port of FCE Ultra to the Wii.</long_description>
|
||||||
</app>
|
</app>
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
¸,ø¤°`°¤ø,¸¸,ø¤°`°¤ø,¸,ø¤°`°¤ø,¸¸,ø¤°`°¤ø,¸,ø¤°`°¤ø,¸¸,ø¤°`°¤ø,¸,ø¤°`°¤ø,¸¸,ø¤
|
¸,ø¤°`°¤ø,¸¸,ø¤°`°¤ø,¸,ø¤°`°¤ø,¸¸,ø¤°`°¤ø,¸,ø¤°`°¤ø,¸¸,ø¤°`°¤ø,¸,ø¤°`°¤ø,¸¸,ø¤
|
||||||
|
|
||||||
- FCE Ultra GX -
|
- FCE Ultra GX -
|
||||||
Version 3.2.0
|
|
||||||
http://code.google.com/p/fceugc
|
http://code.google.com/p/fceugc
|
||||||
(Under GPL License)
|
(Under GPL License)
|
||||||
|
|
||||||
@ -33,6 +32,10 @@ Wii/GameCube.
|
|||||||
|0O×øo· UPDATE HISTORY ·oø×O0|
|
|0O×øo· UPDATE HISTORY ·oø×O0|
|
||||||
`¨•¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨'
|
`¨•¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨'
|
||||||
|
|
||||||
|
[3.2.1 - July 22, 2010]
|
||||||
|
|
||||||
|
* Fixed broken auto-update
|
||||||
|
|
||||||
[3.2.0 - July 20, 2010]
|
[3.2.0 - July 20, 2010]
|
||||||
|
|
||||||
* Reverted USB2 changes
|
* Reverted USB2 changes
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
#include "fceultra/driver.h"
|
#include "fceultra/driver.h"
|
||||||
|
|
||||||
#define APPNAME "FCE Ultra GX"
|
#define APPNAME "FCE Ultra GX"
|
||||||
#define APPVERSION "3.2.0"
|
#define APPVERSION "3.2.1"
|
||||||
#define APPFOLDER "fceugx"
|
#define APPFOLDER "fceugx"
|
||||||
#define PREF_FILE_NAME "settings.xml"
|
#define PREF_FILE_NAME "settings.xml"
|
||||||
|
|
||||||
|
@ -153,8 +153,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
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||||
<app version="3.2.0">
|
<app version="3.2.1">
|
||||||
<file url="http://fceugc.googlecode.com/files/FCE%20Ultra%20GX%203.2.0.zip"></file>
|
<file url="http://fceugc.googlecode.com/files/FCE%20Ultra%20GX%203.2.1.zip"></file>
|
||||||
</app>
|
</app>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user