Commit Graph

433 Commits (79f18015ef8ae54f9ff24eb1573fb2acb6f9bb8a)

Author SHA1 Message Date
MaBecker 3a70e315b8 update_app_miclock
no commands before jshint
2020-04-03 20:41:33 +02:00
ArticNet 3b056d9e85 Added Dot Clock
initial release
2020-04-04 03:12:26 +09: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
MaBecker 04cdb22447 add widget moon phase 2020-04-03 13:20:52 +02: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 4f60a45022 Bug fix - use 12 / 24 hr clock based on user settings 2020-04-03 09:16:22 +01: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
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
Michael Werner 9692204ce0 Bump Gadgetbridge version to 0.05 2020-04-02 21:20:56 +02:00
Dimitri Gigot 44a94c8058 App: Toucher - Touch enabled launcher 2020-04-02 18:36:19 +00:00
ArPhil 3ae9750152
Update apps.json 2020-04-02 20:05:02 +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 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
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 291342ea16
marioclock version 0.04 2020-04-02 10:26:13 +02: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 b0a0bf1ec0 changed calculation, new image 2020-04-01 22:10:18 +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 f5fde30320 Add description to timer app 2020-04-01 14:25:53 +02:00
marcocastignoli ef391cefbf Fix timer app 2020-04-01 14:22:25 +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
Gordon Williams a98973b3c4
Merge branch 'master' into cli-clock 2020-04-01 08:30:38 +01:00
Purple-Tentacle bdec833948
Update apps.json 2020-03-31 23:33:03 +02:00
Purple-Tentacle 87d5bfa915
Update apps.json 2020-03-31 23:19:44 +02:00
MaBecker bef9da2ff6 app widget tiniy battery 2020-03-31 20:37:10 +02:00
Pascal Gollnick e79aef56c9
Update apps.json 2020-03-31 20:31:13 +02:00
MaBecker 706a97a7b6 app widget tiniy battery 2020-03-31 20:22:56 +02:00
Pascal Gollnick 61c8d255e7
Update apps.json 2020-03-31 20:17:26 +02:00
Pascal Gollnick ad33990965
Update apps.json 2020-03-31 20:15:39 +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 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 0e8f9405d3
Update apps.json 2020-03-30 23:55:56 +02:00
Richard de Boer 277132e2a4 Create Bar Clock 2020-03-30 21:34:44 +02:00
Nik Martin 655488dc35
update apps.json
vBump aclock to 0.10
2020-03-30 10:48:22 -05:00
Gordon Williams 7ff958ad2c Fixing sanitycheck errors from recent PRs 2020-03-30 16:23:45 +01:00
Purple-Tentacle 02e9f6b285
Update apps.json 2020-03-30 16:52:22 +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 5507eb04be Only buzz on high confidence 2020-03-29 09:20:26 +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
Oliver Sanders a6fab96de9 Use localised month and day of the week from locale 2020-03-28 22:13:51 +00:00
Red-The-Hunter 11bf84f583
Update apps.json 2020-03-28 16:03:37 +08:00
Red-The-Hunter 72d0de30a5
Update apps.json 2020-03-28 11:58: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 e6274f267d
Update apps.json 2020-03-27 19:34:36 +01:00
Pascal Gollnick d21bb41c09
Update apps.json 2020-03-27 19:00:31 +01:00
Red-The-Hunter 30912d6825
Update apps.json
Updated Stopwatch app version
2020-03-28 01:13:27 +08:00
Pascal Gollnick b40f873108
Update apps.json 2020-03-27 18:05:12 +01:00
Pascal Gollnick b45c89ee0d
Update apps.json 2020-03-27 17:02:22 +01:00
Pascal Gollnick 3894a12033
Update apps.json 2020-03-27 16:31:42 +01:00
Pascal Gollnick a8d04e3552
Update apps.json 2020-03-27 13:06:33 +01:00
Pascal Gollnick 57be790c81
Update apps.json 2020-03-27 13:00:29 +01:00
Gordon Williams f42d5ee570
Merge pull request #150 from paulcockrell/master
Add Mario Clock application
2020-03-27 07:46:47 +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 595fc18ea6 Groceries app 2020-03-26 17:03:53 +00:00
Gordon Williams a55fb816a7 bump version 2020-03-26 08:15:34 +00: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 84f56faadf Fixed version for widid after errneous edit 2020-03-25 18:42:43 +01:00
msdeibel 8427b492ee Wohrm version updated 2020-03-25 18:39:42 +01:00
DerGuteWolf 58f57cb834
New Version 0.0.3 of miclock 2020-03-25 16:44:25 +01:00
Gordon Williams a874d5838c Added vibrate as beep workaround 2020-03-25 11:05:33 +00:00
Gordon Williams ecfb62bd76 oops - accidental commit 2020-03-25 08:18:40 +00:00
Gordon Williams 04753a4627 Added changelog to last update 2020-03-25 07:49:34 +00: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
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 2318d10a01 better titles 2020-03-10 15:34:07 +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 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 47575f0f80 New heart rate recorder app 2020-03-09 13:46:00 +01: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 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 c3d6513d92 keywords 2020-03-05 11:10:22 +00:00
Gordon Williams 1bf8ac0ed7 minor tweaks after merge 2020-03-05 08:27:49 +00:00
MaBecker 0da5b38b3e widid 2020-03-04 21:24:34 +01:00
MaBecker 54f5a3b8ea widid 2020-03-04 21:21:47 +01:00
MaBecker 2c1397ab92 widid 2020-03-04 20:59:27 +01:00
Gordon Williams ab356fd619 tweak for sanity checker 2020-03-04 16:46:49 +00: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 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 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 a2bcc84bea Merge remote-tracking branch 'upstream/master' 2020-02-28 16:37:57 +01:00
Gordon Williams 1354227b6a Fix issues with alarm scheduling 2020-02-28 15:34:31 +00:00
Gordon Williams 8220765c11 Added bin/sanitycheck.js to perform a bunch of tests to make sure everything is correct 2020-02-28 14:17:22 +00:00
Gordon Williams 122ee5342a fix pedometer naming 2020-02-28 12:18:19 +00:00
Gordon Williams 50e3c852fb MASSIVE REFACTOR
New Bangle.js firmwares remove 8 char name restriction so we're ditching the first char -> file type and using normal file extensions
Took the opportunity to remove code for older Bangle.js (since the new stuff won't work anyway)
Also removed the need for an 'app.json' - it's now renamed 'app.info' on the watch, and we just auto-generate it
Renamed a few apps so widgets all start with 'wid'
2020-02-28 11:44:25 +00:00
Gordon Williams 95a42582f3 Fix Settings json 2020-02-27 16:01:17 +00:00
Gordon Williams cea2c9f7ba Properly Fix GPS time display in gpsrec app (fix #98) 2020-02-25 14:01:40 +00:00
Gordon Williams 2775693936 BTN3 now won't restart when at the end of welcome screen 2020-02-25 13:35:10 +00:00
Gordon Williams 9a76d6d800 Disable GPS time log messages, add (default=1) setting to hide log messages 2020-02-25 13:34:06 +00:00
Gordon Williams f3efada354 0.03: Fix time output on new firmwares when no GPS time set (fix #104) 2020-02-24 17:04:01 +00:00
Gordon Williams f7024407de Fix GPS time display in gpsrec app (fix #98) 2020-02-24 16:54:37 +00:00
Markus Deibel 7386330f59
Allow running in the emulator for wohrm 2020-02-16 09:56:01 +01:00
Markus Deibel 18c69b9e67
Fixes type and tags for wohrm 2020-02-16 09:52:06 +01:00
Markus Deibel e562484360
Adds Workout Heart Rate Monitor App 2020-02-16 09:48:07 +01:00
Simon Weis 6a68e0c66a Add pipboy 2020-02-15 23:41:58 +01:00
Gordon Williams 604c89cbca Fix widget position increment 2020-02-13 14:03:42 +00:00
Gordon Williams a73fbbedf8 Tweaks... Add about page to default apps. 2020-02-13 13:50:06 +00:00
Gordon Williams 0541cc10cd Add heart rate widget 2020-02-13 12:08:35 +00:00
Gordon Williams c373c3150f fix coloring issue from GPS widget 2020-02-13 10:50:04 +00:00
Gordon Williams 2b94bdea41 Pedometer: Add foot icon, use tidier font, and move to the left of the screen 2020-02-13 10:39:57 +00:00
Gordon Williams 528d2f3910 welcome tweak 2020-02-13 09:56:42 +00:00
Gordon Williams 619786cae0 Ensure GPS time is logged correctly and fix output indentation (fix #98) 2020-02-13 09:34:30 +00:00
Gordon Williams 0ff6057971 fix issue with pedometer reset 2020-02-13 09:28:14 +00:00
Gordon Williams 07863bfe5d Update versions for last commits, add widget tag and allow some more stuff to be tried in the emulator 2020-02-13 09:14:42 +00:00
Gordon Williams 860da909bf Added welcome app (fix #96)
When installing default apps, update time
2020-02-13 08:18:46 +00:00
Gordon Williams d811c3d89e Add 'about' app, (fix #97) 2020-02-12 14:45:31 +00:00
Gordon Williams 899579e1b1 gadgetbridge widget now shows connection state (fix #77) 2020-02-12 14:44:55 +00:00
Gordon Williams 47205bfe61 Add alarms app (fix #83) 2020-02-12 10:48:14 +00:00
Gordon Williams e1ddfe8ac4 Merge branch 'master' of github.com:espruino/BangleApps 2020-02-10 13:50:20 +00:00
ra100 65634ecccb
gbridge: increase contrast 2020-02-10 12:44:22 +01:00
Gordon Williams 2bca5d4747 Working GPS track recording - just need to fix the 'interface.html' to do the comms and do something with the data collected 2020-02-07 17:16:45 +00:00
Gordon Williams d8e5af43be Remove 12h clock, change original 24h clock to read settings and present time accordingly (fix #82) 2020-02-07 14:02:00 +00:00
Gordon Williams 2b409db904 Merge branch 'master' of github.com:espruino/BangleApps 2020-02-07 13:48:10 +00:00
Gordon Williams e33202122b Store number of steps when unloading from memory (fix #84) 2020-02-07 13:45:10 +00:00
Gordon Williams 8b8147a543 docs 2020-02-05 15:45:41 +00:00
Gordon Williams ba3fd74ca7 Merge branch 'master' of github.com:espruino/BangleApps 2020-02-05 10:31:18 +00:00
Gordon Williams a180f98991 Simple example to control an Espruino device by setting a characteristic on it 2020-02-05 10:28:23 +00:00
Gordon Williams 0e7742d936 Add better sort orders for most people, and remove the HID minification hack as it's no longer needed 2020-02-04 16:15:37 +00:00
Gordon Williams 8992ad545a Add demo app 2020-01-30 17:05:53 +00:00
Gordon Williams 7f77ffa477 Fix 12h and 24h clocks, fix #81 2020-01-23 10:04:53 +00:00
Kristin Galvin c3b5b82765 audio test 2020-01-19 20:48:42 -08:00
Kristin Galvin b741df9a5f audio test 2020-01-19 20:46:11 -08:00
Kristin Galvin 8e63bac700 audio test 2020-01-19 20:43:47 -08:00
Kristin Galvin 09f78d3cc6 audio test 2020-01-19 20:42:00 -08:00
Kristin Galvin e949bfb3be audio test 2020-01-19 20:39:58 -08:00
Kristin Galvin 0624498947 audio test 2020-01-19 20:35:09 -08:00
Kristin Galvin 239209ba7b audio test 2020-01-19 20:30:20 -08:00
Kristin Galvin d749ba1a97 audio test 2020-01-19 20:26:06 -08:00
Kristin Galvin 4d5c8f5352 audio test 2020-01-19 18:34:37 -08:00
Kristin Galvin ee3b2c6034 audio test 2020-01-19 18:31:42 -08:00
Kristin Galvin 360100e22b audio test 2020-01-19 18:11:36 -08:00
Kristin Galvin 6bb8b9e5a0 audio test 2020-01-19 18:05:55 -08:00
Kristin Galvin 4b2d7d853c audio test 2020-01-19 18:02:41 -08:00
Kristin Galvin 61788e1749 audio test 2020-01-19 18:00:14 -08:00
Kristin Galvin 3d79e9ed1f audio test 2020-01-19 17:55:32 -08:00
Kristin Galvin b21e260a46 audio test 2020-01-19 17:53:20 -08:00
Kristin Galvin 6d7acb091d audio test 2020-01-19 17:50:49 -08:00
Kristin Galvin af4e047948 audio test 2020-01-19 17:45:07 -08:00
Kristin Galvin 9cf22a7328 updating master list 2020-01-19 16:59:27 -08:00
Gordon Williams 95d4c710bc Massive refactor - Make all clocks responsible for loading widgets if they want them, and for loading the launcher on BTN2.
Also make bootloader try and polyfill missing stuff from 2v04
2020-01-17 11:43:26 +00:00
Gordon Williams fbb18d1128 Blob clock tweaks 2020-01-16 16:01:29 +00:00
Gordon Williams 668aa08fb6 Flappy bird speed 2020-01-16 14:13:38 +00:00
Gordon Williams 49b3ea3be4 Tweaks to make flappy bird run with less RAM available 2020-01-08 11:34:55 +00:00
Gordon Williams ff80b48ed2 Rename clock to 7 character name 2020-01-08 11:33:35 +00:00
Gordon Williams 298bcc0c5c
Merge pull request #75 from aerialist/master
Add Bold clock app, Pedometer and Digital clock widgets
2020-01-06 09:24:27 +00:00
Gordon Williams f292905311
Merge pull request #74 from brainfoolong/master
clock: Centerclock - Simple digital clock with date
2020-01-06 09:18:31 +00:00
Gordon Williams 3ab56c7616
Merge pull request #70 from ryzokuken/apps/stclck
app: add a simple 12-hr clock
2020-01-06 09:17:44 +00:00
Shunya Sato b27ada31c6 Add Bold clock app, Pedometer and Digital clock widgets
Add Bold clock app
Add Pedometer widget
Add Digital clock widget
2020-01-05 11:48:37 +09:00
BrainFooLong 5b7727577c centerclock app updates 2020-01-03 21:55:25 +01:00
BrainFooLong cc818cb7db centerclock app updates 2020-01-03 21:19:32 +01:00
BrainFooLong 70ef71fb1d centerclock app updates 2020-01-03 18:20:44 +01:00
Ujjwal Sharma a6015a18e8
app: add a simple 12-hr clock 2019-12-19 04:33:00 +05:30
Ujjwal Sharma d483eb9064
feature: all thirty-minute timezones 2019-12-19 03:12:55 +05:30
Gordon Williams d306209da7 fix clock app 2019-12-17 16:56:59 +00:00
Gordon Williams bd3c1be003 Merge branch 'master' of github.com:espruino/BangleApps 2019-12-17 13:59:12 +00:00