Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 8 additions & 15 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -1,25 +1,20 @@
---

name: CI

on:
push:
branches:
- main
pull_request:
branches: [ main ]
types:
- opened
- reopened
- synchronize

jobs:
flatpak:
name: Flatpak
runs-on: ubuntu-latest

strategy:
matrix:
arch: [x86_64]
# Don't fail the whole workflow if one architecture fails
fail-fast: false

container:
image: ghcr.io/elementary/flatpak-platform/runtime:8-${{ matrix.arch }}
image: ghcr.io/elementary/flatpak-platform/runtime:8
options: --privileged

steps:
Expand All @@ -29,11 +24,9 @@ jobs:
- name: Build
uses: flatpak/flatpak-github-actions/flatpak-builder@v6
with:
bundle: jorts.flatpak
bundle: reminduck.flatpak
manifest-path: io.github.ellie_commons.reminduck.yml
run-tests: true
repository-name: appcenter
repository-url: https://flatpak.elementary.io/repo.flatpakrepo
cache-key: "flatpak-builder-${{ github.sha }}"
branch: daily
arch: ${{ matrix.arch }}
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,3 +70,12 @@ On elementary OS or with its appcenter remote installed
```bash
flatpak-builder --force-clean --user --install-deps-from=appcenter --install builddir ./io.github.ellie_commons.reminduck.yml
```

## ACKNOWLEDGMENTS

(NOT YET IMPLEMENTED)
Quack sound: https://pixabay.com/sound-effects/075176-duck-quack-40345/

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>


3 changes: 2 additions & 1 deletion data/io.github.ellie_commons.reminduck.gresource.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
<gresource prefix="/io/github/ellie_commons/reminduck">
<file alias="AppIcon.png">icons/hicolor/io.github.ellie_commons.reminduck.png</file>
<file alias="stylesheet.css">stylesheet.css</file>
<file alias="quack.mp3">quack.mp3</file>
</gresource>
</gresources>
</gresources>
2 changes: 1 addition & 1 deletion data/io.github.ellie_commons.reminduck.metainfo.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<name>Reminduck</name>
<summary>Remember your stuff in an adorably annoying way</summary>
<description>
<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>
<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>

<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>

Expand Down
Binary file added data/quack.mp3
Binary file not shown.
2 changes: 2 additions & 0 deletions io.github.ellie_commons.reminduck.flathub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ finish-args:
- '--socket=wayland'
# Required to send notifications
- '--socket=session-bus'
# Required to do a quack sound
- '--socket=pulseaudio'
cleanup:
- '/include'
- '/lib/pkgconfig'
Expand Down
2 changes: 2 additions & 0 deletions io.github.ellie_commons.reminduck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ finish-args:
- '--socket=wayland'
# Required to send notifications
- '--socket=session-bus'
# Required to do a quack sound
- '--socket=pulseaudio'
cleanup:
- '/include'
- '/lib/pkgconfig'
Expand Down