This commit is contained in:
Gvidas Juknevičius 2024-08-25 23:11:50 +03:00
parent f0e24ab135
commit 1c6af0a1f9
Signed by: MCorange
GPG Key ID: 12B1346D720B7FBB
2 changed files with 2 additions and 8 deletions

View File

@ -347,10 +347,7 @@ rawset(__BUNDLER_FILES, "updater", function ()
c.api_url = "https://git.mcorangehq.xyz/api/v1/repos/xomf/keypadOS"; c.api_url = "https://git.mcorangehq.xyz/api/v1/repos/xomf/keypadOS";
c.curr_commit_hash = ""; c.curr_commit_hash = "";
c.updated_files = {}; c.updated_files = {};
c.updated_files["startup.lua"] = { c:addEntry("startup", "main", "https://git.mcorangehq.xyz/xomf/keypadOS/raw/branch/main/rtmc.lua");
url = "https://git.mcorangehq.xyz/xomf/keypadOS/raw/branch/main/rtmc.lua",
branch = "main"
};
return c return c
end end
function updater:addEntry(path, branch, url) function updater:addEntry(path, branch, url)

View File

@ -23,10 +23,7 @@ function updater.new()
c.api_url = "https://git.mcorangehq.xyz/api/v1/repos/xomf/keypadOS"; c.api_url = "https://git.mcorangehq.xyz/api/v1/repos/xomf/keypadOS";
c.curr_commit_hash = ""; c.curr_commit_hash = "";
c.updated_files = {}; c.updated_files = {};
c.updated_files["startup.lua"] = { c:addEntry("startup", "main", "https://git.mcorangehq.xyz/xomf/keypadOS/raw/branch/main/rtmc.lua");
url = "https://git.mcorangehq.xyz/xomf/keypadOS/raw/branch/main/rtmc.lua",
branch = "main"
};
return c return c
end end