mirror of
https://github.com/20kdc/OC-KittenOS.git
synced 2024-11-23 10:58:06 +11:00
Hopefully work out a corrected solution to the legal fun, and fix control, textedit, taskmgr, neoux, everest and glacier
taskmgr and textedit had issues with the DEL key neoux needed clipboard support that worked control... I forget glacier missed a pcall everest's launcher change support wasn't working compliance.lua was accused of being itself
This commit is contained in:
parent
380c325691
commit
de822181bc
11
README.md
11
README.md
@ -41,15 +41,18 @@ The contents of the repository/docs/licensing files represent a "full text" for
|
||||
|
||||
It is assumed that this is sufficient.
|
||||
|
||||
A user with access to a package requiring newer licensing information that does not update their licensing package is assumed to have made a willing choice.
|
||||
|
||||
If you find this assumption to be incorrect, please request the removal of the affected packages.
|
||||
A separate package is used for each license such that the user must go out of their way to not download the license.
|
||||
|
||||
The limitations of OpenComputers affect the available choices here, and having separate license copies for each package is not an available choice.
|
||||
|
||||
Nor is having a separate license package for each individual license, unless you would prefer an unbrowsable repository.
|
||||
|
||||
The contents of the repository/docs/repo-authors file contains a full list of authorship and licensing information, per-file.
|
||||
The contents of the repository/docs/repoauthors folder
|
||||
is a human-readable per-package manifest of all files and their
|
||||
licenses.
|
||||
|
||||
If you find this uncompliant with the license of a package,
|
||||
please request the removal of the affected packages.
|
||||
|
||||
## About NOTE-TO-MS.asc
|
||||
|
||||
|
@ -114,10 +114,11 @@ local advPlusH = false
|
||||
|
||||
local function advAsker(info, def, r, parent)
|
||||
info = unicode.safeTextFormat(info)
|
||||
local ww = math.max(25, unicode.len(info))
|
||||
return function ()
|
||||
return 25, 2, nil, neoux.tcwindow(25, 2, {
|
||||
return ww, 2, nil, neoux.tcwindow(ww, 2, {
|
||||
neoux.tcrawview(1, 1, {info}),
|
||||
neoux.tcfield(1, 2, 25, function (tx)
|
||||
neoux.tcfield(1, 2, ww, function (tx)
|
||||
def = tx or def
|
||||
return def
|
||||
end)
|
||||
|
@ -78,7 +78,7 @@ while true do
|
||||
end
|
||||
if n[3] == "key" then
|
||||
if n[6] then
|
||||
if n[4] == 8 or n[4] == 127 then
|
||||
if n[4] == 8 or n[5] == 211 then
|
||||
if consistentProcList[camY] then
|
||||
kill(consistentProcList[camY][1])
|
||||
end
|
||||
|
@ -339,8 +339,7 @@ local function ev_key(ka, kc, down)
|
||||
end
|
||||
end
|
||||
-- Letters
|
||||
if ka ~= 0 then
|
||||
if ka == 8 then
|
||||
if ka == 8 or kc == 211 then
|
||||
if cursorX == 1 then
|
||||
if cursorY == 1 then
|
||||
return false
|
||||
@ -357,6 +356,7 @@ local function ev_key(ka, kc, down)
|
||||
end
|
||||
return true
|
||||
end
|
||||
if ka ~= 0 then
|
||||
putLetter(unicode.char(ka))
|
||||
return true
|
||||
end
|
||||
|
@ -619,6 +619,18 @@ everestSessionProvider(function (pkg, pid, sendSig)
|
||||
end)
|
||||
-- THE EVEREST SESSION API ENDS
|
||||
|
||||
local function startLauncher()
|
||||
if not waitingShutdownCallback then
|
||||
local lApp = "app-launcher"
|
||||
if savingThrow then
|
||||
lApp = lApp or savingThrow.getSetting("sys-everest.launcher")
|
||||
end
|
||||
if lApp then
|
||||
neo.executeAsync(lApp)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
-- WM shortcuts are:
|
||||
-- Alt-Z: Switch surface
|
||||
-- Alt-Enter: Launcher
|
||||
@ -678,12 +690,8 @@ local function key(ku, ka, kc, down)
|
||||
return
|
||||
end
|
||||
if ka == 13 then
|
||||
if down and (not waitingShutdownCallback) then
|
||||
local lApp = "app-launcher"
|
||||
if savingThrow then
|
||||
lApp = savingThrow.getSetting("sys-everest.launcher") or lApp
|
||||
end
|
||||
neo.executeAsync(lApp)
|
||||
if down then
|
||||
startLauncher()
|
||||
end
|
||||
return
|
||||
end
|
||||
@ -743,7 +751,7 @@ while not shuttingDown do
|
||||
changeFocus(os)
|
||||
ns[6]("touch", lx, ly, ix, iy, s[5])
|
||||
else
|
||||
if s[5] == 1 and not waitingShutdownCallback then neo.executeAsync("app-launcher") end
|
||||
if s[5] == 1 then startLauncher() end
|
||||
end
|
||||
break
|
||||
end
|
||||
|
@ -41,6 +41,7 @@ local settings = {
|
||||
password = "",
|
||||
["pub.clipboard"] = "",
|
||||
["sys-init.shell"] = "sys-everest",
|
||||
["sys-everest.launcher"] = "app-launcher",
|
||||
["run.sys-icecap"] = "yes",
|
||||
-- scr.w/h/d/t.<uuid>
|
||||
}
|
||||
@ -343,7 +344,7 @@ end
|
||||
rescanDevs()
|
||||
|
||||
-- Save any settings made during the above (or just the language)
|
||||
saveSettings()
|
||||
pcall(saveSettings)
|
||||
-- --
|
||||
|
||||
glacierDCProvider(function (pkg, pid, sendSig)
|
||||
|
@ -8,23 +8,27 @@
|
||||
readBufSize = 2048
|
||||
|
||||
-- A function used for logging, usable by programs.
|
||||
emergencyFunction = function () end
|
||||
emergencyFunction = function (...)
|
||||
computer.pushSignal("_kosneo_syslog", "kernel", ...)
|
||||
if ocemu.log then
|
||||
pcall(ocemu.log, ...)
|
||||
end
|
||||
end
|
||||
-- Comment this out if you don't want programs to have
|
||||
-- access to ocemu's logger.
|
||||
ocemu = component.list("ocemu", true)()
|
||||
ocemu = (component.list("ocemu", true)()) or (component.list("sandbox", true)())
|
||||
if ocemu then
|
||||
ocemu = component.proxy(ocemu)
|
||||
emergencyFunction = ocemu.log
|
||||
end
|
||||
|
||||
-- It is a really bad idea to remove this.
|
||||
-- If the code inside this block even executes, then removing it is a security risk.
|
||||
if load(string.dump(function()end)) then
|
||||
-- This is your first and only warning.
|
||||
-- allowBytecode has effects *outside the game.*
|
||||
-- If it is enabled, any program with load can take over your host system.
|
||||
-- I refuse to allow KittenOS NEO to operate in this environment for your safety.
|
||||
-- If you are truly unable to change it, tell someone who can.
|
||||
emergencyFunction("Please set allowBytecode = false in OCEmu config.")
|
||||
error("Please set allowBytecode = false in OC config.")
|
||||
emergencyFunction("detected bytecode access, preventing (only remove this block if you trust every app ever on your KittenOS NEO system)")
|
||||
local oldLoad = load
|
||||
load = function (c, n, m, ...)
|
||||
return oldLoad(c, n, "t", ...)
|
||||
end
|
||||
end
|
||||
|
||||
primaryDisk = component.proxy(computer.getBootAddress())
|
||||
@ -378,15 +382,6 @@ function runProgramPolicy(ipkg, pkg, pid, ...)
|
||||
return true
|
||||
end
|
||||
|
||||
-- This is hidden here to protect you.
|
||||
-- I beg of you, don't remove it.
|
||||
if load(string.dump(function()end)) then
|
||||
local oldLoad = load
|
||||
load = function (c, n, m, ...)
|
||||
return oldLoad(c, n, "t", ...)
|
||||
end
|
||||
end
|
||||
|
||||
function retrieveAccess(perm, pkg, pid)
|
||||
-- Return the access lib and the death callback.
|
||||
|
||||
|
@ -35,7 +35,7 @@ newNeoux = function (event, neo)
|
||||
rtt = rt
|
||||
end
|
||||
end
|
||||
local tag = neo.requestAccess("x.neo.pub.base").showFileDialogAsync(forWrite)
|
||||
local tag = neo.requireAccess("x.neo.pub.base", "filedialog").showFileDialogAsync(forWrite)
|
||||
local f
|
||||
f = function (_, fd, tg, re)
|
||||
if fd == "filedialog" then
|
||||
@ -347,7 +347,14 @@ newNeoux = function (event, neo)
|
||||
selectable = true,
|
||||
key = function (window, update, a, c, d, f)
|
||||
if d then
|
||||
if a == 8 then
|
||||
if c == 63 then
|
||||
neo.requireAccess("x.neo.pub.globals", "clipboard").setSetting("clipboard", textprop())
|
||||
elseif c == 64 then
|
||||
local contents = neo.requireAccess("x.neo.pub.globals", "clipboard").getSetting("clipboard")
|
||||
contents = contents:match("^[^\r\n]*")
|
||||
textprop(contents)
|
||||
update()
|
||||
elseif a == 8 then
|
||||
local str = textprop()
|
||||
textprop(unicode.sub(str, 1, unicode.len(str) - 1))
|
||||
update()
|
||||
@ -359,6 +366,11 @@ newNeoux = function (event, neo)
|
||||
end
|
||||
end
|
||||
end,
|
||||
clipboard = function (window, update, contents)
|
||||
contents = contents:match("^[^\r\n]*")
|
||||
textprop(contents)
|
||||
update()
|
||||
end,
|
||||
line = function (window, x, y, lind, bg, fg, selected)
|
||||
local fg1 = fg
|
||||
if selected then
|
||||
|
32
compliance.lua
Normal file
32
compliance.lua
Normal file
@ -0,0 +1,32 @@
|
||||
-- KittenOS NEO Repository Compliance Check Tool
|
||||
-- I'm still not a lawyer
|
||||
local filesAccountedFor = {
|
||||
["repository/data/app-claw/local.lua"] = 0,
|
||||
["repository/inst.lua"] = 0
|
||||
}
|
||||
local f = io.popen("find repository/docs/repoauthors -type f", "r")
|
||||
while true do
|
||||
local s = f:read()
|
||||
if not s then f:close() break end
|
||||
filesAccountedFor[s] = s
|
||||
local f2 = io.open(s, "r")
|
||||
while true do
|
||||
local s2 = f2:read()
|
||||
if not s2 then
|
||||
f2:close()
|
||||
break
|
||||
end
|
||||
local st = s2:match("^[^:]+")
|
||||
if st then
|
||||
filesAccountedFor[st] = s
|
||||
end
|
||||
end
|
||||
end
|
||||
f = io.popen("find repository -type f", "r")
|
||||
while true do
|
||||
local s = f:read()
|
||||
if not s then f:close() return end
|
||||
if not filesAccountedFor[s] then
|
||||
print("File wasn't accounted for: " .. s)
|
||||
end
|
||||
end
|
@ -5,42 +5,32 @@
|
||||
-- Authors: 20kdc
|
||||
|
||||
return {
|
||||
["licensing"] = {
|
||||
desc = "Legal compliance package, dependency of everything in the repository",
|
||||
v = 0,
|
||||
deps = {
|
||||
},
|
||||
dirs = {
|
||||
"docs",
|
||||
"docs/licensing"
|
||||
},
|
||||
files = {
|
||||
"docs/repo-authors",
|
||||
"docs/licensing/Public Domain"
|
||||
},
|
||||
},
|
||||
["app-eeprog"] = {
|
||||
desc = "Example program: EEPROM programmer / copier",
|
||||
v = 0,
|
||||
deps = {
|
||||
"neo",
|
||||
"licensing"
|
||||
"zzz-license-pd"
|
||||
},
|
||||
dirs = {
|
||||
"apps"
|
||||
"apps",
|
||||
"docs",
|
||||
"docs/repoauthors"
|
||||
},
|
||||
files = {
|
||||
"apps/app-eeprog.lua"
|
||||
"apps/app-eeprog.lua",
|
||||
"docs/repoauthors/app-eeprog"
|
||||
},
|
||||
},
|
||||
["neo-docs"] = {
|
||||
desc = "KittenOS NEO system documentation",
|
||||
v = 2,
|
||||
deps = {
|
||||
"licensing"
|
||||
"zzz-license-pd"
|
||||
},
|
||||
dirs = {
|
||||
"docs"
|
||||
"docs",
|
||||
"docs/repoauthors"
|
||||
},
|
||||
files = {
|
||||
"docs/an-intro",
|
||||
@ -59,7 +49,8 @@ return {
|
||||
"docs/ul-neoux",
|
||||
"docs/ul-brail",
|
||||
"docs/ul-bmp__",
|
||||
"docs/gp-pedan"
|
||||
"docs/gp-pedan",
|
||||
"docs/repoauthors/neo-docs"
|
||||
},
|
||||
},
|
||||
["app-nbox2018"] = {
|
||||
@ -67,14 +58,17 @@ return {
|
||||
v = 0,
|
||||
deps = {
|
||||
"neo",
|
||||
"licensing"
|
||||
"zzz-license-pd"
|
||||
},
|
||||
dirs = {
|
||||
"apps"
|
||||
"apps",
|
||||
"docs",
|
||||
"docs/repoauthors"
|
||||
},
|
||||
files = {
|
||||
"apps/app-nbox2018.lua",
|
||||
"apps/app-nprt2018.lua"
|
||||
"apps/app-nprt2018.lua",
|
||||
"docs/repoauthors/app-nbox2018"
|
||||
},
|
||||
},
|
||||
["svc-ghostie"] = {
|
||||
@ -82,14 +76,32 @@ return {
|
||||
v = 0,
|
||||
deps = {
|
||||
"neo",
|
||||
"licensing"
|
||||
"zzz-license-pd"
|
||||
},
|
||||
dirs = {
|
||||
"apps"
|
||||
"apps",
|
||||
"docs",
|
||||
"docs/repoauthors"
|
||||
},
|
||||
files = {
|
||||
"apps/svc-ghostie.lua",
|
||||
"apps/app-ghostcall.lua"
|
||||
"apps/app-ghostcall.lua",
|
||||
"docs/repoauthors/svc-ghostie"
|
||||
},
|
||||
},
|
||||
-- licenses (MUST BE IMMUTABLE)
|
||||
["zzz-license-pd"] = {
|
||||
desc = "license file 'Public Domain'",
|
||||
v = 0,
|
||||
deps = {
|
||||
"zzz-license",
|
||||
},
|
||||
dirs = {
|
||||
"docs",
|
||||
"docs/licensing"
|
||||
},
|
||||
files = {
|
||||
"docs/licensing/Public Domain"
|
||||
},
|
||||
}
|
||||
}
|
||||
|
@ -374,6 +374,15 @@ h.*(...):
|
||||
Hardware signals, by type, such
|
||||
as "h.key_up"
|
||||
|
||||
h._kosneo_syslog("kernel", ...):
|
||||
System log entry. This is actually
|
||||
generated by the kernel as part of
|
||||
the emergency function processing.
|
||||
Note the "kernel" component address.
|
||||
The other parameters are the values
|
||||
given to the emergency function.
|
||||
You should tostring all of these.
|
||||
|
||||
With that, I hope I have documented
|
||||
the kernel's interface to programs.
|
||||
|
||||
|
2
repository/docs/repoauthors/app-eeprog
Normal file
2
repository/docs/repoauthors/app-eeprog
Normal file
@ -0,0 +1,2 @@
|
||||
repository/apps/app-eeprog.lua: 20kdc, Public Domain
|
||||
|
3
repository/docs/repoauthors/app-nbox2018
Normal file
3
repository/docs/repoauthors/app-nbox2018
Normal file
@ -0,0 +1,3 @@
|
||||
repository/apps/app-nbox2018.lua: 20kdc, Public Domain
|
||||
repository/apps/app-nprt2018.lua: 20kdc, Public Domain
|
||||
|
@ -1,17 +1,9 @@
|
||||
repository/apps/app-eeprog.lua: 20kdc, Public Domain
|
||||
repository/apps/app-ghostcall.lua: 20kdc, Public Domain
|
||||
repository/apps/app-nbox2018.lua: 20kdc, Public Domain
|
||||
repository/apps/app-nprt2018.lua: 20kdc, Public Domain
|
||||
repository/apps/svc-ghostie.lua: 20kdc, Public Domain
|
||||
repository/data/app-claw/local.lua: 20kdc, Public Domain
|
||||
repository/docs/licensing/Public Domain: 20kdc, Public Domain
|
||||
repository/docs/an-intro: 20kdc, Public Domain
|
||||
repository/docs/gp-pedan: 20kdc, Public Domain
|
||||
repository/docs/kn-intro: 20kdc, Public Domain
|
||||
repository/docs/kn-perms: 20kdc, Public Domain
|
||||
repository/docs/kn-refer: 20kdc, Public Domain
|
||||
repository/docs/kn-sched: 20kdc, Public Domain
|
||||
repository/docs/repo-authors: 20kdc, Public Domain
|
||||
repository/docs/ul-bmp__: 20kdc, Public Domain
|
||||
repository/docs/ul-brail: 20kdc, Public Domain
|
||||
repository/docs/ul-event: 20kdc, Public Domain
|
3
repository/docs/repoauthors/svc-ghostie
Normal file
3
repository/docs/repoauthors/svc-ghostie
Normal file
@ -0,0 +1,3 @@
|
||||
repository/apps/app-ghostcall.lua: 20kdc, Public Domain
|
||||
repository/apps/svc-ghostie.lua: 20kdc, Public Domain
|
||||
|
1
repository/docs/repoauthors/zzz-license-pd
Normal file
1
repository/docs/repoauthors/zzz-license-pd
Normal file
@ -0,0 +1 @@
|
||||
repository/docs/licensing/Public Domain: 20kdc, Public Domain
|
Loading…
Reference in New Issue
Block a user