finalize 2.0.8

This commit is contained in:
dborth 2009-10-07 07:28:03 +00:00
parent c8f6ee1d87
commit 46efa8c104
6 changed files with 23 additions and 5 deletions

BIN
hbc/icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

9
hbc/meta.xml Normal file
View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<app version="1">
<name>Visual Boy Advance GX</name>
<coder>Tantric</coder>
<version>2.0.8</version>
<release_date>20091007</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>

View File

@ -1,7 +1,7 @@
¸,ø¤°`°¤ø,¸¸,ø¤°`°¤ø,¸,ø¤°`°¤ø,¸¸,ø¤°`°¤ø,¸,ø¤°`°¤ø,¸¸,ø¤°`°¤ø,¸,ø¤°`°¤ø,¸¸,ø¤
- Visual Boy Advance GX -
Version 2.0.7
Version 2.0.8
http://code.google.com/p/vba-wii
(Under GPL License)
@ -28,6 +28,14 @@ With it you can play GBA/Game Boy Color/Game Boy games on your Wii/GameCube.
|0O×øo· UPDATE HISTORY ·oø×O0|
`¨•¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨'
[2.0.8 - October 7, 2009]
* Revamped filebrowser and file I/O
* Fixed MBC2 saving/loading
* Fixed some GB-Z80 instructions
* DVD loading in GameCube should work now (untested and unsupported)
* Many, many other bug fixes
[2.0.7 - September 16, 2009]
* Text rendering corrections

View File

@ -446,7 +446,8 @@ decodePrefsData ()
result = false;
else if(verMajor < 2) // less than version 2.0.0
result = false; // reset settings (sorry, should update settings instead)
else if(verMajor > curMajor || verMinor > curMinor || verPoint > curPoint) // some future version
else if((verMajor*100 + verMinor*10 + verPoint) >
(curMajor*100 + curMinor*10 + curPoint)) // some future version
result = false; // reset settings
else
result = true;

View File

@ -16,7 +16,7 @@
#include "filelist.h"
#define APPNAME "Visual Boy Advance GX"
#define APPVERSION "2.0.7"
#define APPVERSION "2.0.8"
#define APPFOLDER "vbagx"
#define PREF_FILE_NAME "settings.xml"
#define PAL_FILE_NAME "palettes.xml"

View File

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<app version="2.0.7">
<file url="http://vba-wii.googlecode.com/files/Visual%20Boy%20Advance%20GX%202.0.7%20-%20Wii.zip"></file>
<app version="2.0.8">
<file url="http://vba-wii.googlecode.com/files/Visual%20Boy%20Advance%20GX%202.0.8%20-%20Wii.zip"></file>
</app>