Start to fix and update boards

This commit is contained in:
zontreck 2024-08-13 21:55:45 -07:00
parent ee658115ee
commit b6a59a6673
6 changed files with 14 additions and 2 deletions

3
.gitmodules vendored
View file

@ -7,3 +7,6 @@
[submodule "LSL/external/CommonLSL"]
path = LSL/external/CommonLSL
url = ssh://git@git.zontreck.com:1212/AriasCreations/CommonLSL
[submodule "LSL/external/AriasCreations"]
path = LSL/external/AriasCreations
url = git@github.com:AriasCreations/AriasCreations

1
LSL/external/AriasCreations vendored Submodule

@ -0,0 +1 @@
Subproject commit b540eb7b9ef90977dba23e91065504cf790ccfb7

View file

@ -67,7 +67,7 @@ Text(){
CleanInventory()
{
list lDefaults = ["Board [AC]", "Board Menu [AC]", "Dialog Module [AC]", "Text", "Stall Board Flash Drive [AC]", "Board Notifier [AC]"];
list lDefaults = ["Board [AC]", "Board Menu [AC]", "Dialog Module [AC]", "Text", "Stall Board Flash Drive [AC]", "Board Notifier [AC]", "Service Daemon [AC]"];
integer i=0;
integer end = llGetInventoryNumber(INVENTORY_ALL);
for(i=0;i<end;i++){

View file

@ -78,6 +78,10 @@ default
#endif
//llSetTimerEvent(1);
}
if(n == 0x004f) {
API_SERVER = DecipherService(m,"api");
}
}
timer()
@ -486,6 +490,8 @@ state boot{
g_iNotification = iNotification;
llSetTimerEvent(5);
} else if(n == 0x004f) {
API_SERVER = DecipherService(m,"api");
} else if(n == 0x3E)
{
if(llJsonGetValue(m,["op"]) == "reset")

View file

@ -23,7 +23,8 @@ default
RestoreFromKVP();
MainMenu(i);
}else if(n == 0x004f) {
API_SERVER = DecipherService(m,"api");
} else if(n == 0x1D)
{
g_lSupport = llJson2List(m);

View file

@ -0,0 +1 @@
#include "../external/AriasCreations/ServiceDaemon.lsl"