Changelog¶
This page contains the full changelog for all ndspy versions. All old versions can be downloaded from the Releases page on GitHub.
4.1.0 (July 28, 2023)¶
- Replaced the crcmod dependency with a pure-Python CRC16 implementation in ndspy itself.
- Fixed a bug in the undocumented
ndspy.graphics2Dmodule. - A few documentation improvements.
4.0.0 (Mar. 15, 2022)¶
- Many bugfixes. Thank you to everyone who reported bugs!
- The
ndspy.codeCompressionandndspy.lz10now have CLIs. They also gained convenience functions for compressing and decompressing to/from files rather thanbytesobjects. ndspy.bmg.BMGnow calls encoding value 1'cp1252'rather than'latin-1'; the latter was just a guess on my part. It also gained a new read-only attributendspy.bmg.BMG.fullEncodingthat is useful for manually decoding BMG strings, in case you need to do that for some reason.ndspy.rom.NintendoDSRom.iconBannernow supports all versions of icon/banner data, not just the first version. TheICON_BANNER_LENconstant has been removed, since it is not actually meaningful (different versions have different lengths).ndspy.Processoris now anenum.IntEnum, rather than just anenum.Enum.- Assertions now have messages indicating what went wrong.
- The
ndspyandndspy.bmgmodules now have unit tests. - Changes pertaining to undocumented modules:
ndspy.color’s API has been redesigned. However, this may be reverted or redesigned again before the module is stabilized.- Almost all
ndspy.texture.TextureFormatenum members were renamed. ndspy.graphics2Dgot further API improvements.ndspy.extras.musicnow automatically parses unparsed SSEQs.
3.0.0 (Feb. 10, 2019)¶
- Completely redesigned
ndspy.narc’s API in order to add compatibility with New Super Mario Bros. This is a very backwards-incompatible change, and any code using the module definitely needs to be updated. - Medium-sized changes to
ndspy.bmg’s API in order to add compatibility with… pretty much every game except The Legend of Zelda: Phantom Hourglass and The Legend of Zelda: Spirit Tracks. This is a pretty important change, of course, but it’s also backwards-incompatible. Depending on what parts of the module your code uses, though, your code might still run correctly without any changes. - Converted the names of
ndspy.soundSequence.MonoPolySequenceEvent.Valueandndspy.soundSequence.VibratoTypeSequenceEvent.Valuemembers to upper-case, since that’s the recommended style for enum members now. This is backward-incompatible, but only if your code uses these enums. - Added the first two tutorials to the documentation, and added example code for certain modules.
- Reorganized the folder structure of the documentation. This makes most previous documentation links invalid, unfortunately, but the reorganization was done with an eye toward avoiding this having to happen again in the future.
- Changes pertaining to undocumented modules:
ndspy.bnblandndspy.bnclwere addedndspy.graphics2Dgot some API improvements- Swapped the interpretation of alpha values in
ndspy.color - Added the ability to render textures with
ndspy.texture
2.0.0 (Jan. 23, 2019)¶
- Updated the
ndspy.soundBankAPI to reflect the new discovery that note definition type values are defined for all instrument types, not just single-note instruments. (Thanks, Gota7!) This is a backwards-incompatible change, hence the major version number bump. - Fixed some bugs in
ndspy.soundBankandndspy.soundSequencethat caused crashes in some situations. If your code didn’t crash on 1.0.x, this doesn’t affect you. - Added
ndspy.VERSION. - Added this changelog page to the documentation.
1.0.1 (Jan. 18, 2019)¶
Fixed an issue that caused pip to erroneously attempt to install on unsupported versions of Python, instead of giving the correct error message.
1.0.0 (Jan. 18, 2019)¶
First release! The API has changed a lot in the weeks prior to this release, so if you find yourself in possession of any code written for pre-1.0.0 ndspy, you’ll probably need to make adjustments.
Note
This release had to be removed from PyPI due to a bug fixed in 1.0.1. If you really must have it for some reason, you can find it on GitHub.