Advertisement
Guest User

upd

a guest
Oct 15th, 2023
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.89 KB | None | 0 0
  1. os.loadAPI("uap")
  2. os.loadAPI("lg")
  3. os.loadAPI("json")
  4. lg.setup("term")
  5. lg.clearScreen()
  6. lg.fillScreen(colors.yellow)
  7. lg.fill(1,lg.getSize().x,3,3,colors.white)
  8. lg.drawText(2,3,colors.black,colors.white,"Updates:")
  9. str = nil
  10. obj = nil
  11. str = http.get("https://raw.githubusercontent.com/Timasbro/creatopico_os/main/apps.json").readAll()
  12. obj = json.decode(str)
  13. local object = json.decodeFromFile("/apps.json")
  14. local offset = 5
  15. for key,value in pairs( obj ) do
  16.    for key2,value2 in pairs( object ) do
  17.        if (key == key2) then
  18.          if (value ~= value2) then
  19.            lg.drawBT(key,2,string.len(value)+1,offset,offset,colors.white,colors.orange,key.." -> "..value)
  20.            offset = offset + 2
  21.          else
  22.          end
  23.        end
  24.    end
  25. end
  26. uap.upd()
  27. while true do
  28.   local event, button, x, y = os.pullEvent( "mouse_click" )
  29.   if (lg.isButton(x,y) ~= false) then
  30.     str = nil
  31.     obj = nil
  32.     str = http.get("https://raw.githubusercontent.com/Timasbro/creatopico_os/main/pastebins.json").readAll()
  33.     obj = json.decode(str)
  34.     for key,value in pairs( obj ) do
  35.       if (key == lg.isButton(x,y)) then
  36.         shell.run("delete",key)
  37.         shell.run("pastebin","get",value,"/"..key.."/"..key)
  38.         str2 = http.get("https://raw.githubusercontent.com/Timasbro/creatopico_os/main/apps.json").readAll()
  39.         obj2 = json.decode(str2)
  40.         local object = json.decodeFromFile("/apps.json")
  41.         local name = lg.isButton(x,y)
  42.         local ver = "latest"
  43.         for key,value in pairs( obj2 ) do
  44.           if (key == name) then
  45.             ver = value
  46.           end
  47.         end
  48.         object[name] = ver
  49.         prettystring = json.encodePretty(object)
  50.         local file = fs.open("apps.json","w")
  51.         file.write(prettystring)
  52.         file.close()
  53.         os.reboot()
  54.       end
  55.     end
  56.   else
  57.   end
  58. end
  59. term.setCursorPos(1,lg.getSize().y)
  60. lg.exit()
  61.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement