undo kbswipe changes may not be welcome

pull/2129/head
hughbarney 2022-09-19 14:53:54 +01:00
parent b54fcdc3c5
commit 215bf9d347
3 changed files with 3 additions and 8 deletions

View File

@ -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

View File

@ -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;

View File

@ -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",