Skip to content

Commit df7243a

Browse files
authored
Merge pull request #69 from ellie-commons/master
Master
2 parents 70f27af + 9589cc0 commit df7243a

File tree

7 files changed

+24
-17
lines changed

7 files changed

+24
-17
lines changed

.github/workflows/CI.yml

Lines changed: 8 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,20 @@
1-
---
2-
31
name: CI
42

53
on:
6-
push:
7-
branches:
8-
- main
4+
pull_request:
5+
branches: [ main ]
6+
types:
7+
- opened
8+
- reopened
9+
- synchronize
910

1011
jobs:
1112
flatpak:
1213
name: Flatpak
1314
runs-on: ubuntu-latest
1415

15-
strategy:
16-
matrix:
17-
arch: [x86_64]
18-
# Don't fail the whole workflow if one architecture fails
19-
fail-fast: false
20-
2116
container:
22-
image: ghcr.io/elementary/flatpak-platform/runtime:8-${{ matrix.arch }}
17+
image: ghcr.io/elementary/flatpak-platform/runtime:8
2318
options: --privileged
2419

2520
steps:
@@ -29,11 +24,9 @@ jobs:
2924
- name: Build
3025
uses: flatpak/flatpak-github-actions/flatpak-builder@v6
3126
with:
32-
bundle: jorts.flatpak
27+
bundle: reminduck.flatpak
3328
manifest-path: io.github.ellie_commons.reminduck.yml
3429
run-tests: true
3530
repository-name: appcenter
3631
repository-url: https://flatpak.elementary.io/repo.flatpakrepo
3732
cache-key: "flatpak-builder-${{ github.sha }}"
38-
branch: daily
39-
arch: ${{ matrix.arch }}

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,3 +70,12 @@ On elementary OS or with its appcenter remote installed
7070
```bash
7171
flatpak-builder --force-clean --user --install-deps-from=appcenter --install builddir ./io.github.ellie_commons.reminduck.yml
7272
```
73+
74+
## ACKNOWLEDGMENTS
75+
76+
(NOT YET IMPLEMENTED)
77+
Quack sound: https://pixabay.com/sound-effects/075176-duck-quack-40345/
78+
79+
Sound Effect by <a href="https://pixabay.com/users/freesound_community-46691455/?utm_source=link-attribution&utm_medium=referral&utm_campaign=music&utm_content=40345">freesound_community</a> from <a href="https://pixabay.com//?utm_source=link-attribution&utm_medium=referral&utm_campaign=music&utm_content=40345">Pixabay</a>
80+
81+

data/io.github.ellie_commons.reminduck.gresource.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@
33
<gresource prefix="/io/github/ellie_commons/reminduck">
44
<file alias="AppIcon.png">icons/scalable.svg</file>
55
<file alias="stylesheet.css">stylesheet.css</file>
6+
<file alias="quack.mp3">quack.mp3</file>
67
</gresource>
7-
</gresources>
8+
</gresources>

data/io.github.ellie_commons.reminduck.metainfo.xml.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<name>Reminduck</name>
88
<summary>Remember your stuff in an adorably annoying way</summary>
99
<description>
10-
<p>Reminduck is a simple reminder app made to be quick and easy - it focuses on simple or recurrent reminders with set time and date and nothing else.</p>
10+
<p>A simple reminder app made to be quick and easy - Reminduck focuses on simple or recurrent reminders with set time and date and nothing else.</p>
1111

1212
<p>It's perfect if all you want are simple or daily/weekly/monthly reminders. Anything more than that is not achievable by Reminduck right now - but you can help! Open an issue or a pull request if you have any ideas or requests.</p>
1313

data/quack.mp3

60.9 KB
Binary file not shown.

io.github.ellie_commons.reminduck.flathub.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ finish-args:
1313
- '--socket=wayland'
1414
# Required to send notifications
1515
- '--socket=session-bus'
16+
# Required to do a quack sound
17+
- '--socket=pulseaudio'
1618
cleanup:
1719
- '/include'
1820
- '/lib/pkgconfig'

io.github.ellie_commons.reminduck.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ finish-args:
1010
- '--socket=wayland'
1111
# Required to send notifications
1212
- '--socket=session-bus'
13+
# Required to do a quack sound
14+
- '--socket=pulseaudio'
1315
cleanup:
1416
- '/include'
1517
- '/lib/pkgconfig'

0 commit comments

Comments
 (0)