mirror of https://github.com/espruino/BangleApps
undo kbswipe changes may not be welcome
parent
b54fcdc3c5
commit
215bf9d347
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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",
|
||||
|
|
Loading…
Reference in New Issue