1
mirror of https://github.com/mpv-player/mpv synced 2024-08-04 14:59:58 +02:00

TOOLS/lua/autoload.lua: remove the extension prior to sort

When the directory contains files named such as xx-14.ext and
xx-14.5.ext, remove the extension to sort the table to load the
14 before the 14.5.
This commit is contained in:
Alexis Nootens 2016-02-02 19:28:33 +01:00 committed by wm4
parent b7e613f261
commit 8996f79edb

View File

@ -72,6 +72,11 @@ function find_and_add_entries()
return EXTENSIONS[string.lower(ext)]
end)
table.sort(files, function (a, b)
local len = string.len(a) - string.len(b)
if len ~= 0 then -- case for ordering filename ending with such as X.Y.Z
local ext = string.len(get_extension(a)) + 1
return string.sub(a, 1, -ext) < string.sub(b, 1, -ext)
end
return string.lower(a) < string.lower(b)
end)