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
|
* Filter by project or context
|
||||||
* Set and sort by priority
|
* Set and sort by priority
|
||||||
* Task completion (and optionally creation) dates
|
* Task completion (and optionally creation) dates
|
||||||
|
* Archive completed tasks (done.txt)
|
||||||
* "Just Type" quick actions and universal search
|
* "Just Type" quick actions and universal search
|
||||||
* Internal storage support
|
* Internal storage support
|
||||||
* Dropbox support
|
* Dropbox support
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"id": "com.monkeystew.todotxtenyo.beta",
|
"id": "com.monkeystew.todotxtenyo.beta",
|
||||||
"version": "0.3.1",
|
"version": "0.4.0",
|
||||||
"vendor": "Monkeystew",
|
"vendor": "Monkeystew",
|
||||||
"type": "web",
|
"type": "web",
|
||||||
"main": "index.html",
|
"main": "index.html",
|
||||||
|
|
|
@ -14,8 +14,13 @@
|
||||||
appInstance.setLaunchParams(enyo.windowParams);
|
appInstance.setLaunchParams(enyo.windowParams);
|
||||||
}
|
}
|
||||||
appInstance.renderInto(document.body);
|
appInstance.renderInto(document.body);
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
<div id="history" style="display: none">
|
<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>
|
<div class="version">0.3.0</div>
|
||||||
<ul>
|
<ul>
|
||||||
<li>Filter by project or context.</li>
|
<li>Filter by project or context.</li>
|
||||||
|
|
|
@ -162,6 +162,8 @@ enyo.kind({
|
||||||
this.doneList = [];
|
this.doneList = [];
|
||||||
this.refreshTodo();
|
this.refreshTodo();
|
||||||
|
|
||||||
|
console.log("things are ready");
|
||||||
|
|
||||||
},
|
},
|
||||||
|
|
||||||
launchParamsChanged: function() {
|
launchParamsChanged: function() {
|
||||||
|
|
|
@ -7,14 +7,20 @@
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
|
|
||||||
var appInstance = enyo.create({kind: "TodoTxt"});
|
var appInstance = enyo.create({kind: "TodoTxt"});
|
||||||
|
|
||||||
if (window.PalmSystem && enyo.windowParams) {
|
if (window.PalmSystem && enyo.windowParams) {
|
||||||
appInstance.setLaunchParams(enyo.windowParams);
|
appInstance.setLaunchParams(enyo.windowParams);
|
||||||
}
|
}
|
||||||
appInstance.renderInto(document.body);
|
appInstance.renderInto(document.body);
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
<div id="history" style="display: none">
|
<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>
|
<div class="version">0.3.0</div>
|
||||||
<ul>
|
<ul>
|
||||||
<li>Filter by project or context.</li>
|
<li>Filter by project or context.</li>
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
<widget xmlns="http://www.w3.org/ns/widgets"
|
<widget xmlns="http://www.w3.org/ns/widgets"
|
||||||
xmlns:rim="http://www.blackberry.com/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>
|
<name>Todo.txt Enyo beta</name>
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
"package_format_version": 2,
|
"package_format_version": 2,
|
||||||
"loc_name": "Todo.txt Enyo",
|
"loc_name": "Todo.txt Enyo",
|
||||||
"icon": "icon.png",
|
"icon": "icon.png",
|
||||||
"version": "0.3.1",
|
"version": "0.4.0",
|
||||||
"vendor": "Monkeystew",
|
"vendor": "Monkeystew",
|
||||||
"app": "com.monkeystew.todotxtenyo.beta",
|
"app": "com.monkeystew.todotxtenyo.beta",
|
||||||
"services": ["com.monkeystew.todotxtenyo.beta.service"]
|
"services": ["com.monkeystew.todotxtenyo.beta.service"]
|
||||||
|
|
Loading…
Reference in a new issue