bugfix: deleting definitions

[?]
May 1, 2023, 5:02 AM
3LU2TYSWNQ54STN7EBBIRYM5NR4XWPX2SUV337G7NJCUPXIG67GQC

Dependencies

  • [2] IJQP7HJK bugfix: only include files with numeric _prefixes_
  • [3] LRDM35CE app running again
  • [4] EZHO4TSW new file-system format for freewheeling apps

Change contents

  • replacement in live.lua at line 62
    [3.1181][2.104:194](),[2.194][3.1247:1480](),[3.4046][3.1247:1480]()
    local numeric_prefix, root = filename:match('^(%d+)-(.+)')
    if numeric_prefix then
    if tonumber(numeric_prefix) > 0 then -- skip 0000
    Live.filename[root] = filename
    table.insert(Live.filenames_to_load, filename)
    Live.final_prefix = math.max(Live.final_prefix, tonumber(numeric_prefix))
    [3.1181]
    [3.4253]
    if io.open(love.filesystem.getSaveDirectory()..'/'..filename) then
    local numeric_prefix, root = filename:match('^(%d+)-(.+)')
    if numeric_prefix then
    if tonumber(numeric_prefix) > 0 then -- skip 0000
    Live.filename[root] = filename
    table.insert(Live.filenames_to_load, filename)
    Live.final_prefix = math.max(Live.final_prefix, tonumber(numeric_prefix))
    end