mirror of https://github.com/espruino/BangleApps
12 lines
387 B
JavaScript
12 lines
387 B
JavaScript
/* jshint esversion: 6 */
|
|
(() => {
|
|
var width = 28,
|
|
ver = process.env.VERSION.split('.');
|
|
function draw() {
|
|
g.reset().setColor(0, 0.5, 1).setFont("6x8", 1);
|
|
g.drawString(ver[0], this.x + 2, this.y + 4, true);
|
|
g.setFontAlign(0, -1, 0).drawString(ver[1], this.x + width / 2, this.y + 14, true);
|
|
}
|
|
WIDGETS["version"] = { area: "tr", width: width, draw: draw };
|
|
})();
|