0
0
mirror of https://github.com/Doodle3D/doodle3d-firmware.git synced 2024-06-26 03:21:22 +02:00

Merge branch 'master' into develop

This commit is contained in:
Rick Companje 2013-12-04 14:17:00 +01:00
commit 051e70a32b
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
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
-------------

View File

@ -43,7 +43,7 @@ local function createSketchList()
for item in lfs.dir(M.SKETCH_DIR) do
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
table.insert(result, tonumber(idx))
end