Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- os.loadAPI("uap")
- os.loadAPI("/lg/lg")
- os.loadAPI("json")
- lg.setup("term")
- lg.clearScreen()
- lg.fillScreen(colors.yellow)
- lg.fill(1,lg.getSize().x,3,3,colors.white)
- lg.drawText(2,3,colors.black,colors.white,"Updates:")
- str = nil
- obj = nil
- str = http.get("https://raw.githubusercontent.com/Timasbro/creatopico_os/main/apps.json").readAll()
- obj = json.decode(str)
- local object = json.decodeFromFile("/apps.json")
- local offset = 5
- for key,value in pairs( obj ) do
- for key2,value2 in pairs( object ) do
- if (key == key2) then
- if (value ~= value2 and key ~= "iggnore") then
- lg.drawBT(key,2,string.len(key.." -> "..value)+1,offset,offset,colors.white,colors.orange,key.." -> "..value)
- offset = offset + 2
- obj[key] = nil
- else
- obj[key] = nil
- end
- end
- end
- end
- for key,value in pairs( obj ) do
- if (key ~= "iggnore") then
- lg.drawBT(key,2,string.len(value)+1,offset,offset,colors.white,colors.orange,key.." -> INSTALL")
- offset = offset + 2
- end
- end
- uap.upd()
- while true do
- local event, button, x, y = os.pullEvent( "mouse_click" )
- if (lg.isButton(x,y) ~= false) then
- str = nil
- obj = nil
- str = http.get("https://raw.githubusercontent.com/Timasbro/creatopico_os/main/pastebins.json").readAll()
- obj = json.decode(str)
- for key,value in pairs( obj ) do
- if (key == lg.isButton(x,y)) then
- shell.run("delete",key)
- shell.run("pastebin","get",value,"/"..key.."/"..key)
- str2 = http.get("https://raw.githubusercontent.com/Timasbro/creatopico_os/main/apps.json").readAll()
- obj2 = json.decode(str2)
- local object = json.decodeFromFile("/apps.json")
- local name = lg.isButton(x,y)
- local ver = "latest"
- for key,value in pairs( obj2 ) do
- if (key == name) then
- ver = value
- end
- end
- object[name] = ver
- prettystring = json.encodePretty(object)
- local file = fs.open("apps.json","w")
- file.write(prettystring)
- file.close()
- os.reboot()
- end
- end
- else
- end
- end
- term.setCursorPos(1,lg.getSize().y)
- lg.exit()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement