summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2009-08-26 08:23:46 +0000
committerTed Trask <ttrask01@yahoo.com>2009-08-26 08:23:46 +0000
commit42dc7642e442c383eeee059fe602d3a74f3cdb4f (patch)
treef92739a51ddb3bd2548e8ca0f02589e8d17462c6
parentf4b96b7486f41365d2d83d711b6fb69512defd5a (diff)
downloadacf-dansguardian-42dc7642e442c383eeee059fe602d3a74f3cdb4f.tar.bz2
acf-dansguardian-42dc7642e442c383eeee059fe602d3a74f3cdb4f.tar.xz
Sort the advanced files, bumped to 0.3.1v0.3.1
-rw-r--r--Makefile2
-rw-r--r--dansguardian-model.lua1
2 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 7935a14..6024d08 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
APP_NAME=dansguardian
PACKAGE=acf-$(APP_NAME)
-VERSION=0.3.0
+VERSION=0.3.1
APP_DIST=\
dansguardian* \
diff --git a/dansguardian-model.lua b/dansguardian-model.lua
index 8ddf3a6..bc50275 100644
--- a/dansguardian-model.lua
+++ b/dansguardian-model.lua
@@ -152,6 +152,7 @@ list_files = function()
table.insert(retval, details)
end
end
+ table.sort(retval, function(a,b) return (a.filename < b.filename) end)
return cfe({ type="structure", value=retval, label="List of Dansguardian files" })
end