Releases: Nickk888SAMP/Dialog-Pages
Releases · Nickk888SAMP/Dialog-Pages
3.3.0
What's Changed
- pawn.json improvement by @ohmypxl in #10
- pawn-vector support by @wiger3 in #11
- fix vector + NDP_USE_LOGGER by @wiger3 in #12
- Add y_inline support by @Tiaansu in #13
New Contributors
- @ohmypxl made their first contribution in #10
- @wiger3 made their first contribution in #11
- @Tiaansu made their first contribution in #13
Full Changelog: 3.2.0...3.3.0
3.2.0
- Add inputtext to callback's arguments, fixes #7.
- Reset dialog's name properly with null character.
- Function name can be at most 31 characters long, compiler will warn about this so no need for extra validations.
Users who uses the older versions will need to update their code from:
DialogPages:MyDialog(playerid, response, listitem)
{
// code
}
to
DialogPages:MyDialog(playerid, response, listitem, inputtext[])
{
// code
}
Thanks to @ZantetsukenGT to make this update possible.
3.1.0
- Fixed #4 and #5 by removing the Legacy/Deprecated wrapper function ShowPlayerDialog
- Updated the Example Script
3.0.0
- Added new function
ShowPlayerDialogPages
- Added new definition
NDP_AUTO_REMOVE_NEW_LINE
- Added new definiton
DialogPages:
- Fixed a runtime error when selecting a non existing listitem.
- Better code writing and some minor bug fixes.
2.5.0
- A bug fix with the page items calculation.
- Better code writing.
- Support for "logger" to make debugging easier.
- Supporting YSI's "VA" library.