diff --git a/apps/grandfather-clock/ChangeLog b/apps/grandfather-clock/ChangeLog new file mode 100644 index 000000000..4c21f3ace --- /dev/null +++ b/apps/grandfather-clock/ChangeLog @@ -0,0 +1 @@ +0.01: New Widget! diff --git a/apps/grandfather-clock/README.md b/apps/grandfather-clock/README.md new file mode 100644 index 000000000..12ce92f9e --- /dev/null +++ b/apps/grandfather-clock/README.md @@ -0,0 +1,15 @@ +# Grandfather Clock + +A widget that runs in the background and chimes every 15mins (similar to Chimer), and counts out the fractions of an hour and the o'clock hour. + +## Usage + +Once installed, see the App Settings page for options. + +## Requests + +Drop me a message at @yogsoy on Discord if you need help / discover a bug that I can squash for you. + +## Creator + +Written by June B (yogsoy), inspired by aaronrolls' Chimer. diff --git a/apps/grandfather-clock/icon.png b/apps/grandfather-clock/icon.png new file mode 100644 index 000000000..582cb2e08 Binary files /dev/null and b/apps/grandfather-clock/icon.png differ diff --git a/apps/grandfather-clock/metadata.json b/apps/grandfather-clock/metadata.json new file mode 100644 index 000000000..f8fa52489 --- /dev/null +++ b/apps/grandfather-clock/metadata.json @@ -0,0 +1,14 @@ +{ "id": "grandfather-clock", + "name": "Grandfather Clock Bell Widget", + "shortName":"Grandfather Clock", + "version":"0.01", + "description": "A widget that chimes every 15mins (similar to Chimer), and counts out the fractions of an hour and the o'clock hour.", + "icon": "icon.png", + "type": "widget", + "tags": "widget", + "supports" : ["BANGLEJS2"], + "readme": "README.md", + "storage": [ + {"name":"grandfather-clock.wid.js","url":"widget.js"} + ] +} diff --git a/apps/grandfather-clock/widget.js b/apps/grandfather-clock/widget.js new file mode 100644 index 000000000..4a3b50f45 --- /dev/null +++ b/apps/grandfather-clock/widget.js @@ -0,0 +1,5 @@ +(() => { + + + +})()