diff --git a/apps/kbswipe/ChangeLog b/apps/kbswipe/ChangeLog index 4af2ea366..f0dc54b69 100644 --- a/apps/kbswipe/ChangeLog +++ b/apps/kbswipe/ChangeLog @@ -2,4 +2,3 @@ 0.02: Now keeps user input trace intact by changing how the screen is updated. 0.03: Positioning of marker now takes the height of the widget field into account. 0.04: Fix issue if going back without typing. -0.05: Gesture cribsheet use g.theme.fg instead of red diff --git a/apps/kbswipe/lib.js b/apps/kbswipe/lib.js index 0422dea82..417ac98d9 100644 --- a/apps/kbswipe/lib.js +++ b/apps/kbswipe/lib.js @@ -82,12 +82,8 @@ exports.getStrokes( (id,s) => Bangle.strokes[id] = Unistroke.new(s) ); g.drawString(l.join("\n"),R.x+4,R.y+4); } - /** - This draws a big image to use in the README file - uncomment and each time the library is loaded it will dump to the IDE - you must be connected to the IDE. - */ /* + // This draws a big image to use in the README (function() { E.defrag(); var b = Graphics.createArrayBuffer(500,420,1,{msb:true}); @@ -106,7 +102,7 @@ exports.getStrokes( (id,s) => Bangle.strokes[id] = Unistroke.new(s) ); function show() { g.reset(); - g.clearRect(R).setColor(g.theme.fg); + g.clearRect(R).setColor("#f00"); var n=0; exports.getStrokes((id,s) => { var x = n%6; diff --git a/apps/kbswipe/metadata.json b/apps/kbswipe/metadata.json index 59622cb96..d4026c815 100644 --- a/apps/kbswipe/metadata.json +++ b/apps/kbswipe/metadata.json @@ -1,6 +1,6 @@ { "id": "kbswipe", "name": "Swipe keyboard", - "version":"0.05", + "version":"0.04", "description": "A library for text input via PalmOS style swipe gestures (beta!)", "icon": "app.png", "type":"textinput",