-
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.
Merge pull request #612 from GiovanH/develop
2.5.2 -> 2.5.6
- Loading branch information
Showing
19 changed files
with
295 additions
and
95 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
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Release procedure | ||
|
||
Notes for maintaining repository release cadence: | ||
|
||
1. Update version number in `package.json`. (Must at least bump patch version.) | ||
2. Merge update into develop (for prerelease) or master (for full release) to trigger build workflow. | ||
3. Write release notes and publish the draft release created by the workflow | ||
4. Update flatpak metadata info (see `just xml_release`) | ||
5. Commit updated flatpak metadata to `origin/develop` | ||
6. Create pull request against flatpak repo (`see just flatpak`) using latest gh release for the asset and the latest `origin/develop` metadata for release notes. |
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,46 @@ | ||
app-id: dev.bambosh.UnofficialHomestuckCollection | ||
runtime: org.freedesktop.Platform | ||
runtime-version: "23.08" | ||
sdk: org.freedesktop.Sdk | ||
base: org.electronjs.Electron2.BaseApp | ||
base-version: "23.08" | ||
command: unofficial-homestuck-collection | ||
separate-locales: false | ||
finish-args: | ||
- --share=ipc | ||
- --socket=x11 | ||
- --socket=pulseaudio | ||
- --share=network | ||
- --device=dri | ||
- --filesystem=home | ||
build-options: | ||
env: | ||
pkgver: {{ pkgver }} | ||
modules: | ||
- name: unofficial-homestuck-collection | ||
buildsystem: simple | ||
builddir: true | ||
build-commands: | ||
- tar -xf unofficial-homestuck-collection-*.tar.gz | ||
- rm unofficial-homestuck-collection-*.tar.gz | ||
- cp -ar unofficial-homestuck-collection-${pkgver} ${FLATPAK_DEST}/unofficial-homestuck-collection | ||
- | | ||
for i in 16x16 24x24 32x32 48x48 64x64 128x128 256x256 512x512; do | ||
install -Dm644 build/icons/$i.png /app/share/icons/hicolor/$i/apps/dev.bambosh.UnofficialHomestuckCollection.png | ||
done | ||
- install -Dm644 build/dev.bambosh.UnofficialHomestuckCollection.metainfo.xml /app/share/metainfo/dev.bambosh.UnofficialHomestuckCollection.metainfo.xml | ||
- install -Dm644 build/dev.bambosh.UnofficialHomestuckCollection.desktop /app/share/applications/dev.bambosh.UnofficialHomestuckCollection.desktop | ||
- install -Dm755 unofficial-homestuck-collection ${FLATPAK_DEST}/bin | ||
sources: | ||
- type: file | ||
url: "{{ asset_url }}" | ||
sha256: "{{ asset_sha }}" | ||
# Required for icons, desktop file and appstream file | ||
- type: git | ||
url: https://github.com/GiovanH/unofficial-homestuck-collection.git | ||
commit: "{{ commit_hash }}" | ||
# Wrapper to launch the app | ||
- type: script | ||
dest-filename: unofficial-homestuck-collection | ||
commands: | ||
- zypak-wrapper.sh /app/unofficial-homestuck-collection/unofficial-homestuck-collection --disable-gpu-sandbox "$@" |
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
Oops, something went wrong.