diff --git a/.eslintignore b/.eslintignore
index 544f416aa..550fbda3f 100644
--- a/.eslintignore
+++ b/.eslintignore
@@ -2,5 +2,5 @@ lib/espruinotools.js
lib/imageconverter.js
lib/qrcode.min.js
lib/heatshrink.js
-
+lib/marked.min.js
apps/animclk/V29.LBM.js
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 48bfe74ec..66dc20b5e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -20,3 +20,4 @@ Changed for individual apps are listed in `apps/appname/ChangeLog`
* New 'espruinotools' which fixes pretokenise issue when ID follows ID (fix #416)
* Improve upload of binary files
* App description can now be markdown
+* Fix `marked is not defined` error (and include in repo, just in case)
diff --git a/apps.json b/apps.json
index 6c0f50eca..9ba610101 100644
--- a/apps.json
+++ b/apps.json
@@ -1024,7 +1024,7 @@
"name": "Commandline-Clock",
"shortName":"CLI-Clock",
"icon": "app.png",
- "version":"0.07",
+ "version":"0.08",
"description": "Simple CLI-Styled Clock",
"tags": "clock,cli,command,bash,shell",
"type":"clock",
@@ -1845,7 +1845,7 @@
"name": "Vertical watch face",
"shortName":"Vertical Face",
"icon": "app.png",
- "version":"0.4.1",
+ "version":"0.04",
"description": "A simple vertical watch face with the date.",
"tags": "clock",
"type":"clock",
diff --git a/apps/cliock/ChangeLog b/apps/cliock/ChangeLog
index 081a638f6..59f07c400 100644
--- a/apps/cliock/ChangeLog
+++ b/apps/cliock/ChangeLog
@@ -1 +1,2 @@
0.07: Submitted to App Loader
+0.08: Fixes issue where face would redraw on wake leading to all memory being used and watch crashing.
diff --git a/apps/cliock/app.js b/apps/cliock/app.js
index 20086464e..a94b7264d 100644
--- a/apps/cliock/app.js
+++ b/apps/cliock/app.js
@@ -5,9 +5,6 @@ var flag = false;
var WeekDays = ["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"];
function drawAll(){
- g.clear();
- Bangle.loadWidgets();
- Bangle.drawWidgets();
updateTime();
updateRest(new Date());
}
@@ -42,6 +39,9 @@ function writeLine(str,line){
g.drawString(str,25,marginTop+line*30);
}
+g.clear();
+Bangle.loadWidgets();
+Bangle.drawWidgets();
drawAll();
Bangle.on('lcdPower',function(on) {
if (on)
diff --git a/apps/verticalface/ChangeLog b/apps/verticalface/ChangeLog
new file mode 100644
index 000000000..19d763698
--- /dev/null
+++ b/apps/verticalface/ChangeLog
@@ -0,0 +1 @@
+0.04: Fixed day being displayed
diff --git a/index.html b/index.html
index 480fdd2e1..f0f54c248 100644
--- a/index.html
+++ b/index.html
@@ -174,14 +174,14 @@
+
+
+
-
-
-