mirror of https://github.com/espruino/BangleApps
added 13 more chords
parent
1a82f314ce
commit
e21fc018b4
|
@ -1,2 +1,3 @@
|
||||||
0.01: New App!
|
0.01: New App!
|
||||||
0.02: Increased Legibility, GUI rework
|
0.02: Increased Legibility, GUI rework
|
||||||
|
0.03: 13 new chords
|
||||||
|
|
211
apps/Uke/app.js
211
apps/Uke/app.js
|
@ -16,52 +16,12 @@ const cc = [
|
||||||
|
|
||||||
const dd = [
|
const dd = [
|
||||||
"D",
|
"D",
|
||||||
|
"22",
|
||||||
"23",
|
"23",
|
||||||
"22",
|
|
||||||
"24",
|
"24",
|
||||||
"x"
|
"x"
|
||||||
];
|
];
|
||||||
|
|
||||||
const gg = [
|
|
||||||
"G",
|
|
||||||
"x",
|
|
||||||
"21",
|
|
||||||
"33",
|
|
||||||
"22",
|
|
||||||
];
|
|
||||||
|
|
||||||
const am = [
|
|
||||||
"Am",
|
|
||||||
"22",
|
|
||||||
"x",
|
|
||||||
"x",
|
|
||||||
"x"
|
|
||||||
];
|
|
||||||
|
|
||||||
const em = [
|
|
||||||
"Em",
|
|
||||||
"x",
|
|
||||||
"43",
|
|
||||||
"32",
|
|
||||||
"21"
|
|
||||||
];
|
|
||||||
|
|
||||||
const aa = [
|
|
||||||
"A",
|
|
||||||
"22",
|
|
||||||
"11",
|
|
||||||
"x",
|
|
||||||
"x"
|
|
||||||
];
|
|
||||||
|
|
||||||
const ff = [
|
|
||||||
"F",
|
|
||||||
"22",
|
|
||||||
"x",
|
|
||||||
"11",
|
|
||||||
"x"
|
|
||||||
];
|
|
||||||
|
|
||||||
var ee = [
|
var ee = [
|
||||||
"E",
|
"E",
|
||||||
"33",
|
"33",
|
||||||
|
@ -70,20 +30,177 @@ var ee = [
|
||||||
"11"
|
"11"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
const ff = [
|
||||||
|
"F",
|
||||||
|
"22",
|
||||||
|
"x",
|
||||||
|
"11",
|
||||||
|
"x"
|
||||||
|
];
|
||||||
|
|
||||||
|
const gg = [
|
||||||
|
"G",
|
||||||
|
"x",
|
||||||
|
"21",
|
||||||
|
"33",
|
||||||
|
"22",
|
||||||
|
];
|
||||||
|
|
||||||
|
const aa = [
|
||||||
|
"A",
|
||||||
|
"22",
|
||||||
|
"11",
|
||||||
|
"x",
|
||||||
|
"x"
|
||||||
|
];
|
||||||
|
|
||||||
|
const bb = [
|
||||||
|
"B",
|
||||||
|
"42",
|
||||||
|
"43",
|
||||||
|
"44",
|
||||||
|
"21"
|
||||||
|
];
|
||||||
|
|
||||||
|
const cm = [
|
||||||
|
"Cm",
|
||||||
|
"11",
|
||||||
|
"x",
|
||||||
|
"12",
|
||||||
|
"34"
|
||||||
|
];
|
||||||
|
|
||||||
|
const dm = [
|
||||||
|
"Dm",
|
||||||
|
"x",
|
||||||
|
"22",
|
||||||
|
"33",
|
||||||
|
"11"
|
||||||
|
];
|
||||||
|
|
||||||
|
const em = [
|
||||||
|
"Em",
|
||||||
|
"x",
|
||||||
|
"43",
|
||||||
|
"32",
|
||||||
|
"21"
|
||||||
|
];
|
||||||
|
|
||||||
|
const fm = [
|
||||||
|
"Fm",
|
||||||
|
"33",
|
||||||
|
"11",
|
||||||
|
"11",
|
||||||
|
"11"
|
||||||
|
];
|
||||||
|
|
||||||
|
const gm = [
|
||||||
|
"Gm",
|
||||||
|
"x",
|
||||||
|
"22",
|
||||||
|
"33",
|
||||||
|
"11"
|
||||||
|
];
|
||||||
|
|
||||||
|
const am = [
|
||||||
|
"Am",
|
||||||
|
"22",
|
||||||
|
"23",
|
||||||
|
"11",
|
||||||
|
"x"
|
||||||
|
];
|
||||||
|
|
||||||
|
const bm = [
|
||||||
|
"Bm",
|
||||||
|
"x",
|
||||||
|
"43",
|
||||||
|
"32",
|
||||||
|
"21"
|
||||||
|
];
|
||||||
|
|
||||||
|
const c7 = [
|
||||||
|
"C7",
|
||||||
|
"22",
|
||||||
|
"33",
|
||||||
|
"11",
|
||||||
|
"x"
|
||||||
|
];
|
||||||
|
|
||||||
|
const d7 = [
|
||||||
|
"D7",
|
||||||
|
"x",
|
||||||
|
"22",
|
||||||
|
"11",
|
||||||
|
"23"
|
||||||
|
];
|
||||||
|
|
||||||
|
const e7 = [
|
||||||
|
"E7",
|
||||||
|
"x",
|
||||||
|
"11",
|
||||||
|
"x",
|
||||||
|
"x"
|
||||||
|
];
|
||||||
|
|
||||||
|
const f7 = [
|
||||||
|
"F7",
|
||||||
|
"11",
|
||||||
|
"22",
|
||||||
|
"11",
|
||||||
|
"11"
|
||||||
|
];
|
||||||
|
|
||||||
|
const g7 = [
|
||||||
|
"G7",
|
||||||
|
"x",
|
||||||
|
"x",
|
||||||
|
"x",
|
||||||
|
"11"
|
||||||
|
];
|
||||||
|
|
||||||
|
const a7 = [
|
||||||
|
"A7",
|
||||||
|
"21",
|
||||||
|
"21",
|
||||||
|
"21",
|
||||||
|
"32"
|
||||||
|
];
|
||||||
|
|
||||||
|
const b7 = [
|
||||||
|
"B7",
|
||||||
|
"11",
|
||||||
|
"22",
|
||||||
|
"x",
|
||||||
|
"23"
|
||||||
|
];
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
var index = 0;
|
var index = 0;
|
||||||
var chords = [];
|
var chords = [];
|
||||||
var menu = {
|
var menu = {
|
||||||
"" : {
|
"" : { "title" : "Uke Chords" },
|
||||||
"title" : "Uke Chords"
|
|
||||||
},
|
|
||||||
"C" : function() { draw(cc); },
|
"C" : function() { draw(cc); },
|
||||||
"D" : function() { draw(dd); },
|
"D" : function() { draw(dd); },
|
||||||
"E" : function() { draw(ee); },
|
"E" : function() { draw(ee); },
|
||||||
"Em" : function() { draw(em); },
|
|
||||||
"A" : function() { draw(aa); },
|
|
||||||
"Am" : function() { draw(am); },
|
|
||||||
"F" : function() { draw(ff); },
|
"F" : function() { draw(ff); },
|
||||||
"G" : function() { draw(gg); },
|
"G" : function() { draw(gg); },
|
||||||
|
"A" : function() { draw(aa); },
|
||||||
|
"B" : function() { draw(bb); },
|
||||||
|
"C7" : function() { draw(c7); },
|
||||||
|
"D7" : function() { draw(d7); },
|
||||||
|
"E7" : function() { draw(e7); },
|
||||||
|
"F7" : function() { draw(f7); },
|
||||||
|
"G7" : function() { draw(g7); },
|
||||||
|
"A7" : function() { draw(a7); },
|
||||||
|
"B7" : function() { draw(b7); },
|
||||||
|
"Cm" : function() { draw(cm); },
|
||||||
|
"Dm" : function() { draw(dm); },
|
||||||
|
"Em" : function() { draw(em); },
|
||||||
|
"Fm" : function() { draw(fm); },
|
||||||
|
"Gm" : function() { draw(gm); },
|
||||||
|
"Am" : function() { draw(am); },
|
||||||
|
"Bm" : function() { draw(bm); },
|
||||||
"About" : function() {
|
"About" : function() {
|
||||||
E.showMessage(
|
E.showMessage(
|
||||||
"Created By:\nNovaDawn999", {
|
"Created By:\nNovaDawn999", {
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{ "id": "Uke",
|
{ "id": "Uke",
|
||||||
"name": "Uke Chords",
|
"name": "Uke Chords",
|
||||||
"shortName":"Uke",
|
"shortName":"Uke",
|
||||||
"version":"0.02",
|
"version":"0.03",
|
||||||
"description": "Wrist mounted ukulele chords",
|
"description": "Wrist mounted ukulele chords",
|
||||||
"icon": "app.png",
|
"icon": "app.png",
|
||||||
"tags": "uke, chords",
|
"tags": "uke, chords",
|
||||||
|
|
Loading…
Reference in New Issue