Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
niuus committed Dec 26, 2022
1 parent 5c5cacf commit 4bf9ecc
Show file tree
Hide file tree
Showing 5 changed files with 43 additions and 22 deletions.
47 changes: 33 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,23 +48,24 @@ Wii homebrew is WiiBrew (www.wiibrew.org).

## RECENT CHANGELOG

[5.4.0 - October 15, 2022]
* Map YXBA to Right Stick (thanks InfiniteBlueGX!)
Right stick can now be configured as YXBA, like what the Xbox 360 wired
controller is configured by default with this emulator, specially useful
for shooters like Smash TV and Total Carnage.
[5.5.0 - December 25, 2022]
* Add B/1 cancel trigger to WindowPrompts. [InfiniteBlueGX]

* Add option to choose the Emulator Menu toggle [InfiniteBlueGX]
Choose between "Default (All Enabled)", "Home / C-Stick Left", or
the universal button combo "Start+B+A / Start+1+2".
* Fix initial game selection menu "jump" when using Wii Classic Controller
or Wii U Pro Classic Controller. [InfiniteBlueGX]

* UI navigation improvements. [InfiniteBlueGX]
Pressing B / 1 will now Go Back from all menus and some sub-menus.
* Fix a crash when selecting Cancel after removing a SD/USB device and
re-opening the app. [InfiniteBlueGX]

* Satellaview BIOS ON-OFF (thanks Tanooki16!)
In RX, it was changed and adapted to be intuitive and easy to use.
Enable or disable BS-X Satellaview BIOS boot through:
"Settings -> Menu" or "Game Settings -> Emulator Hacks".
* Add B/1 button press to cancel button remapping. [InfiniteBlueGX]

* Remove an unused variable since screenshot button
was moved. [InfiniteBlueGX]

* Upgraded the Cheat engine to newer version. [InfiniteBlueGX]
Previous one still works.

* Languages update: korean, spanish.

[older update history at the bottom]

Expand Down Expand Up @@ -779,6 +780,24 @@ Settings menu at the emulator's Main Menu / Game browser.

## UPDATE HISTORY

[5.4.0 - October 15, 2022]
* Map YXBA to Right Stick (thanks InfiniteBlueGX!)
Right stick can now be configured as YXBA, like what the Xbox 360 wired
controller is configured by default with this emulator, specially useful
for shooters like Smash TV and Total Carnage.

* Add option to choose the Emulator Menu toggle [InfiniteBlueGX]
Choose between "Default (All Enabled)", "Home / C-Stick Left", or
the universal button combo "Start+B+A / Start+1+2".

* UI navigation improvements. [InfiniteBlueGX]
Pressing B / 1 will now Go Back from all menus and some sub-menus.

* Satellaview BIOS ON-OFF (thanks Tanooki16!)
In RX, it was changed and adapted to be intuitive and easy to use.
Enable or disable BS-X Satellaview BIOS boot through:
"Settings -> Menu" or "Game Settings -> Emulator Hacks".

[5.3.0 - September 28, 2022]
* Upgraded Satellaview (BS-X) engine to latest Snes9x to date.
This furthers up the game compatibility, by making use of the Satellaview
Expand Down
13 changes: 7 additions & 6 deletions hbc/meta.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,28 +2,29 @@
<app version="2">
<name>Snes9x RX</name>
<coder>NiuuS</coder>
<version>5.4.0</version>
<release_date>20221015195222</release_date>
<version>5.5.0</version>
<release_date>20221225155222</release_date>
<short_description>Super Nintendo Emulator</short_description>
<long_description>

Featuring:
- MSU-1 audio enhancement chip support.
- Classic Controllers support (NES / SNES).
- Classic Controllers support (NES / SNES)
- Mayflash 2-port SNES USB adapter.
- Experimental DualShock 3 (wired) support.
- Wii U Pro Controller support.
- Wii U Gamepad controller support through VC injects.
- Retrode 2 USB adapter support.
- Broadcast Satellaview-X support (BIOS optional).
- Expanded 3rd party Classic Controller support.
- Broadcast Satellaview-X support (BIOS optional)
- Turbo Mode/Fast-Forward button feature.
- Screenshot / Cover / Artwork display.
Cycle between them with the +/Z button!

- Video filters: Sharp / Soft / HQ2X / Scale2x / Scanlines
- Audio filters: Gaussian / Linear / Cubic / Sinc
- SNES CPU overclock. (Low/Medium/Max)
- Super FX overclock (20/40/60/80/100/120 MHz).
- SNES CPU overclock (Low/Medium/Max)
- Super FX overclock (20/40/60/80/100/120 MHz)
- Wiiflow plugin mode.
</long_description>
<ahb_access/>
Expand Down
2 changes: 1 addition & 1 deletion source/gui/gui_optionbrowser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ GuiOptionBrowser::GuiOptionBrowser(int w, int h, OptionList * l)
optionTxt[i] = new GuiText(NULL, 20, (GXColor){0, 0, 0, 0xff});
optionTxt[i]->SetAlignment(ALIGN_LEFT, ALIGN_MIDDLE);
optionTxt[i]->SetPosition(8,0);
optionTxt[i]->SetMaxWidth(235);
optionTxt[i]->SetMaxWidth(370);

optionVal[i] = new GuiText(NULL, 20, (GXColor){0, 0, 0, 0xff});
optionVal[i]->SetAlignment(ALIGN_LEFT, ALIGN_MIDDLE);
Expand Down
1 change: 1 addition & 0 deletions source/menu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2447,6 +2447,7 @@ static int MenuGameCheats()
GuiOptionBrowser optionBrowser(552, 248, &options);
optionBrowser.SetPosition(0, 108);
optionBrowser.SetAlignment(ALIGN_CENTRE, ALIGN_TOP);
optionBrowser.SetCol2Position(380);

HaltGui();
GuiWindow w(screenwidth, screenheight);
Expand Down
2 changes: 1 addition & 1 deletion source/snes9xrx.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
#include "filelist.h"

#define APPNAME "Snes9x RX"
#define APPVERSION "5.4.0"
#define APPVERSION "5.5.0"
#define APPFOLDER "Snes9xRX"
#define PREF_FILE_NAME "settingsRX.xml"

Expand Down

0 comments on commit 4bf9ecc

Please sign in to comment.