diff --git a/README.md b/README.md
index bf766de..17c1061 100644
--- a/README.md
+++ b/README.md
@@ -9,6 +9,7 @@ Current Features
* Filter by project or context
* Set and sort by priority
* Task completion (and optionally creation) dates
+* Archive completed tasks (done.txt)
* "Just Type" quick actions and universal search
* Internal storage support
* Dropbox support
diff --git a/app/appinfo.json b/app/appinfo.json
index a48653d..fbb7795 100644
--- a/app/appinfo.json
+++ b/app/appinfo.json
@@ -1,6 +1,6 @@
{
"id": "com.monkeystew.todotxtenyo.beta",
- "version": "0.3.1",
+ "version": "0.4.0",
"vendor": "Monkeystew",
"type": "web",
"main": "index.html",
diff --git a/app/index.html b/app/index.html
index 2a05d7d..0cd96de 100644
--- a/app/index.html
+++ b/app/index.html
@@ -14,8 +14,13 @@
appInstance.setLaunchParams(enyo.windowParams);
}
appInstance.renderInto(document.body);
+
+
0.4.0
+
+ - Archive support (done.txt file).
+
0.3.0
- Filter by project or context.
diff --git a/app/source/TodoTxt.js b/app/source/TodoTxt.js
index 41df8bc..7616362 100644
--- a/app/source/TodoTxt.js
+++ b/app/source/TodoTxt.js
@@ -162,6 +162,8 @@ enyo.kind({
this.doneList = [];
this.refreshTodo();
+ console.log("things are ready");
+
},
launchParamsChanged: function() {
diff --git a/bbww/appindex.html b/bbww/appindex.html
index 7c1f724..38b6a19 100644
--- a/bbww/appindex.html
+++ b/bbww/appindex.html
@@ -7,14 +7,20 @@
+
0.4.0
+
+ - Archive support (done.txt file).
+
0.3.0
- Filter by project or context.
diff --git a/bbww/config.xml b/bbww/config.xml
index 0dc23f1..9715779 100644
--- a/bbww/config.xml
+++ b/bbww/config.xml
@@ -7,7 +7,7 @@
+ version="0.4.0.0">
Todo.txt Enyo beta
diff --git a/pkg/packageinfo.json b/pkg/packageinfo.json
index 81701c9..cf4a96a 100644
--- a/pkg/packageinfo.json
+++ b/pkg/packageinfo.json
@@ -3,7 +3,7 @@
"package_format_version": 2,
"loc_name": "Todo.txt Enyo",
"icon": "icon.png",
- "version": "0.3.1",
+ "version": "0.4.0",
"vendor": "Monkeystew",
"app": "com.monkeystew.todotxtenyo.beta",
"services": ["com.monkeystew.todotxtenyo.beta.service"]