gba/CHANGELOG.md

27 lines
1.3 KiB
Markdown
Raw Normal View History

2022-10-05 12:50:48 +11:00
# Changelog
2022-10-08 13:51:31 +11:00
* **0.9.0:** (unreleased)
2022-10-17 05:26:09 +11:00
* **MSRV:** The crate now requires `compiler_builtins-0.1.81` to build. You
will need a Nightly from 2022-10-15 or later.
2022-10-08 13:51:31 +11:00
* **Break:** Quite a bit of the video interface has been replaced, but it
should be much easier to use now.
2022-10-17 05:26:09 +11:00
* **Break:** The timer interface has been updated so that fields more closely
match the mGBA names, for ease of debugging.
2022-10-08 13:51:31 +11:00
* **0.8.0:**
2022-10-05 12:50:48 +11:00
* **Break:** Removed the macros for `GbaCell` access in favor of just methods.
I had at first thought that they'd assign registers and then inline, but it
turns out that the inline phase happens way before the register assignment
phase, so the macros were unnecessary (and clunky).
2022-10-07 10:23:20 +11:00
* **Break:** The `IrqFn` type is changed to pass the function an `IrqBits`
instead of a bare `u16`.
2022-10-05 12:50:48 +11:00
* Adds functions to pick a screenblock location (one for each screenblock
type).
* Add `BitUnPack` BIOS function.
* Add the `CGA_8X8_THICK` art data.
2022-10-07 17:27:49 +11:00
* Greatly improved documentation.
* **0.7.4:** Adds mGBA logging support.
* **0.7.3:** Fixes "multiple definition" errors with the AEABI division functions.
Filed a PR to fix this soon:
https://github.com/rust-lang/compiler-builtins/pull/495
* **0.7.2:** First version that configures docs.rs properly!