Releases: hypergonial/hikari-miru
Releases · hypergonial/hikari-miru
Release list
v3.1.3
- Fix
miru.ext.nav.NavigatorView.on_timeoutto properly edit provided initial interactions on timeout. - Fix
miru.InteractionResponsefrom always deleting the initial response.
v3.1.2
- Update
miru.View.messagein bound views when receiveing an interaction. - Fix
IndexErrorbeing raised when trying to add pages to amiru.ext.nav.utils.Paginator. - Fix
miru.ext.nav.NavItemmissingwidthfrom it's__init__.
v3.1.1
- Fix
miru.Item.position's setter being called beforewidthis set.
v3.1.0
- Added
miru.Button.positionattribute, setting it will determine the ordering of buttons within a row. - Remove deprecated functions
miru.load()andmiru.unload(), please usemiru.install()andmiru.uninstall()instead. - Fixed multiple embed support for navigators.
v3.0.3
- Update to hikari v.2.0.0.dev118 - This should fix issues related to the new component builder interface hikari implemented.
v3.0.2
- Fixed new select variants throwing errors if no options were selected.
- Fixed an issue with new select variant values not being subscriptable.
v3.0.1
- Fixed not being able to instantiate items that derive from
miru.ext.nav.NavItem.
v3.0.0 - Select V2
- BREAKING:
miru.Selecthas been renamed tomiru.TextSelectalong with the decoratormiru.selecttomiru.text_select. - BREAKING:
miru.ext.nav.NavSelecthas been renamed tomiru.NavTextSelect. - Added
miru.UserSelect,miru.RoleSelect,miru.ChannelSelect,miru.MentionableSelectalong with their respective decorators. - Added
Navvariants of all new selects tomiru.ext.nav. - Added
miru.ext.nav.NavigatorView.swap_pages()to allow mutating the pages of a navigator after instantiation. - Added initial framework and CI for unit testing in the library.
- Improved the validation of item properties.
- Added note about
miru.loadandmiru.unloadbeing removed in 3.1.0 to deprecation warning. - Fixed
TextInput.min_lengthandTextInput.max_lengthnot being able to be set toNone. - Minor documentation and other fixes.
v2.0.4
- Fix setter of
TextInput.valueincorrectly rejecting strings of proper length.
v2.0.3
- Add
View.message_id. - Make usage of
__all__consistent across the library. - Minor documentation fixes.