aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAdam Harrison <adamdharrison@gmail.com>2023-03-14 17:32:19 -0400
committerAdam Harrison <adamdharrison@gmail.com>2023-03-14 17:32:19 -0400
commit5b547e5ba98083d457d69503adb51b4d0ee27c7f (patch)
tree5d90dc9051808c14234fe1c220ae44056f8259fe /src
parentfdc60a4009b8750eecb64cb92e28d21af9b2d6f8 (diff)
downloadlite-xl-plugin-manager-5b547e5ba98083d457d69503adb51b4d0ee27c7f.tar.gz
lite-xl-plugin-manager-5b547e5ba98083d457d69503adb51b4d0ee27c7f.zip
Added in replaces to the SPEC, and to lpm.v0.99999
Diffstat (limited to 'src')
-rw-r--r--src/lpm.lua20
1 files changed, 8 insertions, 12 deletions
diff --git a/src/lpm.lua b/src/lpm.lua
index 3f1e4df..5004ead 100644
--- a/src/lpm.lua
+++ b/src/lpm.lua
@@ -1328,20 +1328,17 @@ function Bottle:get_addon(id, version, filter)
local wildcard = id:find("%*$")
filter = filter or {}
for i,addon in ipairs(self:all_addons()) do
- if not version and addon.provides then
- for k, provides in ipairs(addon.provides) do
- if provides == id then
- table.insert(candidates, addon)
- end
- end
- end
- if (addon.id == id or (wildcard and addon.id:find("^" .. id:sub(1, #id - 1)))) and match_version(addon.version, version) then
- if (not filter.mod_version or not addon.mod_version or compatible_modversion(filter.mod_version, addon.mod_version)) then
+ if (common.first(addon.replaces or {}, function(replaces) return replaces == id end) or
+ common.first(addon.provides or {}, function(provides) return provides == id end) or
+ (addon.id == id or (wildcard and addon.id:find("^" .. id:sub(1, #id - 1))))) and
+ match_version(addon.version, version) and (not filter.mod_version or not addon.mod_version or compatible_modversion(filter.mod_version, addon.mod_version))
+ then
table.insert(candidates, addon)
- end
end
end
- return table.unpack(common.sort(common.uniq(candidates), function (a,b) return a.version < b.version end))
+ return table.unpack(common.sort(common.uniq(candidates), function (a,b)
+ return (a.replaces == id and b.replaces ~= id) or (a.version < b.version)
+ end))
end
local function get_repository(url)
@@ -2117,7 +2114,6 @@ not commonly used publically.
end
if not system_bottle then system_bottle = Bottle.new(nil, nil, true) end
end, error_handler)
-
if ARGS[2] ~= '-' then
engage_locks(function()
run_command(ARGS)