Update ChangeLog and bump version

This commit is contained in:
rdanbrook 2022-12-29 08:22:27 -06:00
parent fc0901e88e
commit d897bfdc04
4 changed files with 35 additions and 5 deletions

View file

@ -1,3 +1,33 @@
----------------------------------------------------------------
1.52.0
----------------------------------------------------------------
Shell:
Changes:
- FLTK: Update to latest lodepng
- FLTK: Use NST prefix for data directories in build (cpasjuste)
Fixes:
- FLTK: Better frame timing on non-60Hz screens
- win32: Fix minor code problems (mjunix)
Core:
Additions:
- Add support for Unlicensed MMC3 boards with PRG ROM over 512K
- Add support for Mapper 258 (UNL-158B)
- Add support for Mapper 400 (UNL-RET-X7-GBL)
Changes:
- Remove options for 8-bit audio and sample rates below 44100Hz
- Improve heuristics for VRC2/4 boards
Fixes:
- Fix IPS patching in cases where patches overlap ROM region boundaries
- Improve handling of fast sequential reads to 0x2007
- Improve opcode 9c and 9e timing
- Correct implementation of PPU Open Bus
----------------------------------------------------------------
1.51.1
----------------------------------------------------------------

View file

@ -2,7 +2,7 @@ dnl Initialise Autoconf
AC_PREREQ([2.69])
AC_INIT(
[nestopia],
[1.51.1])
[1.52.0])
AC_CONFIG_SRCDIR([source])
AC_LANG([C++])

View file

@ -55,7 +55,7 @@ void cli_show_usage() {
}
void cli_show_version() {
printf("Nestopia UE 1.51.1\n");
printf("Nestopia UE 1.52.0\n");
}
void cli_handle_command(int argc, char *argv[]) {

View file

@ -321,14 +321,14 @@ static void fltkui_about(Fl_Widget* w, void* userdata) {
Fl_Box text0(0, 144, 460, 24, "Nestopia UE");
text0.labelfont(FL_BOLD);
Fl_Box text1(0, 166, 460, 24, "1.51.1");
Fl_Box text1(0, 166, 460, 24, "1.52.0");
Fl_Box text2(0, 208, 460, 24, "Cycle-Accurate Nintendo Entertainment System Emulator");
Fl_Box text3(0, 256, 460, 24, "FLTK Frontend\n(c) 2012-2021, R. Danbrook\n(c) 2007-2008, R. Belmont");
Fl_Box text3(0, 256, 460, 24, "FLTK Frontend\n(c) 2012-2022, R. Danbrook\n(c) 2007-2008, R. Belmont");
text3.labelsize(10);
Fl_Box text4(0, 320, 460, 24, "Nestopia Emulator\n(c) 2020-2021, Rupert Carmichael\n(c) 2012-2020, Nestopia UE Contributors\n(c) 2003-2008, Martin Freij");
Fl_Box text4(0, 320, 460, 24, "Nestopia Emulator\n(c) 2020-2022, Rupert Carmichael\n(c) 2012-2020, Nestopia UE Contributors\n(c) 2003-2008, Martin Freij");
text4.labelsize(10);
Fl_Box text5(0, 360, 460, 24, "Icon based on drawing by Trollekop");