-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1.2.3: Make domain name configurable (#31)
* Make domain name configurable * Bump version * Add Flatpak workflow * Remove legacy build CI * Revert Granite version change
- Loading branch information
1 parent
de37b25
commit 00eb634
Showing
11 changed files
with
93 additions
and
101 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
name: Flatpak | ||
|
||
on: [push, pull_request] | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
flatpak: | ||
runs-on: ubuntu-latest | ||
|
||
container: | ||
image: bilelmoussaoui/flatpak-github-actions:gnome-42 | ||
options: --privileged | ||
|
||
strategy: | ||
matrix: | ||
arch: [x86_64, aarch64] | ||
# Don't fail the whole workflow if one architecture fails | ||
fail-fast: false | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Install deps | ||
run: | | ||
dnf -y install docker | ||
if: ${{ matrix.arch == 'aarch64' }} | ||
|
||
- name: Set up QEMU | ||
id: qemu | ||
uses: docker/setup-qemu-action@v1 | ||
with: | ||
platforms: arm64 | ||
if: ${{ matrix.arch == 'aarch64' }} | ||
|
||
- uses: bilelmoussaoui/flatpak-github-actions/flatpak-builder@v4 | ||
with: | ||
bundle: plausible-${{ matrix.arch }}.flatpak | ||
manifest-path: com.cassidyjames.plausible.json | ||
cache-key: "flatpak-builder-${{ github.sha }}" | ||
arch: ${{ matrix.arch }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
name: CI | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
lint: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: valalang/lint | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: Lint | ||
run: io.elementary.vala-lint -d . |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- Copyright 2021 Cassidy James Blaede <[email protected]> --> | ||
<!-- Copyright 2021–2022 Cassidy James Blaede <[email protected]> --> | ||
<component type="desktop"> | ||
<id>com.cassidyjames.plausible</id> | ||
<name>Plausible</name> | ||
|
@@ -9,7 +9,7 @@ | |
<description> | ||
<p>Hybrid native + web app for Plausible Analytics, the lightweight and open-source website analytics tool. This app wraps the Plausible web app in a native UI, integrating better with desktop operating systems. Native features include:</p> | ||
<ul> | ||
<li>Icon in your Applications Menu, Dock, etc.</li> | ||
<li>Icon in your App Grid, Applications Menu, Dash, Dock, etc.</li> | ||
<li>Native header bar with buttons for account settings and logging out</li> | ||
<li>Save and restore current view, size, and position when closed and opened</li> | ||
<li>Two-finger swipe to go back/forward between views</li> | ||
|
@@ -30,6 +30,11 @@ | |
<control>touch</control> | ||
</recommends> | ||
<releases> | ||
<release version="1.2.3" date="2022-11-30"> | ||
<description> | ||
<p>Under-the-hood update to prepare for custom domains</p> | ||
</description> | ||
</release> | ||
<release version="1.2.2" date="2021-03-24"> | ||
<description> | ||
<p>Fix background color of loading screen</p> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
project( | ||
'com.cassidyjames.plausible', | ||
'vala', 'c', | ||
version: '1.2.2' | ||
version: '1.2.3' | ||
) | ||
|
||
gnome = import('gnome') | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters