Version 1.2.3

New ASW modules
Lots of maintenance fixes
This commit is contained in:
Christian Franz
2023-02-15 09:13:52 +01:00
parent 654b782894
commit dc81decee6
28 changed files with 2804 additions and 495 deletions

View File

@@ -1,5 +1,5 @@
persistence = {}
persistence.version = "1.0.4"
persistence.version = "1.0.6"
persistence.ups = 1 -- once every 1 seconds
persistence.verbose = false
persistence.active = false
@@ -26,6 +26,7 @@ persistence.requiredLibs = {
new 'saveNotification" can be off
1.0.4 - new optional 'root' property
1.0.5 - desanitize check on readConfig to early-abort
1.0.6 - removed potential verbosity bug
PROVIDES LOAD/SAVE ABILITY TO MODULES
@@ -132,7 +133,7 @@ end
function persistence.saveText(theString, fileName, shared, append)
if not persistence.active then return false end
if not fileName then
trigger.action.outText("+++persistence: saveText without fileName")
trigger.action.outText("+++persistence: saveText without fileName", 30)
return false
end
if not shared then shared = flase end