From d08b04a966a109c9275391eb4715eaad169cd904 Mon Sep 17 00:00:00 2001 From: zontreck Date: Sat, 5 Oct 2024 12:03:00 -0700 Subject: [PATCH] feat(dialogs): add a dialog script Signed-off-by: zontreck --- CHANGELOG.md | 6 ++++++ src/includes/Variables.lsl | 20 +++++++++++++++++++- src/preproc/NuDialogs [AC].lsl | 12 ++++++++++++ 3 files changed, 37 insertions(+), 1 deletion(-) create mode 100644 src/preproc/NuDialogs [AC].lsl diff --git a/CHANGELOG.md b/CHANGELOG.md index 8ea097b..ca013f0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## Unreleased + +### Refactor + +- **updater**: remove reference to compileVersion + ## 0.4.0 (2024-10-05) ### Feat diff --git a/src/includes/Variables.lsl b/src/includes/Variables.lsl index a05d643..2babd86 100644 --- a/src/includes/Variables.lsl +++ b/src/includes/Variables.lsl @@ -60,4 +60,22 @@ string RC = "rc"; string BETA = "b"; -string SESSION_UPDATE = "A"; \ No newline at end of file +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 = "-->"; \ No newline at end of file diff --git a/src/preproc/NuDialogs [AC].lsl b/src/preproc/NuDialogs [AC].lsl new file mode 100644 index 0000000..3c28fb9 --- /dev/null +++ b/src/preproc/NuDialogs [AC].lsl @@ -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" \ No newline at end of file