Skip to content

Commit

Permalink
[META] Prepare for R46 (#192)
Browse files Browse the repository at this point in the history
  • Loading branch information
mooinglemur authored Nov 6, 2023
1 parent 9a1c29d commit bf28f8d
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 3 deletions.
16 changes: 16 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,22 @@

## Releases

### Release 46 ("Winnipeg")

This is mainly a bugfix release.

* Features/Fixes
* A change in the ROM caused controllers to have their buttons offset due to how the emulated VIA responds to polling. The issue was fixed in the ROM and while it was not technically an emulator bug and no changes were made to the emulator's joystick routines, it gets a mention here.
* HostFS: UNLSN was incorrectly setting the KERNAL status byte based on whether a file existed upon open. It has been changed to behave like CMDR-DOS. (discovered by [voidstar78])
* HostFS: Opening a file in Modify mode now properly creates file if it doesn't yet exist (discovered by [m00dawg])
* Audio: prevent `-sound none` from trying to use the uninitialized ymfm YM2151 library. The YM status register was also modified to always return 0 in this case. (discovered by [jestin])
* WebAssembly: improve handling of zip files without `manifest.json` [Cyber-Ex]
* GUI: If emulator launches in a window with the titlebar offscreen, move the window so that it is visible. (with help from [irmen])
* GUI: Mouse movement now uses relative motion in capture mode, which makes the position of the host mouse irrelevant while in capture mode.
* GUI: new `-capture` command line option to start emulator with mouse captured
* Testbench: miscellaneous fixes [irmen]
* More changes in the [ROM](https://github.com/X16Community/x16-rom/tree/r46#release-46-winnipeg).

### Release 45 ("Nuuk")

This is a minor release with respect to the emulator. The bulk of the changes are in the [ROM](https://github.com/X16Community/x16-rom/tree/r45#release-45-nuuk).
Expand Down
6 changes: 3 additions & 3 deletions src/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
// Copyright (c) 2019, 2023 Michael Steil, et al
// All rights reserved. License: 2-clause BSD

#define VER "45"
#define VER_NAME "Nuuk"
#define VER_INFO "### Release 45 (\"Nuuk\")"
#define VER "46"
#define VER_NAME "Winnipeg"
#define VER_INFO "### Release 46 (\"Winnipeg\")"

0 comments on commit bf28f8d

Please sign in to comment.