diff --git a/apps/coin_info/README.md b/apps/coin_info/README.md index ad8f2d79f..ee27f0cf6 100644 --- a/apps/coin_info/README.md +++ b/apps/coin_info/README.md @@ -8,6 +8,9 @@ Crypto-Coins Infos with the help of the Binance and CoinStats API - I use Pebble++ watch to show a bigger size of clock_info - I use a wider, more readable font for Pebble++ +![Screenshot01](screenshots/20250316_01.jpg) +![Screenshot02](screenshots/20250316_02.jpg) + ## Creator Martin Zwigl diff --git a/apps/coin_info/app.js b/apps/coin_info/app.js index c9c359af5..9d0753b9d 100644 --- a/apps/coin_info/app.js +++ b/apps/coin_info/app.js @@ -2,6 +2,7 @@ const settings = require("Storage").readJSON("coin_info.settings.json", 1) || {} const db = require("Storage").readJSON("coin_info.cmc_key.json", 1) || {}; const csTokens = db.csTokens.split(','); var ticker = 0; +var currLoadMsg = "..."; var timePeriod = "24h"; var tknChrtData = [0,1,3,8,10,12,12,10,8,3,1,0]; @@ -68,9 +69,8 @@ function swipeHandler(lr, ud) { } // -var currLoadMsg = "..."; function setLoadMsg(x) { - currentLabel = `Load... ${x}`; + currLoadMsg = `Load... ${x}`; } // timeout used to update every minute diff --git a/apps/coin_info/metadata.json b/apps/coin_info/metadata.json index 7276af5d7..f4a761de6 100644 --- a/apps/coin_info/metadata.json +++ b/apps/coin_info/metadata.json @@ -1,7 +1,7 @@ { "id": "coin_info", "name": "Crypto-Coins Info", "shortName":"Coins Info", - "version": "0.06.25", + "version": "0.06.26", "description": "Crypto-Coins Infos with the help of the Binance API", "icon": "app.png", "tags": "clkinfo", diff --git a/apps/coin_info/screenshots/20250316_01.jpg b/apps/coin_info/screenshots/20250316_01.jpg new file mode 100644 index 000000000..80ed025a0 Binary files /dev/null and b/apps/coin_info/screenshots/20250316_01.jpg differ diff --git a/apps/coin_info/screenshots/20250316_02.jpg b/apps/coin_info/screenshots/20250316_02.jpg new file mode 100644 index 000000000..8b431c980 Binary files /dev/null and b/apps/coin_info/screenshots/20250316_02.jpg differ