forked from FOSS/BangleApps
0.04: Fix installation after broken in 0.03 (fix #3667)
parent
1a26dc62ab
commit
7fc49cc47a
|
@ -1,3 +1,4 @@
|
|||
0.01: New App!
|
||||
0.02: Keep advertising when connected
|
||||
0.03: Use ble_advert module to work with other BLE advert apps
|
||||
0.04: Fix installation after broken in 0.03 (fix #3667)
|
||||
|
|
|
@ -46,7 +46,7 @@ require("ble_advert").push(adv, {whenConnected: true, interval: 1000}); // adver
|
|||
// send finished app
|
||||
sendCustomizedApp({
|
||||
storage:[
|
||||
{name:"openhaystack.boot.js", content:appJS},
|
||||
{name:"openhaystack.boot.js", content:appJS, url:"openhaystack.boot.js"/* not a real URL but this lets the App Loader know it's a JS file which should be parsed */},
|
||||
]
|
||||
});
|
||||
});
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{ "id": "openhaystack",
|
||||
"name": "OpenHaystack (AirTag)",
|
||||
"icon": "icon.png",
|
||||
"version":"0.03",
|
||||
"version":"0.04",
|
||||
"description": "Copy a base64 key from https://github.com/seemoo-lab/openhaystack and make your Bangle.js trackable as if it's an AirTag",
|
||||
"tags": "openhaystack,bluetooth,ble,tracking,airtag",
|
||||
"type": "bootloader",
|
||||
|
@ -9,6 +9,6 @@
|
|||
"readme": "README.md",
|
||||
"supports": ["BANGLEJS","BANGLEJS2"],
|
||||
"storage": [
|
||||
{"name":"openhaystack.boot.js"}
|
||||
{"name":"openhaystack.boot.js", "url":"openhaystack.boot.js" }
|
||||
]
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue