This commit is contained in:
Gvidas Juknevičius 2024-08-26 00:09:32 +03:00
parent 5fa92ae0c4
commit 6b864b43be
Signed by: MCorange
GPG Key ID: 12B1346D720B7FBB
2 changed files with 9 additions and 1 deletions

View File

@ -9,7 +9,7 @@ local require = function(path)
return __DEFAULT_IMPORT(path) return __DEFAULT_IMPORT(path)
end end
end end
local __UPDATE_HASH = "ec1abeef47083a93b21ce1cedaa804753c1f6036" local __UPDATE_HASH = "8b06679030eeacf8b8e72cf790b73091c2bc9bba"
rawset(__BUNDLER_FILES, "updater.lua", function () rawset(__BUNDLER_FILES, "updater.lua", function ()
local utils = require("utils.lua") local utils = require("utils.lua")
local config = require("config.lua") local config = require("config.lua")
@ -238,6 +238,10 @@ rawset(__BUNDLER_FILES, "main.lua", function ()
KEYPADOS_VERSION = "4.0" KEYPADOS_VERSION = "4.0"
function mod.main(blibs) function mod.main(blibs)
print("blibs:" .. tostring(blibs)); print("blibs:" .. tostring(blibs));
print("blibs:" .. tostring(blibs.updater));
print("blibs:" .. tostring(blibs.log));
print("blibs:" .. tostring(blibs.json));
print("blibs:" .. tostring(blibs.notifier));
mod.blibs = blibs; mod.blibs = blibs;
utils.MonReset(0.5) utils.MonReset(0.5)
updater.GetBasalt() updater.GetBasalt()

View File

@ -31,6 +31,10 @@ KEYPADOS_VERSION = "4.0"
---@param blibs BootloaderLibs ---@param blibs BootloaderLibs
function mod.main(blibs) function mod.main(blibs)
print("blibs:" .. tostring(blibs)); print("blibs:" .. tostring(blibs));
print("blibs:" .. tostring(blibs.updater));
print("blibs:" .. tostring(blibs.log));
print("blibs:" .. tostring(blibs.json));
print("blibs:" .. tostring(blibs.notifier));
mod.blibs = blibs; mod.blibs = blibs;
utils.MonReset(0.5) utils.MonReset(0.5)
updater.GetBasalt() updater.GetBasalt()