Skip to content

Commit 3479c79

Browse files
author
thyttan
committed
Merge remote-tracking branch 'upstream/master' into spotrem
2 parents 91a6b9d + ab0f584 commit 3479c79

File tree

188 files changed

+3586
-570
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

188 files changed

+3586
-570
lines changed

.github/pull_request_template.md

Lines changed: 15 additions & 0 deletions

.github/workflows/pr-tagging.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Tag app authors
2+
3+
on:
4+
pull_request:
5+
types: [opened, synchronize]
6+
7+
permissions:
8+
issues: write
9+
pull-requests: write
10+
11+
jobs:
12+
mention-app-authors:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v4
16+
17+
- name: Install deps
18+
run: |
19+
sudo apt-get update
20+
sudo apt-get install -y jq nodejs
21+
22+
- name: Fetch relevant refs
23+
run: |
24+
# fetch master and unshallow HEAD
25+
git fetch origin --unshallow
26+
27+
- name: Tag app authors
28+
env:
29+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
30+
REPO: ${{ github.repository }}
31+
PR_NUM: ${{ github.event.pull_request.number }}
32+
run: node bin/pr-tag.js

README.md

Lines changed: 1 addition & 0 deletions

apps/_example_app/metadata.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"name": "My app's human readable name",
33
"shortName":"Short Name",
44
"version":"0.01",
5+
"author": "gfwilliams",
56
"description": "A detailed description of my great app",
67
"icon": "app.png",
78
"tags": "",

apps/_example_clkinfo/metadata.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"name": "My clock info's human readable name",
33
"shortName":"Short Name",
44
"version":"0.01",
5+
"author": "gfwilliams",
56
"description": "A detailed description of my clock info",
67
"icon": "icon.png",
78
"type": "clkinfo",

apps/_example_clock/metadata.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"name": "My clock human readable name",
33
"shortName":"Short Name",
44
"version":"0.01",
5+
"author": "gfwilliams",
56
"description": "A detailed description of my clock",
67
"icon": "icon.png",
78
"screenshots": [{"url":"screenshot.png"}],

apps/_example_widget/metadata.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"name": "My widget's human readable name",
33
"shortName":"Short Name",
44
"version":"0.01",
5+
"author": "gfwilliams",
56
"description": "A detailed description of my great widget",
67
"icon": "icon.png",
78
"type": "widget",

apps/antonclk/ChangeLog

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,4 @@
1414
0.10: Use Bangle.setUI({remove:...}) to allow loading the launcher without a full reset on 2v16
1515
0.11: Moved enhanced Anton clock to 'Anton Clock Plus' and stripped this clock back down to make it faster for new users (270ms -> 170ms)
1616
Modified to avoid leaving functions defined when using setUI({remove:...})
17+
0.12: Pass in `redraw` to allow `Bangle.uiRedraw()` to redraw the clock

apps/antonclk/app.js

Lines changed: 3 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apps/antonclk/metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "antonclk",
33
"name": "Anton Clock",
4-
"version": "0.11",
4+
"version": "0.12",
55
"description": "A simple clock using the bold Anton font. See `Anton Clock Plus` for an enhanced version",
66
"icon": "app.png",
77
"screenshots": [{"url":"screenshot.png"}],

0 commit comments

Comments
 (0)