-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add proper release documentation + add flatpak metainfo file
also add tests for the generated .desktop and .metainfo.xml files, that lint them
- Loading branch information
Showing
5 changed files
with
140 additions
and
11 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<component type="desktop-application"> | ||
<id>@APP_ID@</id> | ||
<name>OOPetris</name> | ||
<summary>A Tetris clone in OOP</summary> | ||
<metadata_license>MIT</metadata_license> | ||
<project_license>MIT</project_license> | ||
<supports> | ||
<control>pointing</control> | ||
<control>keyboard</control> | ||
<control>touch</control> | ||
<control>gamepad</control> | ||
</supports> | ||
<description> | ||
<p> | ||
A Tetris clone in OOP | ||
</p> | ||
</description> | ||
<launchable type="desktop-id">@[email protected]</launchable> | ||
<content_rating type="oars-1.0" /> | ||
<releases> | ||
<release date="2022-03-01" version="0.0.1"/> | ||
<release version="0.5.6" date="2024-05-17"> | ||
<url type="details">https://github.com/OpenBrickProtocolFoundation/oopetris/releases/tag/0.5.6</url> | ||
</release> | ||
</releases> | ||
<url type="homepage">https://oopetris.totto.lt/</url> | ||
<url type="bugtracker">https://github.com/OpenBrickProtocolFoundation/oopetris/issues</url> | ||
<url type="contribute">https://github.com/OpenBrickProtocolFoundation/oopetris/pulls</url> | ||
<url type="vcs-browser">https://github.com/OpenBrickProtocolFoundation/oopetris</url> | ||
</component> |
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,45 @@ | ||
<!-- LTeX: enabled=true, language=en --> | ||
|
||
# OOPetris Releases | ||
|
||
|
||
We support multiple platforms and different types of executables / packages. | ||
So here is a list of supported "package managers" / installation platforms. | ||
|
||
## Android / FDroid | ||
|
||
> [!NOTE] | ||
> This is still WIP | ||
## Linux / Flatpak | ||
|
||
We provide stable and beta releases via 2 remotes: | ||
|
||
To use the stable version, use this repo: | ||
|
||
```bash | ||
flatpak remote-add --if-not-exists oopetris-stable https://oopetris.totto.lt/repo/assets/oopetris.stable.flatpakrepo | ||
|
||
``` | ||
|
||
And to use beta version: | ||
|
||
```bash | ||
flatpak remote-add --if-not-exists oopetris-beta https://oopetris.totto.lt/repo/assets/oopetris.beta.flatpakrepo | ||
|
||
``` | ||
|
||
Than install it by using this command: | ||
|
||
```bash | ||
flatpak install -v com.github.mgerhold.OOPetris | ||
``` | ||
|
||
To update use the normal flatpak update command, keep in mind, that the bet may be unstable and break things, use with caution! | ||
|
||
## Other | ||
|
||
> [!NOTE] | ||
> This is still WIP | ||
All other platforms have more difficult to support auto update capabilities, so you can find more on our [website](https://oopetris.totto.lt/releases). |
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