mirror of
https://github.com/Doodle3D/doodle3d-firmware.git
synced 2024-12-22 11:03:48 +01:00
Merge branch 'master' into develop
This commit is contained in:
commit
051e70a32b
@ -1,7 +1,7 @@
|
|||||||
WiFi box OpenWRT firmware package
|
WiFi box OpenWRT firmware package
|
||||||
=================================
|
=================================
|
||||||
|
|
||||||
General documentation can be found on the wiki: <http://doodle3d.com/wiki>. Source code documentation can be generated, see below.
|
General documentation can be found on the wiki: <http://doodle3d.com/help/wiki>. Source code documentation can be generated, see below.
|
||||||
|
|
||||||
Documentation
|
Documentation
|
||||||
-------------
|
-------------
|
||||||
|
@ -43,7 +43,7 @@ local function createSketchList()
|
|||||||
|
|
||||||
for item in lfs.dir(M.SKETCH_DIR) do
|
for item in lfs.dir(M.SKETCH_DIR) do
|
||||||
if item ~= '.' and item ~= '..' then
|
if item ~= '.' and item ~= '..' then
|
||||||
local idx = item:match('^(%d+)\.sketch$')
|
local idx = item:match('^(%d+)\.'..SKETCH_FILE_EXTENSION..'$')
|
||||||
if idx and idx:len() == NUMBER_PAD_WIDTH then
|
if idx and idx:len() == NUMBER_PAD_WIDTH then
|
||||||
table.insert(result, tonumber(idx))
|
table.insert(result, tonumber(idx))
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user