Skip to content

Commit

Permalink
finalize 2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dborth committed Jul 22, 2010
1 parent 1391011 commit 7d4300b
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 7 deletions.
4 changes: 2 additions & 2 deletions hbc/meta.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<app version="1">
<name>Visual Boy Advance GX</name>
<coder>Tantric</coder>
<version>2.1.9</version>
<release_date>20100720</release_date>
<version>2.2.0</version>
<release_date>20100722</release_date>
<short_description>GBA/GBC/GB Emulator</short_description>
<long_description>A port of Visual Boy Advance - M to the Wii.</long_description>
</app>
5 changes: 4 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
�,���`���,��,���`���,�,���`���,��,���`���,�,���`���,��,���`���,�,���`���,��,��

- Visual Boy Advance GX -
Version 2.1.9
http://code.google.com/p/vba-wii
(Under GPL License)

Expand All @@ -28,6 +27,10 @@ With it you can play GBA/Game Boy Color/Game Boy games on your Wii/GameCube.
|0O��o� UPDATE HISTORY �o��O0|
`������� ���������������� ��������������� �������������������� �������������'

[2.2.0 - July 22, 2010]

* Fixed broken auto-update

[2.1.9 - July 20, 2010]

* Reverted USB2 changes
Expand Down
8 changes: 7 additions & 1 deletion source/networkop.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -152,8 +152,14 @@ bool DownloadUpdate()
if (hfile)
{
if(http_request(updateURL, hfile, NULL, (1024*1024*10), NOTSILENT) > 0)
{
fclose (hfile);
result = unzipArchive(updateFile, (char *)pathPrefix[device]);
fclose (hfile);
}
else
{
fclose (hfile);
}
remove(updateFile); // delete update file
}

Expand Down
2 changes: 1 addition & 1 deletion source/vbagx.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#include "utils/FreeTypeGX.h"

#define APPNAME "Visual Boy Advance GX"
#define APPVERSION "2.1.9"
#define APPVERSION "2.2.0"
#define APPFOLDER "vbagx"
#define PREF_FILE_NAME "settings.xml"
#define PAL_FILE_NAME "palettes.xml"
Expand Down
4 changes: 2 additions & 2 deletions update.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<app version="2.1.9">
<file url="http://vba-wii.googlecode.com/files/Visual%20Boy%20Advance%20GX%202.1.9.zip"></file>
<app version="2.2.0">
<file url="http://vba-wii.googlecode.com/files/Visual%20Boy%20Advance%20GX%202.2.0.zip"></file>
</app>

0 comments on commit 7d4300b

Please sign in to comment.