mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2024-11-24 15:05:39 +00:00
Fixing the mess after the merge (hopefully)
This commit is contained in:
parent
6c5a9175d1
commit
e3ae6b6d57
1
.github/workflows/cooker-selfhosted.yml
vendored
1
.github/workflows/cooker-selfhosted.yml
vendored
|
@ -151,4 +151,3 @@ jobs:
|
|||
name: retrodeck-flatpak
|
||||
path: RetroDECK-cooker.flatpak
|
||||
continue-on-error: true
|
||||
|
||||
|
|
2
.github/workflows/main-selfhosted.yml
vendored
2
.github/workflows/main-selfhosted.yml
vendored
|
@ -125,4 +125,4 @@ jobs:
|
|||
with:
|
||||
name: retrodeck-flatpak
|
||||
path: RetroDECK.flatpak
|
||||
continue-on-error: true
|
||||
continue-on-error: true
|
|
@ -92,4 +92,4 @@ Please check out the [Wiki](https://retrodeck.readthedocs.io/en/latest/) for eve
|
|||
The RetroDECK [FAQ](https://retrodeck.readthedocs.io/en/latest/wiki_howto_faq/faq/) on the wiki has a vast variety of questions and awnsers.
|
||||
|
||||
# How to get support?
|
||||
Use the supports channels on [Discord](https://discord.gg/Dz3szYsP8g) `🤝-community-support` and `🆘-support`.
|
||||
Use the supports channels on [Discord](https://discord.gg/Dz3szYsP8g) `🤝-community-support` and `🆘-support`.
|
|
@ -29,6 +29,6 @@ fetch_manifest_version(){
|
|||
# Use awk to extract the value of the first iteration of VERSION variable
|
||||
manifest_version=$(echo "$manifest_content" | awk '/VERSION=/ && !/#/ { sub(/.*VERSION=/, ""); sub(/#.*/, ""); print; exit }')
|
||||
# Trim leading and trailing whitespace
|
||||
manifest_version=$(echo "$manifest_version" | awk '{gsub(/[^0-9.a-zA-Z]/,""); print}')
|
||||
manifest_version=$(echo "$manifest_version" | awk '{$1=$1;print}')
|
||||
echo "$manifest_version"
|
||||
}
|
||||
|
|
|
@ -34,7 +34,7 @@ finish-args:
|
|||
- --talk-name=org.freedesktop.login1.Manager
|
||||
- --talk-name=org.freedesktop.portal.Flatpak.UpdateMonitor
|
||||
- --filesystem=xdg-run/app/com.discordapp.Discord:create
|
||||
- --filesystem=xdg-config/gtk-3.0:ro
|
||||
#- --filesystem=xdg-config/gtk-3.0:ro #not needed as we got --filesystem=home
|
||||
# Dolphin
|
||||
- --allow=bluetooth
|
||||
# PPSSPP
|
||||
|
@ -79,15 +79,15 @@ modules:
|
|||
# The version number is hardcoded in /app/retrodeck/version
|
||||
#
|
||||
# UPDATE STEPS FOR MAIN:
|
||||
# [x] Update the VERSION variable on line containing "VERSION=THISBRANCH"
|
||||
# [x] Update the appdata.xml with the version number and notes
|
||||
# [X] Update the VERSION variable on line containing "VERSION=THISBRANCH"
|
||||
# [X] Update the appdata.xml with the version number and notes
|
||||
#
|
||||
- name: version-initialization
|
||||
buildsystem: simple
|
||||
build-commands:
|
||||
- |
|
||||
|
||||
# on main please update this with the version variable, eg: VERSI0N='0.7.5b'
|
||||
# on main please update this with the version variable, eg: VERSION='0.7.4b'
|
||||
# on cooker will be THISBRANCH
|
||||
VERSION="0.7.5b"
|
||||
|
||||
|
|
Loading…
Reference in a new issue