-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix compilation error * Use libhandy * Add support for dark mode * Use Granite style classes * Satisfy linter * Delete Travis CI * Add Flatpak manifest * Delete debian packaging * Update Flatpak manifest * Update GitHub CI * Update README.md * Use RDNN * Use daily as runtime-version * Update main.yml * Update runtime version * Add stripe key * Update stripe key * Update AppCenter colors * Fix icon * Improve tooling * Update .gitignore * MainWindow: Remove WindowHandle * GitHub CI: Add build for ARM * Add gettext domain * Flatpak: Update runtime to 6.1 * Rebrand to own domain * Rename files * DevicePage: Fix compiler warnings for debug mode * Fix icon path * Update screenshots
- Loading branch information
1 parent
0ed206a
commit b3cce7a
Showing
89 changed files
with
754 additions
and
888 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,58 @@ | ||
name: CI | ||
|
||
on: | ||
pull_request: | ||
types: | ||
- opened | ||
- reopened | ||
- synchronize | ||
|
||
jobs: | ||
flatpak: | ||
name: Flatpak | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
arch: [x86_64, aarch64] | ||
# Don't fail the whole workflow if one architecture fails | ||
fail-fast: false | ||
|
||
container: | ||
image: ghcr.io/elementary/flatpak-platform/runtime:6-${{ matrix.arch }} | ||
options: --privileged | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up QEMU for aarch64 emulation | ||
if: ${{ matrix.arch != 'x86_64' }} | ||
uses: docker/setup-qemu-action@v1 | ||
with: | ||
platforms: arm64 | ||
|
||
- name: Build | ||
uses: bilelmoussaoui/flatpak-github-actions/flatpak-builder@v4 | ||
with: | ||
bundle: com.manexim.home.flatpak | ||
manifest-path: com.manexim.home.yml | ||
run-tests: true | ||
repository-name: appcenter | ||
repository-url: https://flatpak.elementary.io/repo.flatpakrepo | ||
cache-key: "flatpak-builder-${{ github.sha }}" | ||
arch: ${{ matrix.arch }} | ||
|
||
lint: | ||
name: Lint | ||
runs-on: ubuntu-latest | ||
|
||
container: | ||
image: valalang/lint | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
*~ | ||
build/ | ||
src/Application | ||
build | ||
build-dir | ||
.flatpak-builder | ||
repo/ | ||
*.flatpak |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
// See https://go.microsoft.com/fwlink/?LinkId=733558 | ||
// for the documentation about the tasks.json format | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "Build & Run", | ||
"type": "shell", | ||
"command": "./app build && ./app install && ./app run", | ||
"problemMatcher": [], | ||
"group": { | ||
"kind": "build", | ||
"isDefault": true | ||
} | ||
} | ||
] | ||
} |
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#!/bin/bash | ||
|
||
# fail on first error | ||
set -e | ||
|
||
APP=com.manexim.home | ||
|
||
case "$1" in | ||
build) | ||
flatpak-builder --repo=repo build ${APP}.yml --force-clean | ||
flatpak build-bundle repo ${APP}.flatpak --runtime-repo=https://flatpak.elementary.io/repo.flatpakrepo ${APP} master | ||
;; | ||
install) | ||
flatpak install --user -y ${APP}.flatpak | ||
;; | ||
run) | ||
flatpak run ${APP} | ||
;; | ||
esac |
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,16 @@ | ||
app-id: com.manexim.home | ||
runtime: io.elementary.Platform | ||
runtime-version: '6.1' | ||
sdk: io.elementary.Sdk | ||
command: com.manexim.home | ||
finish-args: | ||
- '--share=ipc' | ||
- '--share=network' | ||
- '--socket=fallback-x11' | ||
- '--socket=wayland' | ||
modules: | ||
- name: home | ||
buildsystem: meson | ||
sources: | ||
- type: dir | ||
path: . |
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
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
data/com.github.manexim.home.gschema.xml → data/com.manexim.home.gschema.xml
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.