Commit Graph

754 Commits (745e4d38a910d00fa0c8c1260d3ab6250e418560)

Author SHA1 Message Date
Stefano Baldan 32e1642555 Added minion themed clock 2020-04-04 14:14:01 +02:00
Gordon Williams 8318847293
Merge pull request #213 from brainfart-be/master
Improvement: Close launcher when lcd turn off
2020-04-04 13:07:10 +01:00
Gordon Williams 383ae41d8d
Merge pull request #195 from rigrig/widbatpc
Add settings to `widbatpc`
2020-04-04 13:04:21 +01:00
Gordon Williams 41318f0338
Merge pull request #220 from paulcockrell/master
Mario Clock [Enhancement] - Better performance / graphics
2020-04-04 12:58:54 +01:00
Paul Cockrell 3f6e4b630e Vertical align date string 2020-04-04 11:05:51 +01:00
Paul Cockrell 16ea9a8167 Enhance Mario clock performance and graphics 2020-04-04 11:03:34 +01:00
msdeibel ba5df10601 JS for icon changed 2020-04-04 08:55:13 +02:00
msdeibel 8fa7fd0e43 Improved buzz timing and rendering 2020-04-04 08:50:55 +02:00
msdeibel a55efc5740 Merge branch 'master' of https://github.com/espruino/BangleApps 2020-04-04 08:48:16 +02:00
Richard de Boer 7b669cd028 Move Welcome config into App/widget settings 2020-04-04 01:30:33 +02:00
Dimitri Gigot 323b2dc3b4 Improvement: Close launcher when lcd turn off 2020-04-03 21:37:00 +00:00
Richard de Boer 7d89c1417e Merge branch 'master' into widbatpc 2020-04-03 22:20:51 +02:00
Gordon Williams 28c8437cce
Merge pull request #209 from articnet/master
Fixed icon
2020-04-03 21:17:38 +01:00
Richard de Boer c269083382 widbatpc: put settings function in parentheses 2020-04-03 21:36:48 +02:00
Richard de Boer 2ade1e885a Merge branch 'app_settings' into widbatpc 2020-04-03 21:33:36 +02:00
Richard de Boer 048a042ffa Revert "Settings: load app settings in their own scope"
> Actually eval('('+appSettings+')') is significantly worse I'm afraid.
>
> Basically, if you do Storage.read you get a pointer to external memory
> Any functions have their code kept in that memory so it saves loads of
> RAM. The second you append to the string it has to copy everything to
> RAM - so now every function ends up in RAM, not Flash :(

This reverts commit c135c70f
2020-04-03 21:32:05 +02:00
Richard de Boer 443e818d36 Merge branch 'master' into app_settings 2020-04-03 21:28:35 +02:00
ArticNet 18e69603dd Fixed icon 2020-04-04 04:22:41 +09:00
Gordon Williams 561f381a4d
Merge pull request #207 from MaBecker/update_app_miclock
update_app_miclock
2020-04-03 19:46:46 +01:00
Gordon Williams 9c15ff4b05
Merge branch 'master' into master 2020-04-03 19:43:56 +01:00
MaBecker 3a70e315b8 update_app_miclock
no commands before jshint
2020-04-03 20:41:33 +02:00
MaBecker 9d57514058 add cs_CZ
with support from Standa
2020-04-03 20:34:38 +02:00
ArticNet 3b056d9e85 Added Dot Clock
initial release
2020-04-04 03:12:26 +09:00
Richard de Boer fc7e61e2ca Settings: minor reformat 2020-04-03 19:59:15 +02:00
Richard de Boer c135c70f7e Settings: load app settings in their own scope 2020-04-03 19:56:30 +02:00
Richard de Boer 6c58d955c6 Merge branch 'app_settings' into widbatpc 2020-04-03 19:33:05 +02:00
Richard de Boer 361d7b838f Merge branch 'master' into app_settings 2020-04-03 19:31:56 +02:00
Gordon Williams fbce9aaa7c stopwatch - Added widgets 2020-04-03 15:24:09 +01:00
Gordon Williams f66aab5823 Add page to export files from Stopwatch, save files in better format and with better filename 2020-04-03 15:15:06 +01:00
Gordon Williams 86ab3706ea Gadgetbridge App 'Connected' state is no longer toggleable 2020-04-03 13:42:31 +01:00
Gordon Williams 155270f668
Merge branch 'master' into call-notifications 2020-04-03 13:25:38 +01:00
MaBecker 7b79074cb7 add wigdet moon phase 2020-04-03 13:13:14 +02:00
Stefano Baldan 6bac8e982b RPG dice app 2020-04-03 11:37:43 +02:00
Paul Cockrell 50322a0f05 Lint 2020-04-03 09:18:05 +01:00
Paul Cockrell 4f60a45022 Bug fix - use 12 / 24 hr clock based on user settings 2020-04-03 09:16:22 +01:00
Gordon Williams b135c097cf Add unicode flags for Language 2020-04-03 08:16:42 +01:00
Gordon Williams a0ddb73d99
Merge pull request #197 from nic/patch-1
Addded Portuguese from Brazil 🇧🇷
2020-04-03 08:09:30 +01:00
nic 2ed00456bf
Addded Portuguese from Brazil 2020-04-03 00:34:18 -03:00
Richard de Boer bbc6cf35c1 Battery Widget with percentage: add settings (percentage/color/charger)
Depends on settings 0.08
2020-04-03 01:46:57 +02:00
Richard de Boer 39621bfae0 Settings: Add support for app/widget settings
Apps and widgets can add a `<appid>.settings.js` file which can be
opened from the "App/widget settings" submenu.
This file should define a single function to configure the app/widget.
The function is passed a `back` argument, which can be used to return to
the settings menu by calling `back()`.

Example `<appid>.settings.js`:
```
function settings(back) {
  const mySettingsMenu = {
    '': { 'title': 'My Widget' },
    '< Back': back, // go back to settings menu
    'Sound': {
      value: false,
      format: s => s ? 'on' : 'off',
      onchange: s => {if(s) Bangle.beep()} // TODO: save new value
    },
  };
  E.showMenu(mySettingsMenu)
}
```
2020-04-03 01:46:43 +02:00
Dimitri Gigot f143f3eac5 Increase version 2020-04-02 20:31:21 +00:00
Dimitri Gigot e7c8ea9813 add touch and swipe support 2020-04-02 20:29:37 +00:00
Gordon Williams 282ff71577
Merge pull request #190 from Purple-Tentacle/master
Moonphase, added GPS and more buttons
2020-04-02 20:37:18 +01:00
Gordon Williams 668f7bb549
Merge pull request #189 from Xaseron/gbridge
Gadgetbridge notification optimization
2020-04-02 20:36:35 +01:00
Gordon Williams 87f43ad21e
Merge branch 'master' into master 2020-04-02 20:35:34 +01:00
Gordon Williams 512045f54e
Merge pull request #184 from paulcockrell/master
Astrocalc, Sun and Moon info calculator
2020-04-02 20:32:11 +01:00
Purple-Tentacle 4792189adc
Merge pull request #3 from Purple-Tentacle/moonphase
Moonphase
2020-04-02 21:27:58 +02:00
Christian Hemker c7b5e3e586 added version information 2020-04-02 21:27:05 +02:00
Christian Hemker 5ad34face0 added gps 2020-04-02 21:23:04 +02:00
Michael Werner 9692204ce0 Bump Gadgetbridge version to 0.05 2020-04-02 21:20:56 +02:00
Michael Werner 792e79c3a8 Gbridge: Limit title length
Some group chats like in whatsapp have really long title as they consist of group chat name + person name
2020-04-02 21:20:56 +02:00
Michael Werner 8468899a80 Fix indention 2020-04-02 21:20:56 +02:00
Michael Werner 0af2cb7a6f Gbridge: change animation timeout
a litte bit slower animation looks more fluent
2020-04-02 21:20:56 +02:00
Dimitri Gigot dd93f2be15 add Toucher icon 2020-04-02 18:49:06 +00:00
Simon Weis d60af1dabd Remove lost break 2020-04-02 20:40:56 +02:00
Dimitri Gigot 0db4324e7b clean up 2020-04-02 18:38:12 +00:00
Simon Weis 63d4dbb101 Inline variables and restore notification code 2020-04-02 20:36:58 +02:00
Dimitri Gigot 44a94c8058 App: Toucher - Touch enabled launcher 2020-04-02 18:36:19 +00:00
ArPhil 8ff0ba0c59
Create ChangeLog 2020-04-02 20:09:24 +02:00
ArPhil 05a14ed2a2
Create app-icon.js 2020-04-02 19:58:29 +02:00
ArPhil b5a1909dbc
Add files via upload 2020-04-02 19:57:08 +02:00
ArPhil ea0cefaa64
Create app.js 2020-04-02 19:56:44 +02:00
Christian Hemker 8d84d4d0dd refactor, btn2 for today 2020-04-02 19:30:12 +02:00
MaBecker dea01151a9 switch_to_local_name 2020-04-02 17:16:01 +02:00
Gordon Williams 0c2708d46f
Merge branch 'master' into master 2020-04-02 14:30:24 +01:00
Gordon Williams c1a58c8471 Merge branch 'master' of github.com:espruino/BangleApps 2020-04-02 14:17:03 +01:00
Gordon Williams 3cb109f487 0.05: Inline locale details - faster, less memory overhead
Add correct scaling for speed/distance/temperature
2020-04-02 14:16:54 +01:00
Paul Cockrell 9727f68447 Update image to be compressed as image string 2020-04-02 14:00:28 +01:00
Paul Cockrell bcece63915 Load images in an efficient manner 2020-04-02 13:45:27 +01:00
Gordon Williams 91971a74b6
Merge pull request #180 from MaBecker/widget_30sec_hand_wash
widget hand wash timer
2020-04-02 12:47:39 +01:00
MaBecker ae5f8e8f08 widget hand wash timer 2020-04-02 13:41:28 +02:00
Paul Cockrell 538abc003a Revert test mode 2020-04-02 12:23:17 +01:00
Paul Cockrell fe0f189455 Re-add tests to take screen shots of app for PR 2020-04-02 12:15:10 +01:00
Paul Cockrell eb2450a177 Fix moon icon positioning 2020-04-02 12:12:27 +01:00
Paul Cockrell c42be52076 Create AstroCalc app. View info on the Sun and Moon from your wrist. 2020-04-02 11:59:40 +01:00
MaBecker bdfcea2bf7 widget hand wash timer 2020-04-02 12:04:41 +02:00
DerGuteWolf 9d136b2e28
Update ChangeLog 2020-04-02 10:25:22 +02:00
DerGuteWolf ec1e6bda82
Take into account discussion from #167
Using now weekday abbrev, space, short dateformat with full-year removed.
This should work for most locales (I hardcoded also replacing a trailing slash esp for en_IL and fr_FR)
2020-04-02 10:22:55 +02:00
Gordon Williams 3869998030 Add ChangeLog 2020-04-02 08:39:51 +01:00
Gordon Williams 257a8b2662 Copied widbat changes to new widget 2020-04-02 08:34:47 +01:00
Gordon Williams 42d0646383 Merge branch 'widbat' of https://github.com/rigrig/BangleApps into rigrig-widbat 2020-04-02 08:25:20 +01:00
Richard de Boer 09fc1f7d3e Battery Widget: Show battery percentage as text 2020-04-02 00:16:46 +02:00
Richard de Boer 2c84fbd3ae Battery Widget: make color depend on level 2020-04-02 00:12:48 +02:00
MaBecker 22d93ef884 widget hand wash timer 2020-04-01 22:23:33 +02:00
Christian Hemker 5829ed618d corrected image 2020-04-01 22:23:18 +02:00
Christian Hemker b0a0bf1ec0 changed calculation, new image 2020-04-01 22:10:18 +02:00
Christian Hemker fc409e3f77 changed calculation 2020-04-01 21:27:51 +02:00
Christian Hemker 40be3f0a27 calc to end of target day , default year 2020 2020-04-01 20:18:50 +02:00
Christian Hemker 143e3da6f6 test 2020-04-01 20:14:07 +02:00
Gordon Williams 6b775da0c1
Merge pull request #177 from marcocastignoli/master
Timer app
2020-04-01 14:50:48 +01:00
marcocastignoli 54c4e7aaf1 Rename timer to chrono 2020-04-01 15:40:43 +02:00
Richard de Boer 2c7696387a Bar clock: fix SyntaxError
Seems the app still works though
(Snuck in during code cleanup, I'm blaming autoformat)
2020-04-01 15:04:00 +02:00
marcocastignoli ef391cefbf Fix timer app 2020-04-01 14:22:25 +02:00
Richard de Boer 14faa1a4a3 Bar clock code cleanup 2020-04-01 14:16:35 +02:00
marcocastignoli edd1c0c7bb Add timer app 2020-04-01 14:16:06 +02:00
Richard de Boer fb20174508 Bar clock 0.03: Fix dates drawing over each other at midnight 2020-04-01 13:28:48 +02:00
Gordon Williams 7647c03a95
Merge pull request #171 from MaBecker/widget_tiny_battery
Widget tiny battery
2020-04-01 08:43:35 +01:00
MaBecker 253382bfe1 app widget tiniy battery 2020-04-01 09:38:41 +02:00
Gordon Williams a98973b3c4
Merge branch 'master' into cli-clock 2020-04-01 08:30:38 +01:00
Gordon Williams 9755eb3008
Merge pull request #173 from detached/gbridge-protocol-documentation
Documents gadgetbrigde protocol
2020-04-01 08:29:36 +01:00
Purple-Tentacle 389f566dde
Add files via upload 2020-03-31 23:31:24 +02:00
Purple-Tentacle 140b1458d8
Create ChangeLog 2020-03-31 23:30:42 +02:00
Purple-Tentacle b3da3806b2
Add files via upload 2020-03-31 23:17:46 +02:00
Purple-Tentacle 175c46fa28
Create ChangeLog 2020-03-31 23:16:36 +02:00
Simon Weis e8138d1665 Documents gadgetbrigde protocol 2020-03-31 22:13:21 +02:00
Pascal Gollnick b5bc339b16
Bugfix 2020-03-31 21:13:52 +02:00
Pascal Gollnick fab096441c
Update app.js 2020-03-31 20:29:51 +02:00
MaBecker 706a97a7b6 app widget tiniy battery 2020-03-31 20:22:56 +02:00
Pascal Gollnick 7d78869647
Update app.js 2020-03-31 20:21:09 +02:00
Pascal Gollnick b1585366c5
Update app.js 2020-03-31 20:13:35 +02:00
Gordon Williams e588f31257 Merge branch 'master' of github.com:espruino/BangleApps 2020-03-31 15:05:50 +01:00
Gordon Williams e2247b211d Provide an easy way to run code at boot time #163 2020-03-31 15:04:51 +01:00
Gordon Williams b6e6530724
Merge pull request #165 from nikmartin/patch-1
Analog clock updates
2020-03-31 14:46:40 +01:00
Gordon Williams dd0e3c89d1 Added showModal/hideModal utility functions
Added readStorageFile/eraseStorageFile to handle efficiently downloading large files (fix #119)
2020-03-31 14:39:59 +01:00
Nik Martin 8fce6d7f37
bring changelog from dev branch 2020-03-31 08:36:18 -05:00
Ákos Lukács e56035c7c9
Wrong long date pattern for HU locale
ooops :)
2020-03-31 13:17:59 +02:00
Gordon Williams cd89ff060a
Merge pull request #166 from rigrig/barclock
Create Bar Clock
2020-03-31 09:42:26 +01:00
Richard de Boer 54346977c4 Bar clock 0.02: Apply locale, 12-hour setting
Plus minor bar drawing improvement
2020-03-31 00:05:00 +02:00
DerGuteWolf 249eead69b
Update ChangeLog 2020-03-30 23:54:37 +02:00
DerGuteWolf 6176c16712
marioclock: use short date format from locale, take timeout from settings 2020-03-30 23:52:41 +02:00
Richard de Boer 277132e2a4 Create Bar Clock 2020-03-30 21:34:44 +02:00
Nik Martin 7070536dff add locales to Date display 2020-03-30 12:09:46 -05:00
Nik Martin 83b5b9b8aa
aclock refactor and updates
To get my feet wet with Espruino and my new Bangle.js, I dove into the analog clock code and enhanced and refactored a few things to simplify the interface, fix a few bugs, and improve readability: 

added date
added distinct hour markers
refactor timers down to a single timer
add elapsed seconds display
add date
2020-03-30 10:37:59 -05:00
Gordon Williams 7ff958ad2c Fixing sanitycheck errors from recent PRs 2020-03-30 16:23:45 +01:00
Purple-Tentacle e7282f8776
Create ChangeLog 2020-03-30 16:46:58 +02:00
Purple-Tentacle a03280c9cf
Delete app.png 2020-03-30 15:45:44 +02:00
Purple-Tentacle 0f73a3aa0f
Delete app.js 2020-03-30 15:45:35 +02:00
Purple-Tentacle 0aa9374ecb
Delete app-icon.js 2020-03-30 15:45:27 +02:00
Purple-Tentacle 6570eb499e
Add files via upload 2020-03-30 15:35:47 +02:00
Purple-Tentacle 0c6c6eb61e
Create app-icon.js 2020-03-30 15:34:58 +02:00
Purple-Tentacle 5399f15770
Create app.js 2020-03-30 15:28:28 +02:00
Purple-Tentacle c776cc9222
Update app.js 2020-03-30 15:25:40 +02:00
Gordon Williams 902694b1a0
Merge pull request #154 from oli-sanders/dclock
App: Dev clock
2020-03-30 08:51:23 +01:00
Gordon Williams e936aecf84
Merge pull request #153 from brainfart-be/master
App: Grocery
2020-03-30 08:48:56 +01:00
Gordon Williams 04c35b1aa7
Merge pull request #152 from Red-The-Hunter/master
Update of lap log feature stopwatch app
2020-03-30 08:43:54 +01:00
Gordon Williams 2eb6dc634a
Merge pull request #161 from MaBecker/widget_version_and_build
add widget version
2020-03-30 08:40:42 +01:00
Gordon Williams 441d5d1882 bump version 2020-03-30 08:39:59 +01:00
MaBecker f746b0c67c add widget version 2020-03-29 18:52:10 +02:00
Markus Deibel d273d8860b Re-enable buzzing 2020-03-29 09:33:52 +02:00
Markus Deibel 18abff1d2f Stupid coding error fixed 2020-03-29 09:22:36 +02:00
Markus Deibel 5507eb04be Only buzz on high confidence 2020-03-29 09:20:26 +02:00
Markus Deibel 7774b095b9 BTN2 handler 2020-03-29 09:05:23 +02:00
Markus Deibel 21b1eaa423 Fixes eventhandler for BTN2 2020-03-29 09:02:21 +02:00
Markus Deibel 0148330376 Uncomment app code again 2020-03-29 08:56:11 +02:00
Markus Deibel e23c1ad2e5 Icon 2020-03-29 08:53:33 +02:00
Markus Deibel 94f89db572 Icon 2020-03-29 08:51:49 +02:00
Markus Deibel 5d98017fe7 Icon 2020-03-29 08:50:15 +02:00
Markus Deibel bcce90d36d icon 2020-03-29 08:47:14 +02:00
Markus Deibel de60351507 Image icon code 2020-03-29 08:44:53 +02:00
Markus Deibel df3935e390 Icon file size reduced 2020-03-29 08:42:53 +02:00
Markus Deibel 0bfdb86fcb Fix remove unnecessary file and trim down App name 2020-03-29 08:04:30 +02:00
Markus Deibel 4a81104def Merge remote-tracking branch 'upstream/master' 2020-03-29 07:57:36 +02:00
Dimitri Gigot e97852cae4 Fixing issue #147 - No way to open launcher when no clock 2020-03-29 02:48:21 +00:00
Oliver Sanders a6fab96de9 Use localised month and day of the week from locale 2020-03-28 22:13:51 +00:00
Simon Weis 33a88627d9 Fix music notifications 2020-03-28 13:30:13 +01:00
Simon Weis b7b5d6764b Adds gbridge call notification and refactor widget 2020-03-28 13:12:59 +01:00
Red-The-Hunter 7bbc2e7eb1
Update ChangeLog 2020-03-28 12:21:58 +08:00
Red-The-Hunter 06b98f0043
Update stopwatch.js
Fixed bug where one could reset lap log even though timer is running
2020-03-28 12:14:40 +08:00
Red-The-Hunter be539e5993
Update stopwatch.js
-Swapped functions of BN1 and BN3
2020-03-28 12:12:22 +08:00
Red-The-Hunter 661eaa7c3a
Update ChangeLog 2020-03-28 11:57:32 +08:00
Red-The-Hunter 2c5983e3c1
Update stopwatch.js
- Remove ability to lap while stopped
- Added ability to save log of laps as dated json array while stopped
2020-03-28 11:07:14 +08:00
Oli Sanders 8aabcf28e8
dev clock (#13) 2020-03-27 23:53:38 +00:00
Dimitri Gigot c76280a2d5 merge 2020-03-27 20:35:48 +00:00
Dimitri Gigot 82feb3b7c1 rename the app to have a 7character name & fix issue with saving 2020-03-27 20:00:37 +00:00
Pascal Gollnick be1d8e76ce
Update app.js 2020-03-27 19:42:23 +01:00
Pascal Gollnick c07a7baeb9
Update app.js 2020-03-27 19:34:15 +01:00
Pascal Gollnick bcdd8c7be1
Update app.js 2020-03-27 19:00:12 +01:00
Red-The-Hunter 4696f7e4ec
Create ChangeLog
Changelog for updated Lap logging feature
2020-03-28 01:10:45 +08:00
Red-The-Hunter ad67db1a4a
Update stopwatch.js
Made lap entries count up from 1
Made lap entries scroll to 2nd column after 18th entry to allow for 36 lap entries before scrolling off-screen
2020-03-28 01:07:24 +08:00
Pascal Gollnick 563c445cab
Update app.js 2020-03-27 18:04:46 +01:00
Red-The-Hunter b47b5f5a4f
Update stopwatch.js 2020-03-28 01:00:49 +08:00
Pascal Gollnick b0f5c94789
Update app.js 2020-03-27 17:01:58 +01:00
Pascal Gollnick c6d4de79fe
Update app.js 2020-03-27 16:31:18 +01:00
Pascal Gollnick 09b25f0ab8
Update app.js 2020-03-27 13:06:02 +01:00
Pascal Gollnick 416164012e
Update app-icon.js 2020-03-27 13:04:56 +01:00
Pascal Gollnick 28cbad640a
Add files via upload 2020-03-27 13:01:21 +01:00
Pascal Gollnick ddc63d84a1
Create app-icon.js 2020-03-27 12:56:44 +01:00
Pascal Gollnick 6d8a1377db
Delete app.js.png 2020-03-27 12:54:03 +01:00
Pascal Gollnick 87c19f99c2
Add files via upload 2020-03-27 12:51:23 +01:00
Pascal Gollnick 8148cb02f6
Rename cliock.js to app.js 2020-03-27 12:46:14 +01:00
Pascal Gollnick 5031edbe62
Rename cliock.app.js to cliock.js 2020-03-27 12:46:02 +01:00
Pascal Gollnick 576bdece48
Update cliock.app.js 2020-03-27 12:20:53 +01:00
Pascal Gollnick 615a384acf
Create cliock.app.js 2020-03-27 12:19:26 +01:00
Gordon Williams f42d5ee570
Merge pull request #150 from paulcockrell/master
Add Mario Clock application
2020-03-27 07:46:47 +00:00
Markus Deibel 1a7fb5d2cc
Minor tweaks 2020-03-27 06:49:16 +01:00
Markus Deibel e799dfd206
Slight improvements to rendering 2020-03-27 06:23:43 +01:00
Paul Cockrell fa718d8746 Fix day of the week bug 2020-03-26 20:45:16 +00:00
Dimitri Gigot d0dd4b13af save on remove item 2020-03-26 19:35:17 +00:00
Paul Cockrell a78babc7b4 Add Mario Clock application
Mario Clock is a low-res (80x80) watch face with Mario running
through a level. He jumps to hit the bricks, which changes the
time displayed.

Pressing BTN1 will make Mario jump, and extend the display for
a futher 10 seconds.
2020-03-26 18:18:45 +00:00
Dimitri Gigot 770e6e2eda Change product list style 2020-03-26 17:20:23 +00:00
Dimitri Gigot 595fc18ea6 Groceries app 2020-03-26 17:03:53 +00:00
MaBecker a7a8e85c70 add function meridian 2020-03-26 08:43:54 +01:00
Gordon Williams 3762a7b91f
Merge pull request #139 from DerGuteWolf/patch-1
localize miclock
2020-03-25 22:41:57 +00:00
Gordon Williams a7109b4fbd Fix global 'locale' variable 2020-03-25 22:36:46 +00:00
Gordon Williams 755580f092 Fix locale.currencySym 2020-03-25 22:27:20 +00:00
msdeibel 1d339c825c Typo 2020-03-25 18:36:45 +01:00
msdeibel 1d3248882c Changelog updated 2020-03-25 18:16:37 +01:00
msdeibel 08cc44ce96 Render the background only once 2020-03-25 18:14:48 +01:00
DerGuteWolf e3ddf837a0
Changelog entry for 0.03 2020-03-25 16:47:14 +01:00
Gordon Williams a874d5838c Added vibrate as beep workaround 2020-03-25 11:05:33 +00:00
DerGuteWolf 0ddf93dd6e
localize miclock 2020-03-25 09:41:18 +01:00
Gordon Williams 04753a4627 Added changelog to last update 2020-03-25 07:49:34 +00:00
DerGuteWolf f1eefaac89
localize mclock date display 2020-03-24 23:33:50 +01:00
msdeibel 83ffb617f2 Energy saving 2020-03-24 17:34:27 +01:00
msdeibel cf64c1c2c0 Adapt to new code layout 2020-03-24 17:27:13 +01:00
msdeibel 94cd15c13f Merge branch 'master' of https://github.com/espruino/BangleApps
# Conflicts:
#	apps.json
2020-03-24 17:13:24 +01:00
Richard Gomez f8e6e5bb40 syntax error
correct syntax error on spanish locales
2020-03-23 22:22:34 +01:00
Ákos Lukács 59b4b5a4d9
locales -> added hu and fixed some typos 2020-03-22 15:46:04 +01:00
Gordon Williams 4e696f10ee
Merge pull request #132 from NullMember/patch-1
Deleting duplicate Changelog file
2020-03-19 08:13:40 +00:00
Malik Enes Safak b5492de2e2 Adding tr_TR 2020-03-18 20:46:04 +03:00
Malik Enes Şafak d8b782809a
Delete duplicate Changelog file
This file is duplicate of apps/gbridge/ChangeLog file
2020-03-18 20:06:37 +03:00
Gordon Williams d07dc1de6f Stop users calling save() (fix #125)
If Debug info is set to 'show' don't move to Terminal if connected!
2020-03-12 16:46:39 +00:00
Gordon Williams af686919a1 Remove distance setting as there's a separate app for Locale now 2020-03-10 12:35:45 +00:00
Gordon Williams b64ddff607 Final pixels 2020-03-10 10:23:02 +00:00
Gordon Williams 22a2f75bd4 Update about page pixels... 9 Mar 2020 2020-03-09 15:59:36 +00:00
Gordon Williams 23799fe9ab
Merge pull request #120 from sebi5361/master
New App: Heart Rate Recorder
2020-03-09 14:50:59 +00:00
Gordon Williams 0da0acefd2 Tweaks for issues redrawing after variable size widget addition (partial #121) 2020-03-09 14:30:56 +00:00
sebi 827fadeac0 Allow record numbered>10 to be downloaded (fix #117) 2020-03-09 13:46:01 +01:00
sebi 47575f0f80 New heart rate recorder app 2020-03-09 13:46:00 +01:00
Gordon Williams 0ebc1c3a50 Allow tracks numbered>10 to be downloaded (fix #117) 2020-03-09 12:28:04 +00:00
Gordon Williams b4a24b34d0 0.06: Ensure widget update itself (fix #118) and change to using icons 2020-03-09 09:54:54 +00:00
sebi f77816a1a6 Adjusting french locales 2020-03-08 11:39:13 +01:00
msdeibel 054a0c2142 Fixes resetHighlightTimeout method 2020-03-08 09:36:19 +01:00
msdeibel f740b4f577 Improves UX for highlighting the selected limit 2020-03-08 09:32:20 +01:00
msdeibel 79e70fc023 Fixes initial color for confidence bars 2020-03-07 07:35:20 +01:00
msdeibel 3ea8201714 Changes button positioning 2020-03-07 07:33:16 +01:00
msdeibel 74dc9e5cbc Rounds button corners and adds HW button icons 2020-03-07 07:18:33 +01:00
sebi 048a9bb64f Changing name from clck3x2 to clock2x3, setting clock type, simplifying app code 2020-03-06 17:09:45 +01:00
Gordon Williams f1ba5d8284 pixel update 2020-03-05 15:25:29 +00:00
Gordon Williams e0d29c81f2 Big refactor #2 - variable width widgets 2020-03-05 13:15:27 +00:00
Gordon Williams a772280871 Add ChangeLog checking 2020-03-05 13:15:03 +00:00
Gordon Williams 18a9f2c71f Allow translate to work even if not given a string 2020-03-05 10:01:16 +00:00
Gordon Williams 0232fc00cc Translate now returns untranslated text if it can't find a translation 2020-03-05 09:23:50 +00:00
Gordon Williams 1bf8ac0ed7 minor tweaks after merge 2020-03-05 08:27:49 +00:00
MaBecker ffc59450b5 widid
indent
2020-03-05 06:50:32 +01:00
MaBecker 98d5c25436 widid
ident and syntax
2020-03-05 06:48:50 +01:00
MaBecker 09f146cf63 widid 2020-03-04 21:14:49 +01:00
MaBecker 2c1397ab92 widid 2020-03-04 20:59:27 +01:00
Gordon Williams e0ccfe82e7 Added locale loader courtesy of @MaBe's extremely hard work! (ref #105) 2020-03-04 16:42:44 +00:00
Gordon Williams 909a2b4641 style 2020-03-04 16:41:10 +00:00
Gordon Williams b93c094340 Fix GPS apps if time not set in GPS (fix #110) 2020-03-04 15:04:21 +00:00
Gordon Williams 107d8ef7e0 Add torch app 2020-03-03 16:00:33 +00:00
Gordon Williams 7823f1cc83 Update examples to new firmware style 2020-03-03 15:58:52 +00:00
Gordon Williams b001cd5798 Fix issues if BLE=off, 'Make Connectable' is chosen, and the loader resets Bangle.js (fix #108) 2020-03-02 17:43:56 +00:00
Gordon Williams 441e518885 Alarm: fix More alarm scheduling issues 2020-03-02 17:32:01 +00:00
Gordon Williams 9a63beefb8 About app: Update version checker for new filename type 2020-03-02 17:16:51 +00:00
Gordon Williams e755d64cc1 tweak welcome app to cope with no JSON 2020-03-02 07:55:26 +00:00
msdeibel 73dc1d0a73 UI fixes and code cleanup 2020-03-01 21:14:35 +01:00
msdeibel 173d9a2dae Adds rounded corners for upper limit button 2020-03-01 12:10:17 +01:00
Gordon Williams 6cfe9c340b Take advantage of recent nonbreaking change that stops readJSON from causing errors 2020-02-28 17:02:26 +00:00