prep for new release
This commit is contained in:
parent
49c9b6e14f
commit
eb7217a91a
7 changed files with 17 additions and 3 deletions
|
@ -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
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"id": "com.monkeystew.todotxtenyo.beta",
|
||||
"version": "0.3.1",
|
||||
"version": "0.4.0",
|
||||
"vendor": "Monkeystew",
|
||||
"type": "web",
|
||||
"main": "index.html",
|
||||
|
|
|
@ -14,8 +14,13 @@
|
|||
appInstance.setLaunchParams(enyo.windowParams);
|
||||
}
|
||||
appInstance.renderInto(document.body);
|
||||
|
||||
</script>
|
||||
<div id="history" style="display: none">
|
||||
<div class="version">0.4.0</div>
|
||||
<ul>
|
||||
<li>Archive support (done.txt file).</li>
|
||||
</ul>
|
||||
<div class="version">0.3.0</div>
|
||||
<ul>
|
||||
<li>Filter by project or context.</li>
|
||||
|
|
|
@ -162,6 +162,8 @@ enyo.kind({
|
|||
this.doneList = [];
|
||||
this.refreshTodo();
|
||||
|
||||
console.log("things are ready");
|
||||
|
||||
},
|
||||
|
||||
launchParamsChanged: function() {
|
||||
|
|
|
@ -7,14 +7,20 @@
|
|||
</head>
|
||||
<body>
|
||||
<script type="text/javascript">
|
||||
|
||||
var appInstance = enyo.create({kind: "TodoTxt"});
|
||||
|
||||
if (window.PalmSystem && enyo.windowParams) {
|
||||
appInstance.setLaunchParams(enyo.windowParams);
|
||||
}
|
||||
appInstance.renderInto(document.body);
|
||||
|
||||
</script>
|
||||
<div id="history" style="display: none">
|
||||
<div class="version">0.4.0</div>
|
||||
<ul>
|
||||
<li>Archive support (done.txt file).</li>
|
||||
</ul>
|
||||
<div class="version">0.3.0</div>
|
||||
<ul>
|
||||
<li>Filter by project or context.</li>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
<widget xmlns="http://www.w3.org/ns/widgets"
|
||||
xmlns:rim="http://www.blackberry.com/ns/widgets"
|
||||
version="0.3.0.0">
|
||||
version="0.4.0.0">
|
||||
|
||||
<name>Todo.txt Enyo beta</name>
|
||||
|
||||
|
|
|
@ -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"]
|
||||
|
|
Loading…
Reference in a new issue