Проверка версий зависимостей

Добавил проверку версий установленных зависимостей паков.
This commit is contained in:
KotIsOff
2025-08-23 01:33:06 +03:00
parent a46aafa562
commit 5994371145
7 changed files with 33 additions and 4 deletions
+11 -2
View File
@@ -181,8 +181,9 @@ function check_dependencies(packinfo)
return
end
for i,dep in ipairs(packinfo.dependencies) do
local depid = dep:sub(2,-1)
if dep:sub(1,1) == '!' then
local depid, depver = unpack(string.split(dep:sub(2,-1), "@"))
if dep:sub(1,1) == '!' then
if not table.has(packs_all, depid) then
return string.format(
"%s (%s)", gui.str("error.dependency-not-found"), depid
@@ -192,6 +193,14 @@ function check_dependencies(packinfo)
table.insert(required, depid)
end
end
local dep_pack = pack.get_info(depid);
if depver ~= "*" or depver ~= dep_pack.version then
return string.format("%s (%s@%s != %s)", gui.str("error.dependency-version-not-met"), depid, dep_pack.version, depver);
end
debug.print(packinfo);
end
return
end