Skip to content
Open
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
15 changes: 9 additions & 6 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Bug Report
description: Help improve Reminders by filing a bug report
description: Help improve Retainer by filing a bug report
title: "[Bug]: "
labels: ["bug"]
body:
Expand All @@ -8,26 +8,27 @@ body:
value: |
## System information

Make sure you have tested the Flatpak release of Reminders through Flathub before opening a bug report. If the bug is not present in the Flatpak open the report with the package maintainer.
If on Linux, make sure you have tested the Flatpak release of Retainer through Flathub before opening a bug report. If the bug is not present in the Flatpak open the report with the package maintainer.

- type: dropdown
id: package
attributes:
label: Package
description: |
Where did you install Reminders from?
Where did you install Retainer from?
options:
- Flathub
- Flathub Beta
- Windows Store
validations:
required: true

- type: input
id: distro
attributes:
label: Distribution
label: OS
description: What distribution are you currently using?
placeholder: Fedora 37, Ubuntu 22.04, Arch Linux...
placeholder: Fedora 37, Ubuntu 22.04, Windows 10...
validations:
required: true

Expand Down Expand Up @@ -63,7 +64,9 @@ body:
attributes:
label: Logs
description: |
If you saw an error dialog, click view error and copy the text here. Otherwise you can run something like `sudo journalctl --boot | grep remembrance | grep -i error` in the terminal to see the errors and copy that here.
If you can access the about page, you can also view logs by going to About > Troubleshooting > Debugging Information.
On Windows you can find these logs by pressing `Windows Key + r` and entering `%LOCALAPPDATA%`, and then navigating to `retainerdevs.Retainer_8mcfc8dhbzctc\LocalState\retainer`.
On Linux the logs are at `~/.var/app/io.github.retainerdevs.Retainer/data/retainer`.
render: shell
validations:
required: false
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Feature Request
description: Suggest an idea for improving Reminders
description: Suggest an idea for improving Retainer
title: "[Request]: "
labels: ["enhancement"]

Expand Down
16 changes: 11 additions & 5 deletions .github/workflows/flatpak_builder.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
on:
push:
branches: [main]
branches:
- main
paths:
- 'src/**'
- 'data/**'
- 'flatpak/**'
- 'meson.build'
pull_request:
name: CI

name: Flatpak
jobs:
flatpak:
name: "Flatpak"
runs-on: ubuntu-latest
container:
image: bilelmoussaoui/flatpak-github-actions:gnome-44
Expand All @@ -14,6 +20,6 @@ jobs:
- uses: actions/checkout@v3
- uses: bilelmoussaoui/flatpak-github-actions/flatpak-builder@v6.1
with:
bundle: Reminders.flatpak
manifest-path: flatpak/io.github.remindersdevs.Reminders.yml
bundle: Retainer.flatpak
manifest-path: flatpak/io.github.retainerdevs.Retainer.Devel.yml
cache-key: flatpak-builder-${{ github.sha }}
24 changes: 24 additions & 0 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
on:
push:
branches:
- main
paths:
- 'src/**'
- 'data/**'
- 'windows/**'
- 'meson.build'
pull_request:

name: Windows
jobs:
windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: msys2/setup-msys2@v2
with:
update: true
- uses: microsoft/setup-msbuild@v1.1
- name: Build
run: |
msbuild Retainer.sln -property:Platform=x64 -property:Configuration=Devel
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
build
build-dir
.flatpak-builder
.vs
Loading