All checks were successful
Bommels LevelOS updater / refresh_levelos (push) Successful in 7s
30 lines
3.7 KiB
Lua
30 lines
3.7 KiB
Lua
shell.run("wget https://git.befatorinc.de/Befator-Computing-Systems/ClientOS/raw/branch/main/installer/installer.lua tmp/installer.lua")
|
|
shell.run("wget https://git.befatorinc.de/Befator-Computing-Systems/ClientOS/raw/branch/main/stage2-install.lua tmp/stage2-install.lua")
|
|
--Kernel
|
|
shell.run("wget https://git.befatorinc.de/Befator-Computing-Systems/ClientOS/raw/branch/main/real_startup.lua tmp/real_startup.lua")
|
|
shell.run("wget https://git.befatorinc.de/Befator-Computing-Systems/ClientOS/raw/branch/main/bigfont tmp/bigfont")
|
|
shell.run("wget https://git.befatorinc.de/Befator-Computing-Systems/ClientOS/raw/branch/main/LevelOS/assets/loading.limg tmp/LevelOS/assets/loading.limg")
|
|
--Core System
|
|
shell.run("wget https://git.befatorinc.de/Befator-Computing-Systems/ClientOS/raw/branch/main/LevelOS/system.lua tmp/LevelOS/system.lua")
|
|
shell.run("wget https://git.befatorinc.de/Befator-Computing-Systems/ClientOS/raw/branch/main/LevelOS/startup/lUtils.lua tmp/LevelOS/startup/lUtils.lua")
|
|
--Core UI
|
|
shell.run("wget https://git.befatorinc.de/Befator-Computing-Systems/ClientOS/raw/branch/main/LevelOS/SystemUI.lua tmp/LevelOS/SystemUI.lua") --Sonst Black Screen
|
|
shell.run("wget https://git.befatorinc.de/Befator-Computing-Systems/ClientOS/raw/branch/main/LevelOS/assets/Compact_Icons.limg tmp/LevelOS/assets/Compact_Icons.limg") --Sonst Crash
|
|
shell.run("wget https://git.befatorinc.de/Befator-Computing-Systems/ClientOS/raw/branch/main/LevelOS/Login_screen.sgui tmp/LevelOS/Login_screen.sgui") --Sonst freeze beim starten wenn es einen account gibt
|
|
--Desktop UI
|
|
shell.run("wget https://git.befatorinc.de/Befator-Computing-Systems/ClientOS/raw/branch/main/LevelOS/desktop.lua tmp/LevelOS/desktop.lua") --Sonst crash beim anklicken von Uhr oder Start Menü
|
|
shell.run("wget https://git.befatorinc.de/Befator-Computing-Systems/ClientOS/raw/branch/main/LevelOS/assets/Desktop_Icons.limg tmp/LevelOS/assets/Desktop_Icons.limg") --Sonst Crash wie vorher
|
|
--shell.run("mkdir Program_Files") --Sonst crash wie vorher
|
|
--Core Builtin Programs
|
|
shell.run("wget https://git.befatorinc.de/Befator-Computing-Systems/ClientOS/raw/branch/main/LevelOS/Task_Manager.lua tmp/LevelOS/Task_Manager.lua") --Sonst freeze beim Task Manager starten
|
|
shell.run("wget https://git.befatorinc.de/Befator-Computing-Systems/ClientOS/raw/branch/main/LevelOS/Clock.lua tmp/LevelOS/Clock.lua") --Sonst error popup beim klicken auf die Uhr
|
|
--Core Applications
|
|
shell.run("wget https://git.befatorinc.de/Befator-Computing-Systems/ClientOS/raw/branch/main/Program_Files/LevelOS/Explorer/main.lua tmp/Program_Files/LevelOS/Explorer/main.lua") --Sonst error popup biem klicken auf My PC
|
|
shell.run("wget https://git.befatorinc.de/Befator-Computing-Systems/ClientOS/raw/branch/main/blittle tmp/blittle") --Sonst errors im Explorer Window
|
|
shell.run("wget https://git.befatorinc.de/Befator-Computing-Systems/ClientOS/raw/branch/main/Program_Files/LevelOS/Explorer/icon.limg tmp/Program_Files/LevelOS/Explorer/icon.limg") --Sonst kein Explore Shortcut Icon
|
|
--Main Applications
|
|
shell.run("wget https://git.befatorinc.de/Befator-Computing-Systems/ClientOS/raw/branch/main/Program_Files/LevelOS/Notepad/main.lua tmp/Program_Files/LevelOS/Notepad/main.lua") --Sonst kein Notepad
|
|
shell.run("wget https://git.befatorinc.de/Befator-Computing-Systems/ClientOS/raw/branch/main/Program_Files/LevelOS/Notepad/icon.limg tmp/Program_Files/LevelOS/Notepad/icon.limg") --Sonst kein Notepad Shortcut Icon
|
|
shell.run("wget https://git.befatorinc.de/Befator-Computing-Systems/ClientOS/raw/branch/main/Program_Files/LevelOS/Lua/main.lua tmp/Program_Files/LevelOS/Lua/main.lua") --Sonst kein Lua
|
|
shell.run("wget https://git.befatorinc.de/Befator-Computing-Systems/ClientOS/raw/branch/main/Program_Files/LevelOS/Lua/icon.limg tmp/Program_Files/LevelOS/Lua/icon.limg") --Sonst kein Lua Shortcut Icon
|