mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2024-11-21 21:45:39 +00:00
Merge branch 'cooker-0.8.0b' into feat/mame
This commit is contained in:
commit
b690ef3dc2
|
@ -2,10 +2,8 @@
|
|||
|
||||
# This is building the bundle RetroDECK.flatpak after the download and build steps are done
|
||||
|
||||
if [[ "${GITHUB_REF##*/}" == "main" ]]; then
|
||||
flatpak = "RetroDECK.flatpak"
|
||||
if [ "${GITHUB_REF##*/}" = "main" ]; then
|
||||
flatpak build-bundle ${GITHUB_WORKSPACE}/local RetroDECK.flatpak net.retrodeck.retrodeck
|
||||
else
|
||||
flatpak = "RetroDECK-cooker.flatpak"
|
||||
fi
|
||||
|
||||
flatpak build-bundle "${GITHUB_WORKSPACE}/local" "${flatpak}" net.retrodeck.retrodeck
|
||||
flatpak build-bundle ${GITHUB_WORKSPACE}/local RetroDECK-cooker.flatpak net.retrodeck.retrodeck
|
||||
fi
|
|
@ -4,7 +4,7 @@ GenericName=RetroDECK Configuration Utility
|
|||
Type=Application
|
||||
Comment=A handy tool to change common RetroDECK settings
|
||||
Icon=net.retrodeck.retrodeck
|
||||
Exec=/app/tools/configurator.sh
|
||||
Exec=/bin/bash /app/tools/configurator.sh
|
||||
Terminal=false
|
||||
StartupNotify=false
|
||||
Keywords=multi;engine;emulator;standalone;steam;deck
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<id>net.retrodeck.retrodeck</id>
|
||||
<launchable type="desktop-id">net.retrodeck.retrodeck.desktop</launchable>
|
||||
<name>RetroDECK</name>
|
||||
<summary>RetroDECK brings an environment to catalog and play your retro games directly on your Steam Deck.</summary>
|
||||
<summary>RetroDECK brings an environment to catalog and play your retro games directly on your Steam Deck</summary>
|
||||
<developer_name>RetroDECK Team</developer_name>
|
||||
<url type="homepage">https://retrodeck.net</url>
|
||||
<url type="bugtracker">https://github.com/XargonWan/RetroDECK/issues</url>
|
||||
|
|
|
@ -1334,6 +1334,7 @@ modules:
|
|||
# Desktop entries
|
||||
- cp net.retrodeck.retrodeck.desktop /app/share/applications/net.retrodeck.retrodeck.desktop
|
||||
- cp net.retrodeck.retrodeck.Configurator.desktop /app/share/applications/net.retrodeck.retrodeck.Configurator.desktop
|
||||
- chmod +x net.retrodeck.retrodeck*desktop
|
||||
|
||||
# Initializing default emulator configs
|
||||
- cp -r emu-configs ${FLATPAK_DEST}/retrodeck/emu-configs/
|
||||
|
@ -1349,6 +1350,10 @@ modules:
|
|||
- mkdir -p ${FLATPAK_DEST}/share/appdata
|
||||
- cp net.retrodeck.retrodeck.appdata.xml ${FLATPAK_DEST}/share/appdata
|
||||
|
||||
# Creating symlinks for a prettier access
|
||||
- ln -s /app/bin/retrodeck.sh /app/bin/retrodeck
|
||||
- ln -s /app/tools/configurator.sh /app/bin/configurator
|
||||
|
||||
sources:
|
||||
- type: git
|
||||
url: https://github.com/XargonWan/RetroDECK.git
|
||||
|
|
Loading…
Reference in a new issue