feat(dialogs): add a dialog script

Signed-off-by: zontreck <tarapiccari@gmail.com>
This commit is contained in:
zontreck 2024-10-05 12:03:00 -07:00
parent f5ed876244
commit d08b04a966
3 changed files with 37 additions and 1 deletions

View file

@ -1,3 +1,9 @@
## Unreleased
### Refactor
- **updater**: remove reference to compileVersion
## 0.4.0 (2024-10-05)
### Feat

View file

@ -61,3 +61,21 @@ string BETA = "b";
string SESSION_UPDATE = "A";
integer LINK_SIGNAL_GEN_CHANNEL = 0601241;
integer LINK_SIGNAL_CHANNEL_BACK = 0601242;
integer LINK_SIGNAL_SHOW_MENU = 0601243;
integer LINK_SIGNAL_MENU_TIMEOUT = 0601244;
integer LINK_SIGNAL_REREGISTER_MENUS= 0601245;
integer LINK_SIGNAL_QUERY_MENU = 0602241;
integer LINK_SIGNAL_REGISTER_MENU = 0602242;
integer LINK_SIGNAL_RESET = 0602243;
integer LINK_SIGNAL_MENU_DATA = 0602244;
integer LINK_SIGNAL_MENU_BACK = 0801241;
integer LINK_SIGNAL_REPLACE_BUTTON = 0804241;
string PREVIOUS_MENU = "<--";
string EXIT_MENU = "-exit-";
string NEXT_MENU = "-->";

View file

@ -0,0 +1,12 @@
/*
This file is a part of NuSystem (https://git.zontreck.com/AriasCreations/NuSystem)
NuSystem is licensed under the GPL.
Please see the Git Source Tree for structured information on changes to indivudual files
Initial Author: Aria (aria@zontreck.com)
*/
#include "../external/Dialogs/Next Engine.lsl"