Start to fix and update boards
This commit is contained in:
parent
ee658115ee
commit
b6a59a6673
6 changed files with 14 additions and 2 deletions
3
.gitmodules
vendored
3
.gitmodules
vendored
|
@ -7,3 +7,6 @@
|
||||||
[submodule "LSL/external/CommonLSL"]
|
[submodule "LSL/external/CommonLSL"]
|
||||||
path = LSL/external/CommonLSL
|
path = LSL/external/CommonLSL
|
||||||
url = ssh://git@git.zontreck.com:1212/AriasCreations/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
1
LSL/external/AriasCreations
vendored
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit b540eb7b9ef90977dba23e91065504cf790ccfb7
|
|
@ -67,7 +67,7 @@ Text(){
|
||||||
|
|
||||||
CleanInventory()
|
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 i=0;
|
||||||
integer end = llGetInventoryNumber(INVENTORY_ALL);
|
integer end = llGetInventoryNumber(INVENTORY_ALL);
|
||||||
for(i=0;i<end;i++){
|
for(i=0;i<end;i++){
|
||||||
|
|
|
@ -78,6 +78,10 @@ default
|
||||||
#endif
|
#endif
|
||||||
//llSetTimerEvent(1);
|
//llSetTimerEvent(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(n == 0x004f) {
|
||||||
|
API_SERVER = DecipherService(m,"api");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
timer()
|
timer()
|
||||||
|
@ -486,6 +490,8 @@ state boot{
|
||||||
|
|
||||||
g_iNotification = iNotification;
|
g_iNotification = iNotification;
|
||||||
llSetTimerEvent(5);
|
llSetTimerEvent(5);
|
||||||
|
} else if(n == 0x004f) {
|
||||||
|
API_SERVER = DecipherService(m,"api");
|
||||||
} else if(n == 0x3E)
|
} else if(n == 0x3E)
|
||||||
{
|
{
|
||||||
if(llJsonGetValue(m,["op"]) == "reset")
|
if(llJsonGetValue(m,["op"]) == "reset")
|
||||||
|
|
|
@ -23,7 +23,8 @@ default
|
||||||
|
|
||||||
RestoreFromKVP();
|
RestoreFromKVP();
|
||||||
MainMenu(i);
|
MainMenu(i);
|
||||||
|
}else if(n == 0x004f) {
|
||||||
|
API_SERVER = DecipherService(m,"api");
|
||||||
} else if(n == 0x1D)
|
} else if(n == 0x1D)
|
||||||
{
|
{
|
||||||
g_lSupport = llJson2List(m);
|
g_lSupport = llJson2List(m);
|
||||||
|
|
1
LSL/src/Service Daemon [AC].lsl
Normal file
1
LSL/src/Service Daemon [AC].lsl
Normal file
|
@ -0,0 +1 @@
|
||||||
|
#include "../external/AriasCreations/ServiceDaemon.lsl"
|
Loading…
Add table
Add a link
Reference in a new issue