mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2024-11-22 14:05:39 +00:00
Merge branch 'cooker-0.8.2b' into feat/kde-update
This commit is contained in:
commit
3c091b2740
|
@ -1,32 +1,31 @@
|
||||||
name: "Build cooker"
|
name: "Build cooker"
|
||||||
|
|
||||||
on:
|
on:
|
||||||
# push:
|
push:
|
||||||
# branches:
|
branches:
|
||||||
# - cooker*
|
- cooker*
|
||||||
# - feat*
|
- feat*
|
||||||
# paths:
|
paths:
|
||||||
# - '.github/workflows/**'
|
- '.github/workflows/**'
|
||||||
# - 'automation_tools/**'
|
- 'automation_tools/**'
|
||||||
# - 'emu-configs/**'
|
- 'emu-configs/**'
|
||||||
# - 'es-configs/**'
|
- 'es-configs/**'
|
||||||
# - 'functions/**'
|
- 'functions/**'
|
||||||
# - 'rd-submodules/**'
|
- 'rd-submodules/**'
|
||||||
# - '*.sh'
|
- '*.sh'
|
||||||
# - 'net.retrodeck.retrodeck.yml'
|
- 'net.retrodeck.retrodeck.yml'
|
||||||
# - 'net.retrodeck.retrodeck.appdata.xml'
|
- 'net.retrodeck.retrodeck.appdata.xml'
|
||||||
# pull_request:
|
pull_request:
|
||||||
# branches:
|
branches:
|
||||||
# - cooker*
|
- cooker*
|
||||||
|
|
||||||
# Italy (CET): 11:00 PM
|
# Italy (CET): 11:00 PM
|
||||||
# Japan (JST): 7:00 AM
|
# Japan (JST): 7:00 AM
|
||||||
schedule:
|
# schedule:
|
||||||
- cron: '0 22 * * *'
|
# - cron: '0 22 * * *'
|
||||||
|
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|
||||||
Building_RetroDECK:
|
Building_RetroDECK:
|
||||||
|
@ -49,6 +48,33 @@ jobs:
|
||||||
- name: Generate cooker build ID
|
- name: Generate cooker build ID
|
||||||
run: "/bin/bash ${GITHUB_WORKSPACE}/automation_tools/cooker_build_id.sh"
|
run: "/bin/bash ${GITHUB_WORKSPACE}/automation_tools/cooker_build_id.sh"
|
||||||
|
|
||||||
|
- name: Get branch name
|
||||||
|
id: branch_name
|
||||||
|
run: echo "BRANCH_NAME=$(echo $GITHUB_REF | sed 's|refs/heads/||')" >> $GITHUB_ENV
|
||||||
|
|
||||||
|
# if it's a feature branch it will not marked as "latest" cooker version
|
||||||
|
- name: "Set makeLatest (cooker only)"
|
||||||
|
run: |
|
||||||
|
if [[ "$BRANCH_NAME" == 'feat/'* || "$BRANCH_NAME" == 'refs/'* ]]; then
|
||||||
|
echo "MAKE_LATEST=false" >> $GITHUB_ENV
|
||||||
|
else
|
||||||
|
echo "MAKE_LATEST=true" >> $GITHUB_ENV
|
||||||
|
fi
|
||||||
|
|
||||||
|
# if the branch is coming from a PR the tag should be manually built
|
||||||
|
- name: "Generate version tag"
|
||||||
|
run: |
|
||||||
|
if [[ "$BRANCH_NAME" == 'refs/'* ]]; then
|
||||||
|
pr_number=$(echo ${{env.BRANCH_NAME}} | awk -F'/' '{print $3}')
|
||||||
|
source_branch=$(curl -s "https://api.github.com/repos/XargonWan/RetroDECK/pulls/$pr_number" | jq -r '.head.ref')
|
||||||
|
source_branch=${source_branch//\//-}
|
||||||
|
echo "[DEBUG] source branch is: $source_branch"
|
||||||
|
echo "TAG=PR-$pr_number-$source_branch-${{ env.buildid }}" >> $GITHUB_ENV
|
||||||
|
else
|
||||||
|
echo "TAG=${{env.BRANCH_NAME}}-${{ env.buildid }}" >> $GITHUB_ENV
|
||||||
|
fi
|
||||||
|
echo "Version TAG: ${{ env.TAG }}"
|
||||||
|
|
||||||
# backing up manifest in case download fails and hashes must be recalculated
|
# backing up manifest in case download fails and hashes must be recalculated
|
||||||
- name: Manifest backup
|
- name: Manifest backup
|
||||||
run: "cp ${GITHUB_WORKSPACE}/net.retrodeck.retrodeck.yml ${GITHUB_WORKSPACE}/net.retrodeck.retrodeck.yml.bak"
|
run: "cp ${GITHUB_WORKSPACE}/net.retrodeck.retrodeck.yml ${GITHUB_WORKSPACE}/net.retrodeck.retrodeck.yml.bak"
|
||||||
|
@ -109,23 +135,10 @@ jobs:
|
||||||
id: commits
|
id: commits
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
|
|
||||||
- name: Get branch name
|
|
||||||
id: branch_name
|
|
||||||
run: echo "BRANCH_NAME=$(echo $GITHUB_REF | sed 's|refs/heads/||')" >> $GITHUB_ENV
|
|
||||||
|
|
||||||
# if it's a feature branch it will not marked as "latest" cooker version
|
|
||||||
- name: "Set makeLatest (cooker only)"
|
|
||||||
run: |
|
|
||||||
if [[ "$BRANCH_NAME" == 'feat/'* ]]; then
|
|
||||||
echo "MAKE_LATEST=false" >> $GITHUB_ENV
|
|
||||||
else
|
|
||||||
echo "MAKE_LATEST=true" >> $GITHUB_ENV
|
|
||||||
fi
|
|
||||||
|
|
||||||
- name: Publish the flatpak in a new cooker release
|
- name: Publish the flatpak in a new cooker release
|
||||||
uses: ncipollo/release-action@v1
|
uses: ncipollo/release-action@v1
|
||||||
with:
|
with:
|
||||||
tag: "${{env.BRANCH_NAME}}-${{ env.buildid }}"
|
tag: "${{env.TAG}}"
|
||||||
body: |
|
body: |
|
||||||
# Release Notes (Cooker)
|
# Release Notes (Cooker)
|
||||||
This is a cooker snapshot based on the commit: ${{ github.event.repository.full_name }}@${{github.sha}}.
|
This is a cooker snapshot based on the commit: ${{ github.event.repository.full_name }}@${{github.sha}}.
|
||||||
|
@ -134,12 +147,12 @@ jobs:
|
||||||
## Commits since last release
|
## Commits since last release
|
||||||
${{ steps.commits.outputs.commits }}
|
${{ steps.commits.outputs.commits }}
|
||||||
|
|
||||||
For the full release note for this build please refer to the channel [#BETA-TESTING](https://discord.gg/qQcrFvaA2C) on our Discord server.
|
For the full release note for this build please refer to the channel [#BETA-TESTING](https://discord.gg/WDc5C9YWMx) on our Discord server.
|
||||||
|
|
||||||
Cooker channel is provided for the community to test fixes and explore new functionality.
|
Cooker channel is provided for the community to test fixes and explore new functionality.
|
||||||
Please DO NOT open issues or ask support on this build.
|
Please DO NOT open issues or ask support on this build.
|
||||||
|
|
||||||
artifacts: "RetroDECK-cooker.flatpak,RetroDECK-Artifact.tar.gz"
|
artifacts: "RetroDECK-cooker.flatpak,RetroDECK-cooker.flatpak.sha,RetroDECK-Artifact.tar.gz"
|
||||||
allowUpdates: true
|
allowUpdates: true
|
||||||
makeLatest: ${{env.MAKE_LATEST}} # if it's a feat branch is not considered the latest build
|
makeLatest: ${{env.MAKE_LATEST}} # if it's a feat branch is not considered the latest build
|
||||||
token: ${{ secrets.TRIGGER_BUILD_TOKEN }}
|
token: ${{ secrets.TRIGGER_BUILD_TOKEN }}
|
||||||
|
@ -154,3 +167,57 @@ jobs:
|
||||||
path: RetroDECK-cooker.flatpak
|
path: RetroDECK-cooker.flatpak
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
|
|
||||||
|
# - name: Upload RetroDECK-cooker.flatpak to Gitea Release
|
||||||
|
# run: |
|
||||||
|
# # Set variables for Gitea host, organization, repository, access token, and release details
|
||||||
|
# GITEA_HOST="repo.retrodeck.net"
|
||||||
|
# UPLOAD_HOST="upload.retrodeck.net"
|
||||||
|
# ORGANIZATION="RetroDECK"
|
||||||
|
# REPO="RetroDECK-cooker"
|
||||||
|
# GITEA_TOKEN="${{ secrets.GITEA_TRIGGER_BUILD_TOKEN }}"
|
||||||
|
# RELEASE_NAME="RetroDECK ${{env.TAG}}"
|
||||||
|
# TAG="${{env.TAG}}"
|
||||||
|
# RELEASE_BODY="# Release Notes (Cooker)
|
||||||
|
# This is a cooker snapshot based on the commit: ${{ github.event.repository.full_name }}@${{github.sha}}.
|
||||||
|
# On branch [${{env.BRANCH_NAME}}](https://repo.retrodeck.net/RetroDECK/RetroDECK/src/branch/${{env.BRANCH_NAME}}).
|
||||||
|
|
||||||
|
# ## Commits since last release
|
||||||
|
# ${{ steps.commits.outputs.commits }}
|
||||||
|
|
||||||
|
# For the full release note for this build please refer to the channel [#BETA-TESTING](https://discord.gg/WDc5C9YWMx) on our Discord server.
|
||||||
|
|
||||||
|
# Cooker channel is provided for the community to test fixes and explore new functionality.
|
||||||
|
# Please DO NOT open issues or ask support on this build."
|
||||||
|
|
||||||
|
# # Create a release using curl and capture the release ID
|
||||||
|
# release_response=$(curl -X POST \
|
||||||
|
# -H "Authorization: token ${GITEA_TOKEN}" \
|
||||||
|
# -H "Content-Type: application/json" \
|
||||||
|
# -d "{\"tag_name\":\"$TAG\",\"name\":\"$RELEASE_NAME\",\"body\":\"$RELEASE_BODY\"}" \
|
||||||
|
# "http://$GITEA_HOST/api/v1/repos/$ORGANIZATION/$REPO/releases")
|
||||||
|
|
||||||
|
# # Extract the release ID from the response
|
||||||
|
# release_id=$(echo $release_response | jq -r '.id')
|
||||||
|
|
||||||
|
# # Upload artifacts
|
||||||
|
# curl -X POST \
|
||||||
|
# -H "Authorization: token ${GITEA_TOKEN}" \
|
||||||
|
# -H "X-GitHub-Token: ${{ secrets.UPLOAD_TOKEN }}" \
|
||||||
|
# -H "Content-Type: multipart/form-data" \
|
||||||
|
# -F "attachment=@RetroDECK-cooker.flatpak" \
|
||||||
|
# "http://$UPLOAD_HOST/api/v1/repos/$ORGANIZATION/$REPO/releases/$release_id/assets?name=RetroDECK-cooker.flatpak"
|
||||||
|
|
||||||
|
# # Upload artifacts sha
|
||||||
|
# curl -X POST \
|
||||||
|
# -H "Authorization: token ${GITEA_TOKEN}" \
|
||||||
|
# -H "X-GitHub-Token: ${{ secrets.UPLOAD_TOKEN }}" \
|
||||||
|
# -H "Content-Type: multipart/form-data" \
|
||||||
|
# -F "attachment=@RetroDECK-cooker.flatpak.sha" \
|
||||||
|
# "http://$UPLOAD_HOST/api/v1/repos/$ORGANIZATION/$REPO/releases/$release_id/assets?name=RetroDECK-cooker.flatpak.sha"
|
||||||
|
|
||||||
|
# curl -X POST \
|
||||||
|
# -H "Authorization: token ${GITEA_TOKEN}" \
|
||||||
|
# -H "X-GitHub-Token: ${{ secrets.UPLOAD_TOKEN }}" \
|
||||||
|
# -H "Content-Type: multipart/form-data" \
|
||||||
|
# -F "attachment=@RetroDECK-Artifact.tar.gz" \
|
||||||
|
# "http://$UPLOAD_HOST/api/v1/repos/$ORGANIZATION/$REPO/releases/$release_id/assets?name=RetroDECK-Artifact.tar.gz"
|
67
.github/workflows/main-selfhosted.yml
vendored
67
.github/workflows/main-selfhosted.yml
vendored
|
@ -108,7 +108,7 @@ jobs:
|
||||||
tag: ${{ env.REL_VER }}
|
tag: ${{ env.REL_VER }}
|
||||||
name: "RetroDECK v${{ env.REL_VER }}"
|
name: "RetroDECK v${{ env.REL_VER }}"
|
||||||
bodyFile: "body.md"
|
bodyFile: "body.md"
|
||||||
artifacts: "RetroDECK.flatpak,RetroDECK-Artifact.tar.gz"
|
artifacts: "RetroDECK.flatpak,RetroDECK.flatpak.sha,RetroDECK-Artifact.tar.gz"
|
||||||
allowUpdates: true
|
allowUpdates: true
|
||||||
makeLatest: true
|
makeLatest: true
|
||||||
token: ${{ secrets.TRIGGER_BUILD_TOKEN }}
|
token: ${{ secrets.TRIGGER_BUILD_TOKEN }}
|
||||||
|
@ -123,27 +123,56 @@ jobs:
|
||||||
path: RetroDECK.flatpak
|
path: RetroDECK.flatpak
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
|
|
||||||
- name: Publish the flatpak in a new release on Gitea
|
- name: Publish release on Gitea
|
||||||
uses: ncipollo/release-action@v1
|
run: |
|
||||||
env:
|
# Set variables for Gitea host, organization, repository, access token, and release details
|
||||||
REL_VER: ${{ env.REL_VER }}
|
GITEA_HOST="repo.retrodeck.net"
|
||||||
with:
|
UPLOAD_HOST="upload.retrodeck.net"
|
||||||
tag: ${{ env.REL_VER }}
|
ORGANIZATION="RetroDECK"
|
||||||
name: "RetroDECK v${{ env.REL_VER }}"
|
REPO="RetroDECK"
|
||||||
bodyFile: "body.md"
|
GITEA_TOKEN="${{ secrets.GITEA_TRIGGER_BUILD_TOKEN }}"
|
||||||
artifacts: "RetroDECK.flatpak,RetroDECK-Artifact.tar.gz"
|
RELEASE_NAME="RetroDECK v${{ env.REL_VER }}"
|
||||||
allowUpdates: true
|
TAG="${{ env.REL_VER }}"
|
||||||
makeLatest: true
|
|
||||||
token: ${{ secrets.GITEA_TRIGGER_BUILD_TOKEN }}
|
|
||||||
repo: "https://repo.retrodeck.net/RetroDECK/RetroDECK"
|
|
||||||
continue-on-error: true
|
|
||||||
|
|
||||||
- name: Upload RetroDECK.flatpak to Gitea Release
|
payload=$(jq -cn \
|
||||||
|
--arg tag_name "$TAG" \
|
||||||
|
--arg name "$RELEASE_NAME" \
|
||||||
|
--arg body "$(cat body.md)" \
|
||||||
|
'{$tag_name, $name, $body}'
|
||||||
|
)
|
||||||
|
|
||||||
|
# Create a release using curl and capture the release ID
|
||||||
|
release_response=$(curl -X POST \
|
||||||
|
-H "Authorization: token ${GITEA_TOKEN}" \
|
||||||
|
-H "Content-Type: application/json" \
|
||||||
|
-d "$payload" \
|
||||||
|
"http://$GITEA_HOST/api/v1/repos/$ORGANIZATION/$REPO/releases"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Extract the release ID from the response
|
||||||
|
release_id=$(echo $release_response | jq -r '.id')
|
||||||
|
|
||||||
|
# Upload artifacts
|
||||||
|
curl -X POST \
|
||||||
|
-H "Authorization: token ${GITEA_TOKEN}" \
|
||||||
|
-H "X-GitHub-Token: ${{ secrets.UPLOAD_TOKEN }}" \
|
||||||
|
-H "Content-Type: multipart/form-data" \
|
||||||
|
-F "attachment=@RetroDECK.flatpak" \
|
||||||
|
"http://$UPLOAD_HOST/api/v1/repos/$ORGANIZATION/$REPO/releases/$release_id/assets?name=RetroDECK-cooker.flatpak"
|
||||||
|
|
||||||
|
curl -X POST \
|
||||||
|
-H "Authorization: token ${GITEA_TOKEN}" \
|
||||||
|
-H "X-GitHub-Token: ${{ secrets.UPLOAD_TOKEN }}" \
|
||||||
|
-H "Content-Type: multipart/form-data" \
|
||||||
|
-F "attachment=@RetroDECK-Artifact.tar.gz" \
|
||||||
|
"http://$UPLOAD_HOST/api/v1/repos/$ORGANIZATION/$REPO/releases/$release_id/assets?name=RetroDECK-Artifact.tar.gz"
|
||||||
|
|
||||||
|
- name: Upload RetroDECK.flatpak.sha to Gitea Release
|
||||||
run: |
|
run: |
|
||||||
curl -X POST \
|
curl -X POST \
|
||||||
-H "Authorization: token ${GITEA_TOKEN}" \
|
-H "Authorization: token ${GITEA_TOKEN}" \
|
||||||
-F "file=@RetroDECK.flatpak" \
|
-H "X-GitHub-Token: ${{ secrets.UPLOAD_TOKEN }}" \
|
||||||
"https://repo.retrodeck.net/RetroDECK/RetroDECK/releases/${{ env.REL_VER }}/assets?name=RetroDECK.flatpak"
|
-F "file=@RetroDECK.flatpak.sha" \
|
||||||
|
"https://$UPLOAD_HOST/RetroDECK/RetroDECK/releases/${{ env.REL_VER }}/assets?name=RetroDECK.flatpak.sha"
|
||||||
env:
|
env:
|
||||||
GITEA_TOKEN: ${{ secrets.GITEA_TRIGGER_BUILD_TOKEN }}
|
GITEA_TOKEN: ${{ secrets.GITEA_TRIGGER_BUILD_TOKEN }}
|
||||||
|
|
||||||
|
|
|
@ -4,6 +4,8 @@
|
||||||
|
|
||||||
if [ "${GITHUB_REF##*/}" = "main" ]; then
|
if [ "${GITHUB_REF##*/}" = "main" ]; then
|
||||||
flatpak build-bundle "${GITHUB_WORKSPACE}/.local" "$GITHUB_WORKSPACE/RetroDECK.flatpak" net.retrodeck.retrodeck
|
flatpak build-bundle "${GITHUB_WORKSPACE}/.local" "$GITHUB_WORKSPACE/RetroDECK.flatpak" net.retrodeck.retrodeck
|
||||||
|
sha256sum RetroDECK.flatpak > RetroDECK.flatpak.sha
|
||||||
else
|
else
|
||||||
flatpak build-bundle "${GITHUB_WORKSPACE}/.local" "$GITHUB_WORKSPACE/RetroDECK-cooker.flatpak" net.retrodeck.retrodeck
|
flatpak build-bundle "${GITHUB_WORKSPACE}/.local" "$GITHUB_WORKSPACE/RetroDECK-cooker.flatpak" net.retrodeck.retrodeck
|
||||||
|
sha256sum RetroDECK-cooker.flatpak > RetroDECK-cooker.flatpak.sha
|
||||||
fi
|
fi
|
|
@ -8,6 +8,8 @@
|
||||||
# Needs the URL of the file, in this line format: hash^PLACEHOLDERTEXT^url
|
# Needs the URL of the file, in this line format: hash^PLACEHOLDERTEXT^url
|
||||||
# latestcommit: Finds the most recent commit of a git repo and updated the placeholder in the manifest.
|
# latestcommit: Finds the most recent commit of a git repo and updated the placeholder in the manifest.
|
||||||
# Needs the URL of the repo and the branch to find the latest commit from, in this line format: latestcommit^PLACEHOLDERTEXT^url^branch
|
# Needs the URL of the repo and the branch to find the latest commit from, in this line format: latestcommit^PLACEHOLDERTEXT^url^branch
|
||||||
|
# latestghtag: Finds the most recent tag on a GitHub repo, for repos that don't have normal releases, but also shouldn't use the latest commit
|
||||||
|
# Needs the URL of the repo, in this line format: latestghtag^PLACEHOLDERTEXT^url
|
||||||
# latestghrelease: Finds the download URL and SHA256 hash of the latest release from a git repo.
|
# latestghrelease: Finds the download URL and SHA256 hash of the latest release from a git repo.
|
||||||
# Needs the API URL of the repo, in this line format: latestappimage^PLACEHOLDERTEXT^https://api.github.com/repos/<owner-name>/<repo-name>/releases/latest^<file suffix>
|
# Needs the API URL of the repo, in this line format: latestappimage^PLACEHOLDERTEXT^https://api.github.com/repos/<owner-name>/<repo-name>/releases/latest^<file suffix>
|
||||||
# As this command updates two different placeholders (one for the URL, one for the file hash) in the manifest,
|
# As this command updates two different placeholders (one for the URL, one for the file hash) in the manifest,
|
||||||
|
@ -82,10 +84,20 @@ do
|
||||||
/bin/sed -i 's^'"$placeholder"'^'"$commit"'^' $rd_manifest
|
/bin/sed -i 's^'"$placeholder"'^'"$commit"'^' $rd_manifest
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
"latestghtag" )
|
||||||
|
echo
|
||||||
|
echo "Placeholder text: $placeholder"
|
||||||
|
echo "Repo to get the latest tag from: $url"
|
||||||
|
echo
|
||||||
|
tag=$(git ls-remote "$url" | tail -n 1 | cut -f2 | sed 's|refs/tags/||')
|
||||||
|
echo "Tag found: $tag"
|
||||||
|
/bin/sed -i 's^'"$placeholder"'^'"$tag"'^' $rd_manifest
|
||||||
|
;;
|
||||||
|
|
||||||
"latestghrelease" )
|
"latestghrelease" )
|
||||||
echo
|
echo
|
||||||
echo "Placeholder text: $placeholder"
|
echo "Placeholder text: $placeholder"
|
||||||
echo "Repo to look for AppImage releases: $url"
|
echo "Repo to look for latest releases: $url"
|
||||||
echo
|
echo
|
||||||
ghreleaseurl=$(curl -s "$url" | grep browser_download_url | grep "$branch\""$ | cut -d : -f 2,3 | tr -d \" | sed -n 1p | tr -d ' ')
|
ghreleaseurl=$(curl -s "$url" | grep browser_download_url | grep "$branch\""$ | cut -d : -f 2,3 | tr -d \" | sed -n 1p | tr -d ' ')
|
||||||
echo "GitHub release URL found: $ghreleaseurl"
|
echo "GitHub release URL found: $ghreleaseurl"
|
||||||
|
|
|
@ -42,100 +42,104 @@
|
||||||
</trigger>
|
</trigger>
|
||||||
<mappings>
|
<mappings>
|
||||||
<entry>
|
<entry>
|
||||||
<mapping>24</mapping>
|
<mapping>12</mapping>
|
||||||
<button>40</button>
|
<button>12</button>
|
||||||
</entry>
|
|
||||||
<entry>
|
|
||||||
<mapping>23</mapping>
|
|
||||||
<button>46</button>
|
|
||||||
</entry>
|
|
||||||
<entry>
|
|
||||||
<mapping>22</mapping>
|
|
||||||
<button>41</button>
|
|
||||||
</entry>
|
|
||||||
<entry>
|
|
||||||
<mapping>21</mapping>
|
|
||||||
<button>47</button>
|
|
||||||
</entry>
|
|
||||||
<entry>
|
|
||||||
<mapping>20</mapping>
|
|
||||||
<button>38</button>
|
|
||||||
</entry>
|
|
||||||
<entry>
|
|
||||||
<mapping>19</mapping>
|
|
||||||
<button>44</button>
|
|
||||||
</entry>
|
|
||||||
<entry>
|
|
||||||
<mapping>18</mapping>
|
|
||||||
<button>39</button>
|
|
||||||
</entry>
|
|
||||||
<entry>
|
|
||||||
<mapping>17</mapping>
|
|
||||||
<button>45</button>
|
|
||||||
</entry>
|
|
||||||
<entry>
|
|
||||||
<mapping>16</mapping>
|
|
||||||
<button>8</button>
|
|
||||||
</entry>
|
|
||||||
<entry>
|
|
||||||
<mapping>15</mapping>
|
|
||||||
<button>7</button>
|
|
||||||
</entry>
|
|
||||||
<entry>
|
|
||||||
<mapping>14</mapping>
|
|
||||||
<button>14</button>
|
|
||||||
</entry>
|
</entry>
|
||||||
<entry>
|
<entry>
|
||||||
<mapping>13</mapping>
|
<mapping>13</mapping>
|
||||||
<button>13</button>
|
<button>13</button>
|
||||||
</entry>
|
</entry>
|
||||||
<entry>
|
<entry>
|
||||||
<mapping>12</mapping>
|
<mapping>14</mapping>
|
||||||
<button>12</button>
|
<button>14</button>
|
||||||
</entry>
|
</entry>
|
||||||
<entry>
|
<entry>
|
||||||
<mapping>11</mapping>
|
<mapping>15</mapping>
|
||||||
<button>11</button>
|
<button>7</button>
|
||||||
</entry>
|
</entry>
|
||||||
<entry>
|
<entry>
|
||||||
<mapping>10</mapping>
|
<mapping>16</mapping>
|
||||||
<button>4</button>
|
<button>8</button>
|
||||||
</entry>
|
</entry>
|
||||||
<entry>
|
<entry>
|
||||||
<mapping>9</mapping>
|
<mapping>17</mapping>
|
||||||
<button>6</button>
|
<button>45</button>
|
||||||
</entry>
|
</entry>
|
||||||
<entry>
|
<entry>
|
||||||
<mapping>8</mapping>
|
<mapping>18</mapping>
|
||||||
<button>43</button>
|
<button>39</button>
|
||||||
</entry>
|
</entry>
|
||||||
<entry>
|
<entry>
|
||||||
<mapping>7</mapping>
|
<mapping>19</mapping>
|
||||||
<button>42</button>
|
<button>44</button>
|
||||||
</entry>
|
</entry>
|
||||||
<entry>
|
<entry>
|
||||||
<mapping>6</mapping>
|
<mapping>20</mapping>
|
||||||
<button>10</button>
|
<button>38</button>
|
||||||
</entry>
|
</entry>
|
||||||
<entry>
|
<entry>
|
||||||
<mapping>5</mapping>
|
<mapping>21</mapping>
|
||||||
<button>9</button>
|
<button>47</button>
|
||||||
</entry>
|
</entry>
|
||||||
<entry>
|
<entry>
|
||||||
<mapping>4</mapping>
|
<mapping>22</mapping>
|
||||||
<button>3</button>
|
<button>41</button>
|
||||||
</entry>
|
</entry>
|
||||||
<entry>
|
<entry>
|
||||||
<mapping>3</mapping>
|
<mapping>23</mapping>
|
||||||
<button>2</button>
|
<button>46</button>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<mapping>25</mapping>
|
||||||
|
<button>8</button>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<mapping>1</mapping>
|
||||||
|
<button>0</button>
|
||||||
</entry>
|
</entry>
|
||||||
<entry>
|
<entry>
|
||||||
<mapping>2</mapping>
|
<mapping>2</mapping>
|
||||||
<button>1</button>
|
<button>1</button>
|
||||||
</entry>
|
</entry>
|
||||||
<entry>
|
<entry>
|
||||||
<mapping>1</mapping>
|
<mapping>3</mapping>
|
||||||
<button>0</button>
|
<button>2</button>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<mapping>4</mapping>
|
||||||
|
<button>3</button>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<mapping>5</mapping>
|
||||||
|
<button>9</button>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<mapping>6</mapping>
|
||||||
|
<button>10</button>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<mapping>7</mapping>
|
||||||
|
<button>42</button>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<mapping>8</mapping>
|
||||||
|
<button>43</button>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<mapping>9</mapping>
|
||||||
|
<button>6</button>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<mapping>10</mapping>
|
||||||
|
<button>4</button>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<mapping>11</mapping>
|
||||||
|
<button>11</button>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<mapping>24</mapping>
|
||||||
|
<button>40</button>
|
||||||
</entry>
|
</entry>
|
||||||
</mappings>
|
</mappings>
|
||||||
</controller>
|
</controller>
|
||||||
|
|
|
@ -21,92 +21,56 @@
|
||||||
</trigger>
|
</trigger>
|
||||||
<mappings>
|
<mappings>
|
||||||
<entry>
|
<entry>
|
||||||
<mapping>24</mapping>
|
<mapping>1</mapping>
|
||||||
<button>40</button>
|
<button>0</button>
|
||||||
</entry>
|
|
||||||
<entry>
|
|
||||||
<mapping>23</mapping>
|
|
||||||
<button>46</button>
|
|
||||||
</entry>
|
|
||||||
<entry>
|
|
||||||
<mapping>22</mapping>
|
|
||||||
<button>41</button>
|
|
||||||
</entry>
|
|
||||||
<entry>
|
|
||||||
<mapping>21</mapping>
|
|
||||||
<button>47</button>
|
|
||||||
</entry>
|
|
||||||
<entry>
|
|
||||||
<mapping>20</mapping>
|
|
||||||
<button>38</button>
|
|
||||||
</entry>
|
|
||||||
<entry>
|
|
||||||
<mapping>19</mapping>
|
|
||||||
<button>44</button>
|
|
||||||
</entry>
|
|
||||||
<entry>
|
|
||||||
<mapping>18</mapping>
|
|
||||||
<button>39</button>
|
|
||||||
</entry>
|
|
||||||
<entry>
|
|
||||||
<mapping>17</mapping>
|
|
||||||
<button>45</button>
|
|
||||||
</entry>
|
|
||||||
<entry>
|
|
||||||
<mapping>16</mapping>
|
|
||||||
<button>8</button>
|
|
||||||
</entry>
|
|
||||||
<entry>
|
|
||||||
<mapping>15</mapping>
|
|
||||||
<button>7</button>
|
|
||||||
</entry>
|
</entry>
|
||||||
<entry>
|
<entry>
|
||||||
<mapping>14</mapping>
|
<mapping>14</mapping>
|
||||||
<button>14</button>
|
<button>14</button>
|
||||||
</entry>
|
</entry>
|
||||||
<entry>
|
|
||||||
<mapping>1</mapping>
|
|
||||||
<button>0</button>
|
|
||||||
</entry>
|
|
||||||
<entry>
|
<entry>
|
||||||
<mapping>2</mapping>
|
<mapping>2</mapping>
|
||||||
<button>1</button>
|
<button>1</button>
|
||||||
</entry>
|
</entry>
|
||||||
<entry>
|
<entry>
|
||||||
<mapping>3</mapping>
|
<mapping>15</mapping>
|
||||||
<button>2</button>
|
<button>7</button>
|
||||||
</entry>
|
</entry>
|
||||||
<entry>
|
<entry>
|
||||||
<mapping>4</mapping>
|
<mapping>16</mapping>
|
||||||
<button>3</button>
|
<button>8</button>
|
||||||
</entry>
|
</entry>
|
||||||
<entry>
|
<entry>
|
||||||
<mapping>5</mapping>
|
<mapping>17</mapping>
|
||||||
<button>9</button>
|
<button>45</button>
|
||||||
</entry>
|
</entry>
|
||||||
<entry>
|
<entry>
|
||||||
<mapping>6</mapping>
|
<mapping>18</mapping>
|
||||||
<button>10</button>
|
<button>39</button>
|
||||||
</entry>
|
</entry>
|
||||||
<entry>
|
<entry>
|
||||||
<mapping>7</mapping>
|
<mapping>19</mapping>
|
||||||
<button>42</button>
|
<button>44</button>
|
||||||
</entry>
|
</entry>
|
||||||
<entry>
|
<entry>
|
||||||
<mapping>8</mapping>
|
<mapping>20</mapping>
|
||||||
<button>43</button>
|
<button>38</button>
|
||||||
</entry>
|
</entry>
|
||||||
<entry>
|
<entry>
|
||||||
<mapping>9</mapping>
|
<mapping>21</mapping>
|
||||||
<button>6</button>
|
<button>47</button>
|
||||||
</entry>
|
</entry>
|
||||||
<entry>
|
<entry>
|
||||||
<mapping>10</mapping>
|
<mapping>22</mapping>
|
||||||
<button>4</button>
|
<button>41</button>
|
||||||
</entry>
|
</entry>
|
||||||
<entry>
|
<entry>
|
||||||
<mapping>11</mapping>
|
<mapping>23</mapping>
|
||||||
<button>11</button>
|
<button>46</button>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<mapping>25</mapping>
|
||||||
|
<button>8</button>
|
||||||
</entry>
|
</entry>
|
||||||
<entry>
|
<entry>
|
||||||
<mapping>12</mapping>
|
<mapping>12</mapping>
|
||||||
|
@ -116,6 +80,46 @@
|
||||||
<mapping>13</mapping>
|
<mapping>13</mapping>
|
||||||
<button>13</button>
|
<button>13</button>
|
||||||
</entry>
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<mapping>11</mapping>
|
||||||
|
<button>11</button>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<mapping>24</mapping>
|
||||||
|
<button>40</button>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<mapping>10</mapping>
|
||||||
|
<button>4</button>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<mapping>9</mapping>
|
||||||
|
<button>6</button>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<mapping>8</mapping>
|
||||||
|
<button>43</button>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<mapping>7</mapping>
|
||||||
|
<button>42</button>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<mapping>6</mapping>
|
||||||
|
<button>10</button>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<mapping>5</mapping>
|
||||||
|
<button>9</button>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<mapping>4</mapping>
|
||||||
|
<button>3</button>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<mapping>3</mapping>
|
||||||
|
<button>2</button>
|
||||||
|
</entry>
|
||||||
</mappings>
|
</mappings>
|
||||||
</controller>
|
</controller>
|
||||||
</emulated_controller>
|
</emulated_controller>
|
||||||
|
|
|
@ -21,8 +21,8 @@
|
||||||
</trigger>
|
</trigger>
|
||||||
<mappings>
|
<mappings>
|
||||||
<entry>
|
<entry>
|
||||||
<mapping>24</mapping>
|
<mapping>25</mapping>
|
||||||
<button>40</button>
|
<button>8</button>
|
||||||
</entry>
|
</entry>
|
||||||
<entry>
|
<entry>
|
||||||
<mapping>23</mapping>
|
<mapping>23</mapping>
|
||||||
|
@ -60,18 +60,14 @@
|
||||||
<mapping>15</mapping>
|
<mapping>15</mapping>
|
||||||
<button>7</button>
|
<button>7</button>
|
||||||
</entry>
|
</entry>
|
||||||
<entry>
|
|
||||||
<mapping>14</mapping>
|
|
||||||
<button>14</button>
|
|
||||||
</entry>
|
|
||||||
<entry>
|
|
||||||
<mapping>1</mapping>
|
|
||||||
<button>0</button>
|
|
||||||
</entry>
|
|
||||||
<entry>
|
<entry>
|
||||||
<mapping>2</mapping>
|
<mapping>2</mapping>
|
||||||
<button>1</button>
|
<button>1</button>
|
||||||
</entry>
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<mapping>14</mapping>
|
||||||
|
<button>14</button>
|
||||||
|
</entry>
|
||||||
<entry>
|
<entry>
|
||||||
<mapping>3</mapping>
|
<mapping>3</mapping>
|
||||||
<button>2</button>
|
<button>2</button>
|
||||||
|
@ -104,17 +100,25 @@
|
||||||
<mapping>10</mapping>
|
<mapping>10</mapping>
|
||||||
<button>4</button>
|
<button>4</button>
|
||||||
</entry>
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<mapping>24</mapping>
|
||||||
|
<button>40</button>
|
||||||
|
</entry>
|
||||||
<entry>
|
<entry>
|
||||||
<mapping>11</mapping>
|
<mapping>11</mapping>
|
||||||
<button>11</button>
|
<button>11</button>
|
||||||
</entry>
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<mapping>13</mapping>
|
||||||
|
<button>13</button>
|
||||||
|
</entry>
|
||||||
<entry>
|
<entry>
|
||||||
<mapping>12</mapping>
|
<mapping>12</mapping>
|
||||||
<button>12</button>
|
<button>12</button>
|
||||||
</entry>
|
</entry>
|
||||||
<entry>
|
<entry>
|
||||||
<mapping>13</mapping>
|
<mapping>1</mapping>
|
||||||
<button>13</button>
|
<button>0</button>
|
||||||
</entry>
|
</entry>
|
||||||
</mappings>
|
</mappings>
|
||||||
</controller>
|
</controller>
|
||||||
|
|
|
@ -94,9 +94,9 @@
|
||||||
<TVVolume>100</TVVolume>
|
<TVVolume>100</TVVolume>
|
||||||
<PadVolume>100</PadVolume>
|
<PadVolume>100</PadVolume>
|
||||||
<InputVolume>100</InputVolume>
|
<InputVolume>100</InputVolume>
|
||||||
<TVDevice>alsa_output.pci-0000_04_00.5-platform-acp5x_mach.0.HiFi__hw_acp5x_1__sink</TVDevice>
|
<TVDevice>default</TVDevice>
|
||||||
<PadDevice>alsa_output.pci-0000_04_00.5-platform-acp5x_mach.0.HiFi__hw_acp5x_1__sink</PadDevice>
|
<PadDevice>default</PadDevice>
|
||||||
<InputDevice>filter-chain-source</InputDevice>
|
<InputDevice>default</InputDevice>
|
||||||
</Audio>
|
</Audio>
|
||||||
<Account>
|
<Account>
|
||||||
<PersistentId>2147483649</PersistentId>
|
<PersistentId>2147483649</PersistentId>
|
||||||
|
|
|
@ -7301,8 +7301,8 @@
|
||||||
{
|
{
|
||||||
"bindings"
|
"bindings"
|
||||||
{
|
{
|
||||||
"binding" "key_press LEFT_ALT, Set GPU Accuracy, RD-emblem-new.png, "
|
"binding" "key_press LEFT_ALT, Yuzu - Set GPU Accuracy, RD-emblem-new.png, "
|
||||||
"binding" "key_press G, Set GPU Accuracy, RD-emblem-new.png, "
|
"binding" "key_press G, Yuzu - Set GPU Accuracy, RD-emblem-new.png, "
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -7318,8 +7318,8 @@
|
||||||
{
|
{
|
||||||
"bindings"
|
"bindings"
|
||||||
{
|
{
|
||||||
"binding" "key_press LEFT_ALT, Load/Remove Amiibo, RD-preferences-desktop-accessibility.png, "
|
"binding" "key_press LEFT_ALT, Yuzu - Load / Remove Amiibo, RD-preferences-desktop-accessibility.png, "
|
||||||
"binding" "key_press M, Load/Remove Amiibo, RD-preferences-desktop-accessibility.png, "
|
"binding" "key_press M, Yuzu - Load / Remove Amiibo, RD-preferences-desktop-accessibility.png, "
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -7335,8 +7335,24 @@
|
||||||
{
|
{
|
||||||
"bindings"
|
"bindings"
|
||||||
{
|
{
|
||||||
"binding" "key_press LEFT_ALT, Docked / Undocked Mode, RD-emblem-unlocked.png, "
|
"binding" "key_press LEFT_ALT, Yuzu - Docked / Undocked Mode, RD-emblem-unlocked.png, "
|
||||||
"binding" "key_press D, Docked / Undocked Mode, RD-emblem-unlocked.png, "
|
"binding" "key_press D, Yuzu - Docked / Undocked Mode, RD-emblem-unlocked.png, "
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
"disabled_activators"
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
|
"touch_menu_button_4"
|
||||||
|
{
|
||||||
|
"activators"
|
||||||
|
{
|
||||||
|
"Full_Press"
|
||||||
|
{
|
||||||
|
"bindings"
|
||||||
|
{
|
||||||
|
"binding" "key_press F4, Ryujinx - F4 Open Menu, RD-F4.png, "
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -12072,4 +12088,3 @@
|
||||||
"right_trackpad_mode" "0"
|
"right_trackpad_mode" "0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,9 +4,9 @@ change^borders^custom_viewport_height^640^^/var/config/retroarch/config/mGBA/gba
|
||||||
change^borders^custom_viewport_width^960^^/var/config/retroarch/config/mGBA/gba.cfg^$emuconfigs/retroarch/retroarch.cfg
|
change^borders^custom_viewport_width^960^^/var/config/retroarch/config/mGBA/gba.cfg^$emuconfigs/retroarch/retroarch.cfg
|
||||||
change^borders^custom_viewport_x^160^^/var/config/retroarch/config/mGBA/gba.cfg^$emuconfigs/retroarch/retroarch.cfg
|
change^borders^custom_viewport_x^160^^/var/config/retroarch/config/mGBA/gba.cfg^$emuconfigs/retroarch/retroarch.cfg
|
||||||
change^borders^custom_viewport_y^0^^/var/config/retroarch/config/mGBA/gba.cfg^$emuconfigs/retroarch/retroarch.cfg
|
change^borders^custom_viewport_y^0^^/var/config/retroarch/config/mGBA/gba.cfg^$emuconfigs/retroarch/retroarch.cfg
|
||||||
change^borders^input_overlay_enable^true^^/var/config/retroarch/config/mGBA/gba.cfg^$emuconfigs/retroarch/retroarch.cfg
|
|
||||||
change^borders^input_overlay^/var/config/retroarch/overlays/borders/pegasus/gba.cfg^^/var/config/retroarch/config/mGBA/gba.cfg^$emuconfigs/retroarch/retroarch.cfg
|
change^borders^input_overlay^/var/config/retroarch/overlays/borders/pegasus/gba.cfg^^/var/config/retroarch/config/mGBA/gba.cfg^$emuconfigs/retroarch/retroarch.cfg
|
||||||
change^borders^input_overlay_aspect_adjust_landscape^0.110000^^/var/config/retroarch/config/mGBA/gba.cfg^$emuconfigs/retroarch/retroarch.cfg
|
change^borders^input_overlay_aspect_adjust_landscape^0.110000^^/var/config/retroarch/config/mGBA/gba.cfg^$emuconfigs/retroarch/retroarch.cfg
|
||||||
|
change^borders^input_overlay_enable^true^^/var/config/retroarch/config/mGBA/gba.cfg^$emuconfigs/retroarch/retroarch.cfg
|
||||||
change^borders^input_overlay_scale_landscape^1.2150000^^/var/config/retroarch/config/mGBA/gba.cfg^$emuconfigs/retroarch/retroarch.cfg
|
change^borders^input_overlay_scale_landscape^1.2150000^^/var/config/retroarch/config/mGBA/gba.cfg^$emuconfigs/retroarch/retroarch.cfg
|
||||||
change^borders^input_overlay_y_offset_landscape^0.020000^^/var/config/retroarch/config/mGBA/gba.cfg^$emuconfigs/retroarch/retroarch.cfg
|
change^borders^input_overlay_y_offset_landscape^0.020000^^/var/config/retroarch/config/mGBA/gba.cfg^$emuconfigs/retroarch/retroarch.cfg
|
||||||
enable^abxy_button_swap^/var/config/retroarch/config/remaps/mGBA/gba.rmp
|
enable^abxy_button_swap^/var/config/retroarch/config/remaps/mGBA/gba.rmp
|
||||||
|
|
|
@ -1,14 +1,27 @@
|
||||||
neogeo.zip^^Unknown^Arcade (FinalBurn Neo)^Neo Geo BIOS (Required for this system)
|
panafz1.bin^^f47264dd47fe30f73ab3c010015c155b^3DO^Panasonic FZ-1
|
||||||
neocdz.zip^^Unknown^Arcade (FinalBurn Neo)^Neo Geo CDZ BIOS (Required for this system)
|
panafz10.bin^^51f2f43ae2f3508a14d9f56597e2d3ce^3DO^Panasonic FZ-10
|
||||||
decocass.zip^^Unknown^Arcade (FinalBurn Neo)^DECO Cassette System BIOS (Required for this system)
|
panafz10-norsa.bin^^1477bda80dc33731a65468c1f5bcbee9^3DO^Panasonic FZ-10 [RSA Patch]
|
||||||
isgsm.zip^^Unknown^Arcade (FinalBurn Neo)^ISG Selection Master Type 2006 System BIOS (Required for this system)
|
panafz10e-anvil.bin^^a48e6746bd7edec0f40cff078f0bb19f^3DO^Panasonic FZ-10-E [Anvil]
|
||||||
midssio.zip^^Unknown^Arcade (FinalBurn Neo)^Midway SSIO Sound Board Internal ROM (Required for this system)
|
panafz10e-anvil-norsa.bin^^cf11bbb5a16d7af9875cca9de9a15e09^3DO^Panasonic FZ-10-E [Anvil RSA Patch]
|
||||||
nmk004.zip^^Unknown^Arcade (FinalBurn Neo)^NMK004 Internal ROM (Required for this system)
|
panafz1j.bin^^a496cfdded3da562759be3561317b605^3DO^Panasonic FZ-1J
|
||||||
pgm.zip^^Unknown^Arcade (FinalBurn Neo)^PGM System BIOS (Required for this system)
|
panafz1j-norsa.bin^^f6c71de7470d16abe4f71b1444883dc8^3DO^Panasonic FZ-1J [RSA Patch]
|
||||||
skns.zip^^Unknown^Arcade (FinalBurn Neo)^Super Kaneko Nova System BIOS (Required for this system)
|
goldstar.bin^^8639fd5e549bd6238cfee79e3e749114^3DO^Goldstar GDO-101M
|
||||||
ym2608.zip^^Unknown^Arcade (FinalBurn Neo)^YM2608 Internal ROM (Required for this system)
|
sanyotry.bin^^35fa1a1ebaaeea286dc5cd15487c13ea^3DO^Sanyo IMP-21J TRY
|
||||||
cchip.zip^^Unknown^Arcade (FinalBurn Neo)^C-Chip Internal ROM (Required for this system)
|
3do_arcade_saot.bin^^8970fc987ab89a7f64da9f8a8c4333ff^3DO^Shootout At Old Tucson
|
||||||
bubsys.zip^^Unknown^Arcade (FinalBurn Neo)^Bubble System BIOS (Required for this system)
|
panafz1-kanji.bin^^b8dc97f778a6245c58e064b0312e8281^3DO^Panasonic FZ-1 Kanji ROM (Font ROM: required for some Japanese games. Optional otherwise.)
|
||||||
|
panafz10ja-anvil-kanji.bin^^428577250f43edc902ea239c50d2240d^3DO^Panasonic FZ-10JA Kanji ROM (Font ROM: required for some Japanese games. Optional otherwise.)
|
||||||
|
panafz1j-kanji.bin^^c23fb5d5e6bb1c240d02cf968972be37^3DO^Panasonic FZ-1J Kanji ROM (Font ROM: required for some Japanese games. Optional otherwise.)
|
||||||
|
neogeo.zip^^00dad01abdbf8ea9e79ad2fe11bdb182^Arcade (FinalBurn Neo)^Neo Geo BIOS (Required for this system)
|
||||||
|
neocdz.zip^^c733b4b7bd30fa849874d96c591c8639^Arcade (FinalBurn Neo)^Neo Geo CDZ BIOS (Required for this system)
|
||||||
|
decocass.zip^^b7e1189b341bf6a8e270017c096d21b0^Arcade (FinalBurn Neo)^DECO Cassette System BIOS (Required for this system)
|
||||||
|
isgsm.zip^^4a56d56e2219c5e2b006b66a4263c01c^Arcade (FinalBurn Neo)^ISG Selection Master Type 2006 System BIOS (Required for this system)
|
||||||
|
midssio.zip^^5904b0de768d1d506e766aa7e18994c1^Arcade (FinalBurn Neo)^Midway SSIO Sound Board Internal ROM (Required for this system)
|
||||||
|
nmk004.zip^^bfacf1a68792d5348f93cf724d2f1dda^Arcade (FinalBurn Neo)^NMK004 Internal ROM (Required for this system)
|
||||||
|
pgm.zip^^87cc944eef4c671aa2629a8ba48a08e0^Arcade (FinalBurn Neo)^PGM System BIOS (Required for this system)
|
||||||
|
skns.zip^^3f956c4e7008804cb47cbde49bd5b908^Arcade (FinalBurn Neo)^Super Kaneko Nova System BIOS (Required for this system)
|
||||||
|
ym2608.zip^^79ae0d2bb1901b7e606b6dc339b79a97^Arcade (FinalBurn Neo)^YM2608 Internal ROM (Required for this system)
|
||||||
|
cchip.zip^^df6f8a3d83c028a5cb9f2f2be60773f3^Arcade (FinalBurn Neo)^C-Chip Internal ROM (Required for this system)
|
||||||
|
bubsys.zip^^f81298afd68a1a24a49a1a2d9f087964^Arcade (FinalBurn Neo)^Bubble System BIOS (Required for this system)
|
||||||
namcoc69.zip^^Unknown^Arcade (FinalBurn Neo)^Namco C69 BIOS (Required for this system)
|
namcoc69.zip^^Unknown^Arcade (FinalBurn Neo)^Namco C69 BIOS (Required for this system)
|
||||||
namcoc70.zip^^Unknown^Arcade (FinalBurn Neo)^Namco C70 BIOS (Required for this system)
|
namcoc70.zip^^Unknown^Arcade (FinalBurn Neo)^Namco C70 BIOS (Required for this system)
|
||||||
namcoc75.zip^^Unknown^Arcade (FinalBurn Neo)^Namco C75 BIOS (Required for this system)
|
namcoc75.zip^^Unknown^Arcade (FinalBurn Neo)^Namco C75 BIOS (Required for this system)
|
||||||
|
@ -48,9 +61,9 @@ Complex.bin^^Unknown^Microsoft XBOX^Used by XEMU emulator
|
||||||
Complex_4627v1.03.bin^^Unknown^Microsoft XBOX^Used by XEMU emulator
|
Complex_4627v1.03.bin^^Unknown^Microsoft XBOX^Used by XEMU emulator
|
||||||
Complex_4627.bin^^Unknown^Microsoft XBOX^Used by XEMU emulator
|
Complex_4627.bin^^Unknown^Microsoft XBOX^Used by XEMU emulator
|
||||||
syscard3.pce^^38179df8f4ac870017db21ebcbf53114^NEC PC Engine / CD^Super CD-ROM2 System V3.xx (Required)
|
syscard3.pce^^38179df8f4ac870017db21ebcbf53114^NEC PC Engine / CD^Super CD-ROM2 System V3.xx (Required)
|
||||||
syscard2.pce^^Unknown^NEC PC Engine / CD^CD-ROM System V2.xx
|
syscard2.pce^^3cdd6614a918616bfc41c862e889dd79^NEC PC Engine / CD^CD-ROM System V2.xx
|
||||||
syscard1.pce^^Unknown^NEC PC Engine / CD^CD-ROM System V1.xx
|
syscard1.pce^^2b7ccb3d86baa18f6402c176f3065082^NEC PC Engine / CD^CD-ROM System V1.xx
|
||||||
gexpress.pce^^Unknown^NEC PC Engine / CD^Game Express CD Card
|
gexpress.pce^^6d2cb14fc3e1f65ceb135633d1694122^NEC PC Engine / CD^Game Express CD Card
|
||||||
font.bmp^np2kai/^7da1e5b7c482d4108d22a5b09631d967^NEC PC-98 (Neko Project II Kai)^Needed to display text (Required)
|
font.bmp^np2kai/^7da1e5b7c482d4108d22a5b09631d967^NEC PC-98 (Neko Project II Kai)^Needed to display text (Required)
|
||||||
FONT.ROM^np2kai/^2af6179d7de4893ea0b705c00e9a98d6^NEC PC-98 (Neko Project II Kai)^Alt font file (Required if normal font file is missing)
|
FONT.ROM^np2kai/^2af6179d7de4893ea0b705c00e9a98d6^NEC PC-98 (Neko Project II Kai)^Alt font file (Required if normal font file is missing)
|
||||||
bios.rom^np2kai/^e246140dec5124c5e404869a84caefce^NEC PC-98 (Neko Project II Kai)^BIOS file (Required)
|
bios.rom^np2kai/^e246140dec5124c5e404869a84caefce^NEC PC-98 (Neko Project II Kai)^BIOS file (Required)
|
||||||
|
@ -58,12 +71,12 @@ itf.rom^np2kai/^e9fc3890963b12cf15d0a2eea5815b72^NEC PC-98 (Neko Project II Kai)
|
||||||
sound.rom^np2kai/^caf90f22197aed6f14c471c21e64658d^NEC PC-98 (Neko Project II Kai)^BIOS file (Required)
|
sound.rom^np2kai/^caf90f22197aed6f14c471c21e64658d^NEC PC-98 (Neko Project II Kai)^BIOS file (Required)
|
||||||
bios9821.rom^np2kai/^Unknown^NEC PC-98 (Neko Project II Kai)^Optional BIOS file
|
bios9821.rom^np2kai/^Unknown^NEC PC-98 (Neko Project II Kai)^Optional BIOS file
|
||||||
d8000.rom^np2kai/^Unknown^NEC PC-98 (Neko Project II Kai)^Optional BIOS file
|
d8000.rom^np2kai/^Unknown^NEC PC-98 (Neko Project II Kai)^Optional BIOS file
|
||||||
2608_BD.WAV^np2kai/^Unknown^NEC PC-98 (Neko Project II Kai)^YM2608 RYTHM sample
|
2608_BD.WAV^np2kai/^d94546e70f17fd899be8df3544ab6cbb^NEC PC-98 (Neko Project II Kai)^YM2608 RYTHM sample
|
||||||
2608_SD.WAV^np2kai/^Unknown^NEC PC-98 (Neko Project II Kai)^YM2608 RYTHM sample
|
2608_SD.WAV^np2kai/^d71004351c8bbfdad53b18222c061d49^NEC PC-98 (Neko Project II Kai)^YM2608 RYTHM sample
|
||||||
2608_TOP.WAV^np2kai/^Unknown^NEC PC-98 (Neko Project II Kai)^YM2608 RYTHM sample
|
2608_TOP.WAV^np2kai/^593cff6597ab9380d822b8f824fd2c28^NEC PC-98 (Neko Project II Kai)^YM2608 RYTHM sample
|
||||||
2608_HH.WAV^np2kai/^Unknown^NEC PC-98 (Neko Project II Kai)^YM2608 RYTHM sample
|
2608_HH.WAV^np2kai/^08c54a0c1f774a5538a848a6665a34b4^NEC PC-98 (Neko Project II Kai)^YM2608 RYTHM sample
|
||||||
2608_TOM.WAV^np2kai/^Unknown^NEC PC-98 (Neko Project II Kai)^YM2608 RYTHM sample
|
2608_TOM.WAV^np2kai/^96a4ead13f364734f79b0c58af2f0e1f^NEC PC-98 (Neko Project II Kai)^YM2608 RYTHM sample
|
||||||
2608_RIM.WAV^np2kai/^Unknown^NEC PC-98 (Neko Project II Kai)^YM2608 RYTHM sample
|
2608_RIM.WAV^np2kai/^465ea0768b27da404aec45dfc501404b^NEC PC-98 (Neko Project II Kai)^YM2608 RYTHM sample
|
||||||
n88.rom^^4f984e04a99d56c4cfe36115415d6eb8^NEC PC-8000 / PC-8800 series (QUASI88)^BIOS File (Required)
|
n88.rom^^4f984e04a99d56c4cfe36115415d6eb8^NEC PC-8000 / PC-8800 series (QUASI88)^BIOS File (Required)
|
||||||
n88n.rom^^2ff07b8769367321128e03924af668a0^NEC PC-8000 / PC-8800 series (QUASI88)^Required for PC-8000 series emulation. (N BASIC mode)
|
n88n.rom^^2ff07b8769367321128e03924af668a0^NEC PC-8000 / PC-8800 series (QUASI88)^Required for PC-8000 series emulation. (N BASIC mode)
|
||||||
disk.rom^^793f86784e5608352a5d7f03f03e0858^NEC PC-8000 / PC-8800 series (QUASI88)^Required for loading disk images
|
disk.rom^^793f86784e5608352a5d7f03f03e0858^NEC PC-8000 / PC-8800 series (QUASI88)^Required for loading disk images
|
||||||
|
@ -72,6 +85,19 @@ n88_0.rom^^d675a2ca186c6efcd6277b835de4c7e5^NEC PC-8000 / PC-8800 series (QUASI8
|
||||||
n88_1.rom^^e844534dfe5744b381444dbe61ef1b66^NEC PC-8000 / PC-8800 series (QUASI88)^Optional BIOS file
|
n88_1.rom^^e844534dfe5744b381444dbe61ef1b66^NEC PC-8000 / PC-8800 series (QUASI88)^Optional BIOS file
|
||||||
n88_2.rom^^6548fa45061274dee1ea8ae1e9e93910^NEC PC-8000 / PC-8800 series (QUASI88)^Optional BIOS file
|
n88_2.rom^^6548fa45061274dee1ea8ae1e9e93910^NEC PC-8000 / PC-8800 series (QUASI88)^Optional BIOS file
|
||||||
n88_3.rom^^fc4b76a402ba501e6ba6de4b3e8b4273^NEC PC-8000 / PC-8800 series (QUASI88)^Optional BIOS file
|
n88_3.rom^^fc4b76a402ba501e6ba6de4b3e8b4273^NEC PC-8000 / PC-8800 series (QUASI88)^Optional BIOS file
|
||||||
|
neocd_f.rom^^8834880c33164ccbe6476b559f3e37de^Neo Geo CD^Front Loader BIOS (At least 1 required)
|
||||||
|
neocd_sf.rom^^043d76d5f0ef836500700c34faef774d^Neo Geo CD^Front Loader BIOS (SMKDAN 0.7b DEC 2010) (At least 1 required)
|
||||||
|
neocd_t.rom^^de3cf45d227ad44645b22aa83b49f450^Neo Geo CD^Top Loader BIOS (At least 1 required)
|
||||||
|
neocd_st.rom^^f6325a33c6d63ea4b9162a3fa8c32727^Neo Geo CD^Top Loader BIOS (SMKDAN 0.7b DEC 2010) (At least 1 required)
|
||||||
|
neocd_z.rom^^11526d58d4c524daef7d5d677dc6b004^Neo Geo CD^CDZ BIOS (At least 1 required)
|
||||||
|
neocd_sz.rom^^971ee8a36fb72da57aed01758f0a37f5^Neo Geo CD^CDZ BIOS (SMKDAN 0.7b DEC 2010) (At least 1 required)
|
||||||
|
front-sp1.bin^^5c2366f25ff92d71788468ca492ebeca^Neo Geo CD^Front Loader BIOS (MAME) (At least 1 required)
|
||||||
|
top-sp1.bin^^122aee210324c72e8a11116e6ef9c0d0^Neo Geo CD^Top Loader BIOS (MAME) (At least 1 required)
|
||||||
|
neocd.bin^^f39572af7584cb5b3f70ae8cc848aba2^Neo Geo CD^CDZ BIOS (MAME) (At least 1 required)
|
||||||
|
uni-bioscd.rom^^08ca8b2dba6662e8024f9e789711c6fc^Neo Geo CD^Universe BIOS CD 3.3
|
||||||
|
gb_bios.bin^^32fbbd84168d3482956eb3c5051637f5^Game Boy^Optional BIOS file (used to display the Nintendo logo at boot)
|
||||||
|
gbc_bios.bin^^dbfce9db9deaa2567f6a84fde55f9680^Game Boy Color^Optional BIOS file (used to display the Nintendo logo at boot)
|
||||||
|
gba_bios.bin^^a860e8c0b6d573d191e4ec7db1b1e4f6^Game Boy Advance^Optional BIOS file (used to display the Nintendo logo at boot)
|
||||||
aes_keys.txt^citra/sysdata/^Unknown^Nintendo 3DS^Decryption keys used by Citra emulator
|
aes_keys.txt^citra/sysdata/^Unknown^Nintendo 3DS^Decryption keys used by Citra emulator
|
||||||
bios7.bin^^df692a80a5b1bc90728bc3dfc76cd948^Nintendo DS^Used by MelonDS emulator (Required, see Wiki)
|
bios7.bin^^df692a80a5b1bc90728bc3dfc76cd948^Nintendo DS^Used by MelonDS emulator (Required, see Wiki)
|
||||||
bios9.bin^^a392174eb3e572fed6447e956bde4b25^Nintendo DS^Used by MelonDS emulator (Required, see Wiki)
|
bios9.bin^^a392174eb3e572fed6447e956bde4b25^Nintendo DS^Used by MelonDS emulator (Required, see Wiki)
|
||||||
|
@ -103,9 +129,9 @@ mpr-18811-mx.ic1^^255113ba943c92a54facd25a10fd780c^Sega Saturn^The King of Fight
|
||||||
mpr-19367-mx.ic1^^1cd19988d1d72a3e7caa0b73234c96b4^Sega Saturn^Ultraman: Hikari no Kyojin Densetsu ROM Cartridge (Required for this game)
|
mpr-19367-mx.ic1^^1cd19988d1d72a3e7caa0b73234c96b4^Sega Saturn^Ultraman: Hikari no Kyojin Densetsu ROM Cartridge (Required for this game)
|
||||||
iplrom.dat^keropi/^7fd4caabac1d9169e289f0f7bbf71d8e^Sharp X68000^X68000 BIOS (Required)
|
iplrom.dat^keropi/^7fd4caabac1d9169e289f0f7bbf71d8e^Sharp X68000^X68000 BIOS (Required)
|
||||||
cgrom.dat^keropi/^cb0a5cfcf7247a7eab74bb2716260269^Sharp X68000^Font file (Required)
|
cgrom.dat^keropi/^cb0a5cfcf7247a7eab74bb2716260269^Sharp X68000^Font file (Required)
|
||||||
iplrom30.dat^keropi/^Unknown^Sharp X68000^X68000 BIOS 2
|
iplrom30.dat^keropi/^f373003710ab4322642f527f567e020a^Sharp X68000^X68000 BIOS 2
|
||||||
iplromco.dat^keropi/^Unknown^Sharp X68000^X68000 BIOS 3
|
iplromco.dat^keropi/^cc78d4f4900f622bd6de1aed7f52592f^Sharp X68000^X68000 BIOS 3
|
||||||
iplromxv.dat^keropi/^Unknown^Sharp X68000^X68000 BIOS 4
|
iplromxv.dat^keropi/^0617321daa182c3f3d6f41fd02fb3275^Sharp X68000^X68000 BIOS 4
|
||||||
psxonpsp660.bin^^c53ca5908936d412331790f4426c6c33^Sony PSX^PS1 BIOS (At least 1 required)
|
psxonpsp660.bin^^c53ca5908936d412331790f4426c6c33^Sony PSX^PS1 BIOS (At least 1 required)
|
||||||
scph5500.bin^^8dd7d5296a650fac7319bce665a6a53c^Sony PSX^PS1 JP BIOS (At least 1 required)
|
scph5500.bin^^8dd7d5296a650fac7319bce665a6a53c^Sony PSX^PS1 JP BIOS (At least 1 required)
|
||||||
scph5501.bin^^490f666e1afb15b7362b406ed1cea246^Sony PSX^PS1 US BIOS (At least 1 required)
|
scph5501.bin^^490f666e1afb15b7362b406ed1cea246^Sony PSX^PS1 US BIOS (At least 1 required)
|
||||||
|
@ -119,11 +145,11 @@ ps1_rom.bin^^81bbe60ba7a3d1cea1d48c14cbcc647b^Sony PSX^PS1 BIOS (At least 1 requ
|
||||||
ps2-0200a-20040614.bin^^d333558cc14561c1fdc334c75d5f37b7^Sony PS2^PS2 US BIOS (At least 1 required)
|
ps2-0200a-20040614.bin^^d333558cc14561c1fdc334c75d5f37b7^Sony PS2^PS2 US BIOS (At least 1 required)
|
||||||
ps2-0200e-20040614.bin^^dc752f160044f2ed5fc1f4964db2a095^Sony PS2^PS2 EU BIOS (At least 1 required)
|
ps2-0200e-20040614.bin^^dc752f160044f2ed5fc1f4964db2a095^Sony PS2^PS2 EU BIOS (At least 1 required)
|
||||||
ps2-0200j-20040614.bin^^0eee5d1c779aa50e94edd168b4ebf42e^Sony PS2^PS2 JP BIOS (At least 1 required)
|
ps2-0200j-20040614.bin^^0eee5d1c779aa50e94edd168b4ebf42e^Sony PS2^PS2 JP BIOS (At least 1 required)
|
||||||
128p-0.rom^fuse/^Unknown^ZX Spectrum^Pentagon 128K/512K/1024 ROM (Required)
|
128p-0.rom^fuse/^a249565f03b98d004ee7f019570069cd^ZX Spectrum^Pentagon 128K/512K/1024 ROM (Required)
|
||||||
128p-1.rom^fuse/^Unknown^ZX Spectrum^Pentagon 128K/512K/1024 ROM (Required)
|
128p-1.rom^fuse/^6e09e5d3c4aef166601669feaaadc01c^ZX Spectrum^Pentagon 128K/512K/1024 ROM (Required)
|
||||||
trdos.rom^fuse/^Unknown^ZX Spectrum^Pentagon 128K/512K/1024 ROM (Required)
|
trdos.rom^fuse/^0da70a5d2a0e733398e005b96b7e4ba6^ZX Spectrum^Pentagon 128K/512K/1024 ROM (Required)
|
||||||
gluck.rom^fuse/^Unknown^ZX Spectrum^Pentagon 512K/1024 ROM (Required)
|
gluck.rom^fuse/^d5869034604dbfd2c1d54170e874fd0a^ZX Spectrum^Pentagon 512K/1024 ROM (Required)
|
||||||
256s-0.rom^fuse/^Unknown^ZX Spectrum^Scorpion 256K ROM (Required)
|
256s-0.rom^fuse/^b9fda5b6a747ff037365b0e2d8c4379a^ZX Spectrum^Scorpion 256K ROM (Required)
|
||||||
256s-1.rom^fuse/^Unknown^ZX Spectrum^Scorpion 256K ROM (Required)
|
256s-1.rom^fuse/^643861ad34831b255bf2eb64e8b6ecb8^ZX Spectrum^Scorpion 256K ROM (Required)
|
||||||
256s-2.rom^fuse/^Unknown^ZX Spectrum^Scorpion 256K ROM (Required)
|
256s-2.rom^fuse/^d8ad507b1c915a9acfe0d73957082926^ZX Spectrum^Scorpion 256K ROM (Required)
|
||||||
256s-3.rom^fuse/^Unknown^ZX Spectrum^Scorpion 256K ROM (Required)
|
256s-3.rom^fuse/^ce0723f9bc02f4948c15d3b3230ae831^ZX Spectrum^Scorpion 256K ROM (Required)
|
|
@ -6,8 +6,8 @@ roms_folder=/home/deck/retrodeck/roms
|
||||||
saves_folder=/home/deck/retrodeck/saves
|
saves_folder=/home/deck/retrodeck/saves
|
||||||
states_folder=/home/deck/retrodeck/states
|
states_folder=/home/deck/retrodeck/states
|
||||||
bios_folder=/home/deck/retrodeck/bios
|
bios_folder=/home/deck/retrodeck/bios
|
||||||
media_folder=/home/deck/retrodeck/downloaded_media
|
media_folder=/home/deck/retrodeck/ES-DE/downloaded_media
|
||||||
themes_folder=/home/deck/retrodeck/themes
|
themes_folder=/home/deck/retrodeck/ES-DE/themes
|
||||||
logs_folder=/home/deck/retrodeck/logs
|
logs_folder=/home/deck/retrodeck/logs
|
||||||
screenshots_folder=/home/deck/retrodeck/screenshots
|
screenshots_folder=/home/deck/retrodeck/screenshots
|
||||||
mods_folder=/home/deck/retrodeck/mods
|
mods_folder=/home/deck/retrodeck/mods
|
||||||
|
@ -82,3 +82,4 @@ duckstation=false
|
||||||
pcsx2=false
|
pcsx2=false
|
||||||
primehack=false
|
primehack=false
|
||||||
citra=false
|
citra=false
|
||||||
|
rpcs3=false
|
||||||
|
|
BIN
emu-configs/mame/cheat0264.zip
Normal file
BIN
emu-configs/mame/cheat0264.zip
Normal file
Binary file not shown.
|
@ -1,16 +1,11 @@
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<!-- This file is autogenerated; comments and unknown tags will be stripped -->
|
<!-- This file is autogenerated; comments and unknown tags will be stripped -->
|
||||||
<mameconfig version="10">
|
<mameconfig version="10">
|
||||||
<system name="default">
|
<system name="default">
|
||||||
<input>
|
<input>
|
||||||
<port type="P1_JOYSTICK_UP">
|
|
||||||
<newseq type="standard">
|
|
||||||
JOYCODE_1_HAT1UP
|
|
||||||
</newseq>
|
|
||||||
</port>
|
|
||||||
<port type="P1_START">
|
<port type="P1_START">
|
||||||
<newseq type="standard">
|
<newseq type="standard">
|
||||||
JOYCODE_1_BUTTON8
|
JOYCODE_1_BUTTON8 OR KEYCODE_1
|
||||||
</newseq>
|
</newseq>
|
||||||
</port>
|
</port>
|
||||||
<port type="P1_SELECT">
|
<port type="P1_SELECT">
|
||||||
|
@ -20,52 +15,72 @@
|
||||||
</port>
|
</port>
|
||||||
<port type="P2_START">
|
<port type="P2_START">
|
||||||
<newseq type="standard">
|
<newseq type="standard">
|
||||||
JOYCODE_2_BUTTON12
|
JOYCODE_2_BUTTON8 OR KEYCODE_2
|
||||||
</newseq>
|
</newseq>
|
||||||
</port>
|
</port>
|
||||||
<port type="P2_SELECT">
|
<port type="P2_SELECT">
|
||||||
<newseq type="standard">
|
<newseq type="standard">
|
||||||
JOYCODE_2_BUTTON11
|
KEYCODE_6 OR JOYCODE_2_BUTTON7
|
||||||
|
</newseq>
|
||||||
|
</port>
|
||||||
|
<port type="P3_START">
|
||||||
|
<newseq type="standard">
|
||||||
|
JOYCODE_3_BUTTON8 OR KEYCODE_3
|
||||||
|
</newseq>
|
||||||
|
</port>
|
||||||
|
<port type="P3_SELECT">
|
||||||
|
<newseq type="standard">
|
||||||
|
KEYCODE_7 OR JOYCODE_3_BUTTON7
|
||||||
|
</newseq>
|
||||||
|
</port>
|
||||||
|
<port type="P4_START">
|
||||||
|
<newseq type="standard">
|
||||||
|
JOYCODE_4_BUTTON8 OR KEYCODE_4
|
||||||
|
</newseq>
|
||||||
|
</port>
|
||||||
|
<port type="P4_SELECT">
|
||||||
|
<newseq type="standard">
|
||||||
|
KEYCODE_8 OR JOYCODE_4_BUTTON7
|
||||||
</newseq>
|
</newseq>
|
||||||
</port>
|
</port>
|
||||||
<port type="START1">
|
<port type="START1">
|
||||||
<newseq type="standard">
|
<newseq type="standard">
|
||||||
KEYCODE_1 OR JOYCODE_1_BUTTON12
|
JOYCODE_1_BUTTON8 OR KEYCODE_S KEYCODE_1
|
||||||
</newseq>
|
</newseq>
|
||||||
</port>
|
</port>
|
||||||
<port type="START2">
|
<port type="START2">
|
||||||
<newseq type="standard">
|
<newseq type="standard">
|
||||||
KEYCODE_2 OR JOYCODE_2_BUTTON12
|
JOYCODE_2_BUTTON8 OR KEYCODE_S KEYCODE_2
|
||||||
</newseq>
|
</newseq>
|
||||||
</port>
|
</port>
|
||||||
<port type="START3">
|
<port type="START3">
|
||||||
<newseq type="standard">
|
<newseq type="standard">
|
||||||
KEYCODE_3 OR JOYCODE_3_BUTTON12
|
JOYCODE_3_BUTTON8 OR KEYCODE_S KEYCODE_3
|
||||||
</newseq>
|
</newseq>
|
||||||
</port>
|
</port>
|
||||||
<port type="START4">
|
<port type="START4">
|
||||||
<newseq type="standard">
|
<newseq type="standard">
|
||||||
KEYCODE_4 OR JOYCODE_4_BUTTON12
|
JOYCODE_4_BUTTON8 OR KEYCODE_S KEYCODE_4
|
||||||
</newseq>
|
</newseq>
|
||||||
</port>
|
</port>
|
||||||
<port type="COIN1">
|
<port type="COIN1">
|
||||||
<newseq type="standard">
|
<newseq type="standard">
|
||||||
KEYCODE_LSHIFT KEYCODE_1 OR JOYCODE_1_BUTTON11
|
JOYCODE_1_BUTTON7 OR KEYCODE_LSHIFT KEYCODE_1
|
||||||
</newseq>
|
</newseq>
|
||||||
</port>
|
</port>
|
||||||
<port type="COIN2">
|
<port type="COIN2">
|
||||||
<newseq type="standard">
|
<newseq type="standard">
|
||||||
KEYCODE_LSHIFT KEYCODE_2 OR JOYCODE_2_BUTTON11
|
JOYCODE_2_BUTTON7 OR KEYCODE_LSHIFT KEYCODE_2
|
||||||
</newseq>
|
</newseq>
|
||||||
</port>
|
</port>
|
||||||
<port type="COIN3">
|
<port type="COIN3">
|
||||||
<newseq type="standard">
|
<newseq type="standard">
|
||||||
KEYCODE_LSHIFT KEYCODE_3 OR JOYCODE_3_BUTTON11
|
JOYCODE_3_BUTTON7 OR KEYCODE_LSHIFT KEYCODE_3
|
||||||
</newseq>
|
</newseq>
|
||||||
</port>
|
</port>
|
||||||
<port type="COIN4">
|
<port type="COIN4">
|
||||||
<newseq type="standard">
|
<newseq type="standard">
|
||||||
KEYCODE_LSHIFT KEYCODE_4 OR JOYCODE_4_BUTTON11
|
JOYCODE_4_BUTTON7 OR KEYCODE_LSHIFT KEYCODE_4
|
||||||
</newseq>
|
</newseq>
|
||||||
</port>
|
</port>
|
||||||
<port type="BILL1">
|
<port type="BILL1">
|
||||||
|
@ -113,31 +128,6 @@
|
||||||
KEYCODE_LALT KEYCODE_T KEYCODE_4
|
KEYCODE_LALT KEYCODE_T KEYCODE_4
|
||||||
</newseq>
|
</newseq>
|
||||||
</port>
|
</port>
|
||||||
<port type="SERVICE">
|
|
||||||
<newseq type="standard">
|
|
||||||
KEYCODE_LALT KEYCODE_S KEYCODE_0
|
|
||||||
</newseq>
|
|
||||||
</port>
|
|
||||||
<port type="TILT">
|
|
||||||
<newseq type="standard">
|
|
||||||
KEYCODE_LALT KEYCODE_T KEYCODE_0
|
|
||||||
</newseq>
|
|
||||||
</port>
|
|
||||||
<port type="MEMORY_RESET">
|
|
||||||
<newseq type="standard">
|
|
||||||
NONE
|
|
||||||
</newseq>
|
|
||||||
</port>
|
|
||||||
<port type="VOLUME_DOWN">
|
|
||||||
<newseq type="standard">
|
|
||||||
NONE
|
|
||||||
</newseq>
|
|
||||||
</port>
|
|
||||||
<port type="VOLUME_UP">
|
|
||||||
<newseq type="standard">
|
|
||||||
NONE
|
|
||||||
</newseq>
|
|
||||||
</port>
|
|
||||||
<port type="UI_MENU">
|
<port type="UI_MENU">
|
||||||
<newseq type="standard">
|
<newseq type="standard">
|
||||||
KEYCODE_LCONTROL KEYCODE_M
|
KEYCODE_LCONTROL KEYCODE_M
|
||||||
|
@ -148,19 +138,14 @@
|
||||||
KEYCODE_LCONTROL KEYCODE_Q
|
KEYCODE_LCONTROL KEYCODE_Q
|
||||||
</newseq>
|
</newseq>
|
||||||
</port>
|
</port>
|
||||||
<port type="UI_CLEAR">
|
|
||||||
<newseq type="standard">
|
|
||||||
KEYCODE_DEL
|
|
||||||
</newseq>
|
|
||||||
</port>
|
|
||||||
<port type="UI_PAGE_UP">
|
<port type="UI_PAGE_UP">
|
||||||
<newseq type="standard">
|
<newseq type="standard">
|
||||||
KEYCODE_PGUP OR JOYCODE_1_ZAXIS_POS_SWITCH
|
JOYCODE_1_RYAXIS_NEG_SWITCH OR KEYCODE_PGUP
|
||||||
</newseq>
|
</newseq>
|
||||||
</port>
|
</port>
|
||||||
<port type="UI_PAGE_DOWN">
|
<port type="UI_PAGE_DOWN">
|
||||||
<newseq type="standard">
|
<newseq type="standard">
|
||||||
KEYCODE_PGDN OR JOYCODE_1_RZAXIS_POS_SWITCH
|
JOYCODE_1_RYAXIS_POS_SWITCH OR KEYCODE_PGDN
|
||||||
</newseq>
|
</newseq>
|
||||||
</port>
|
</port>
|
||||||
<port type="UI_PREV_GROUP">
|
<port type="UI_PREV_GROUP">
|
||||||
|
@ -188,11 +173,6 @@
|
||||||
NONE
|
NONE
|
||||||
</newseq>
|
</newseq>
|
||||||
</port>
|
</port>
|
||||||
<port type="UI_PAUSE">
|
|
||||||
<newseq type="standard">
|
|
||||||
KEYCODE_LCONTROL KEYCODE_P
|
|
||||||
</newseq>
|
|
||||||
</port>
|
|
||||||
<port type="UI_PAUSE_SINGLE">
|
<port type="UI_PAUSE_SINGLE">
|
||||||
<newseq type="standard">
|
<newseq type="standard">
|
||||||
NONE
|
NONE
|
||||||
|
@ -200,7 +180,7 @@
|
||||||
</port>
|
</port>
|
||||||
<port type="UI_REWIND_SINGLE">
|
<port type="UI_REWIND_SINGLE">
|
||||||
<newseq type="standard">
|
<newseq type="standard">
|
||||||
KEYCODE_LCONTROL KEYCODE_MINUS
|
KEYCODE_LCONTROL KEYCODE_MINUSPAD
|
||||||
</newseq>
|
</newseq>
|
||||||
</port>
|
</port>
|
||||||
<port type="UI_SAVE_STATE">
|
<port type="UI_SAVE_STATE">
|
||||||
|
@ -255,7 +235,7 @@
|
||||||
</port>
|
</port>
|
||||||
<port type="UI_FAST_FORWARD">
|
<port type="UI_FAST_FORWARD">
|
||||||
<newseq type="standard">
|
<newseq type="standard">
|
||||||
KEYCODE_LCONTROL KEYCODE_PLUS
|
KEYCODE_LCONTROL KEYCODE_PLUSPAD
|
||||||
</newseq>
|
</newseq>
|
||||||
</port>
|
</port>
|
||||||
<port type="UI_SHOW_FPS">
|
<port type="UI_SHOW_FPS">
|
||||||
|
@ -275,7 +255,7 @@
|
||||||
</port>
|
</port>
|
||||||
<port type="UI_RECORD_AVI">
|
<port type="UI_RECORD_AVI">
|
||||||
<newseq type="standard">
|
<newseq type="standard">
|
||||||
NONE
|
KEYCODE_LCONTROL KEYCODE_V
|
||||||
</newseq>
|
</newseq>
|
||||||
</port>
|
</port>
|
||||||
<port type="UI_TOGGLE_CHEAT">
|
<port type="UI_TOGGLE_CHEAT">
|
||||||
|
@ -283,84 +263,14 @@
|
||||||
KEYCODE_LCONTROL KEYCODE_C
|
KEYCODE_LCONTROL KEYCODE_C
|
||||||
</newseq>
|
</newseq>
|
||||||
</port>
|
</port>
|
||||||
<port type="UI_DISPLAY_COMMENT">
|
|
||||||
<newseq type="standard">
|
|
||||||
NONE
|
|
||||||
</newseq>
|
|
||||||
</port>
|
|
||||||
<port type="UI_ZOOM_IN">
|
|
||||||
<newseq type="standard">
|
|
||||||
NONE
|
|
||||||
</newseq>
|
|
||||||
</port>
|
|
||||||
<port type="UI_ZOOM_OUT">
|
|
||||||
<newseq type="standard">
|
|
||||||
NONE
|
|
||||||
</newseq>
|
|
||||||
</port>
|
|
||||||
<port type="UI_ZOOM_DEFAULT">
|
|
||||||
<newseq type="standard">
|
|
||||||
NONE
|
|
||||||
</newseq>
|
|
||||||
</port>
|
|
||||||
<port type="UI_ROTATE">
|
|
||||||
<newseq type="standard">
|
|
||||||
NONE
|
|
||||||
</newseq>
|
|
||||||
</port>
|
|
||||||
<port type="UI_SHOW_PROFILER">
|
|
||||||
<newseq type="standard">
|
|
||||||
NONE
|
|
||||||
</newseq>
|
|
||||||
</port>
|
|
||||||
<port type="UI_RELEASE_POINTER">
|
|
||||||
<newseq type="standard">
|
|
||||||
NONE
|
|
||||||
</newseq>
|
|
||||||
</port>
|
|
||||||
<port type="UI_PASTE">
|
|
||||||
<newseq type="standard">
|
|
||||||
NONE
|
|
||||||
</newseq>
|
|
||||||
</port>
|
|
||||||
<port type="UI_TAPE_START">
|
|
||||||
<newseq type="standard">
|
|
||||||
NONE
|
|
||||||
</newseq>
|
|
||||||
</port>
|
|
||||||
<port type="UI_TAPE_STOP">
|
|
||||||
<newseq type="standard">
|
|
||||||
NONE
|
|
||||||
</newseq>
|
|
||||||
</port>
|
|
||||||
<port type="UI_FOCUS_NEXT">
|
<port type="UI_FOCUS_NEXT">
|
||||||
<newseq type="standard">
|
<newseq type="standard">
|
||||||
KEYCODE_TAB OR JOYCODE_1_RZAXIS_POS_SWITCH
|
JOYCODE_1_RXAXIS_POS_SWITCH
|
||||||
</newseq>
|
</newseq>
|
||||||
</port>
|
</port>
|
||||||
<port type="UI_FOCUS_PREV">
|
<port type="UI_FOCUS_PREV">
|
||||||
<newseq type="standard">
|
<newseq type="standard">
|
||||||
KEYCODE_LSHIFT KEYCODE_TAB OR JOYCODE_1_ZAXIS_POS_SWITCH
|
JOYCODE_1_RXAXIS_NEG_SWITCH OR KEYCODE_TAB
|
||||||
</newseq>
|
|
||||||
</port>
|
|
||||||
<port type="UI_DATS">
|
|
||||||
<newseq type="standard">
|
|
||||||
NONE
|
|
||||||
</newseq>
|
|
||||||
</port>
|
|
||||||
<port type="UI_FAVORITES">
|
|
||||||
<newseq type="standard">
|
|
||||||
JOYCODE_1_BUTTON4
|
|
||||||
</newseq>
|
|
||||||
</port>
|
|
||||||
<port type="UI_EXPORT">
|
|
||||||
<newseq type="standard">
|
|
||||||
NONE
|
|
||||||
</newseq>
|
|
||||||
</port>
|
|
||||||
<port type="UI_AUDIT">
|
|
||||||
<newseq type="standard">
|
|
||||||
NONE
|
|
||||||
</newseq>
|
</newseq>
|
||||||
</port>
|
</port>
|
||||||
<port type="TOGGLE_FULLSCREEN">
|
<port type="TOGGLE_FULLSCREEN">
|
||||||
|
@ -368,11 +278,6 @@
|
||||||
KEYCODE_LCONTROL KEYCODE_ENTER
|
KEYCODE_LCONTROL KEYCODE_ENTER
|
||||||
</newseq>
|
</newseq>
|
||||||
</port>
|
</port>
|
||||||
<port type="TOGGLE_FILTER">
|
|
||||||
<newseq type="standard">
|
|
||||||
NONE
|
|
||||||
</newseq>
|
|
||||||
</port>
|
|
||||||
<port type="DECREASE_PRESCALE">
|
<port type="DECREASE_PRESCALE">
|
||||||
<newseq type="standard">
|
<newseq type="standard">
|
||||||
KEYCODE_LCONTROL KEYCODE_Y
|
KEYCODE_LCONTROL KEYCODE_Y
|
||||||
|
@ -383,11 +288,6 @@
|
||||||
KEYCODE_LCONTROL KEYCODE_U
|
KEYCODE_LCONTROL KEYCODE_U
|
||||||
</newseq>
|
</newseq>
|
||||||
</port>
|
</port>
|
||||||
<port type="RENDER_AVI">
|
|
||||||
<newseq type="standard">
|
|
||||||
NONE
|
|
||||||
</newseq>
|
|
||||||
</port>
|
|
||||||
</input>
|
</input>
|
||||||
</system>
|
</system>
|
||||||
</mameconfig>
|
</mameconfig>
|
||||||
|
|
BIN
emu-configs/retroarch/ScummVM.zip
Normal file
BIN
emu-configs/retroarch/ScummVM.zip
Normal file
Binary file not shown.
|
@ -421,6 +421,7 @@ mgba_sgb_borders = "ON"
|
||||||
mgba_skip_bios = "OFF"
|
mgba_skip_bios = "OFF"
|
||||||
mgba_solar_sensor_level = "0"
|
mgba_solar_sensor_level = "0"
|
||||||
mgba_use_bios = "ON"
|
mgba_use_bios = "ON"
|
||||||
|
mesen_fdsautoinsertdisk = "enabled"
|
||||||
mupen64plus-169screensize = "960x540"
|
mupen64plus-169screensize = "960x540"
|
||||||
mupen64plus-43screensize = "640x480"
|
mupen64plus-43screensize = "640x480"
|
||||||
mupen64plus-alt-map = "False"
|
mupen64plus-alt-map = "False"
|
||||||
|
|
|
@ -47,4 +47,5 @@ main_window_stop=Ctrl+Q
|
||||||
main_window_toggle_fullscreen=Ctrl+Return
|
main_window_toggle_fullscreen=Ctrl+Return
|
||||||
|
|
||||||
[main_window]
|
[main_window]
|
||||||
|
confirmationBoxExitGame=false
|
||||||
infoBoxEnabledWelcome=false
|
infoBoxEnabledWelcome=false
|
|
@ -76,8 +76,8 @@ check_for_version_update() {
|
||||||
log i "Showing new version found dialog"
|
log i "Showing new version found dialog"
|
||||||
choice=$(zenity --icon-name=net.retrodeck.retrodeck --info --no-wrap --ok-label="OK" --extra-button="Ignore this version" \
|
choice=$(zenity --icon-name=net.retrodeck.retrodeck --info --no-wrap --ok-label="OK" --extra-button="Ignore this version" \
|
||||||
--window-icon="/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \
|
--window-icon="/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \
|
||||||
--title "RetroDECK Update Available" \
|
--title "RetroDECK - New Update Available" \
|
||||||
--text="There is a new version of RetroDECK on the stable release channel $online_version. Please update through the Discover app!\n\nIf you would like to ignore this version and recieve a notification at the NEXT version,\nclick the \"Ignore this version\" button.")
|
--text="There is a new version of RetroDECK available: <span foreground='$blue'><b>$online_version</b></span>.\nYou can easily update from the app store you have installed, examples: KDE Discover or Gnome Software.\n\nIf you would like to ignore this notification, click the \"Ignore this version\" button.")
|
||||||
rc=$? # Capture return code, as "OK" button has no text value
|
rc=$? # Capture return code, as "OK" button has no text value
|
||||||
if [[ $rc == "1" ]]; then # If any button other than "OK" was clicked
|
if [[ $rc == "1" ]]; then # If any button other than "OK" was clicked
|
||||||
log i "Selected: \"OK\""
|
log i "Selected: \"OK\""
|
||||||
|
@ -87,8 +87,8 @@ check_for_version_update() {
|
||||||
log i "Showing update request dialog as \"$online_version\" was found and is greater then \"$version\""
|
log i "Showing update request dialog as \"$online_version\" was found and is greater then \"$version\""
|
||||||
choice=$(zenity --icon-name=net.retrodeck.retrodeck --info --no-wrap --ok-label="Yes" --extra-button="No" --extra-button="Ignore this version" \
|
choice=$(zenity --icon-name=net.retrodeck.retrodeck --info --no-wrap --ok-label="Yes" --extra-button="No" --extra-button="Ignore this version" \
|
||||||
--window-icon="/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \
|
--window-icon="/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \
|
||||||
--title "RetroDECK Update Available" \
|
--title "RetroDECK - New Cooker Version Available" \
|
||||||
--text="There is a more recent build of the RetroDECK cooker branch.\nYou are running version $hard_version, the latest is $online_version.\n\nWould you like to update to it?\nIf you would like to skip reminders about this version, click \"Ignore this version\".\nYou will be reminded again at the next version update.\n\nIf you would like to disable these update notifications entirely, disable Online Update Checks in the Configurator.")
|
--text="There is a more recent version of RetroDECK cooker.\nYou are running version <span foreground='$blue'><b>$hard_version</b></span>. The latest is <span foreground='$blue'><b>$online_version</b></span>.\n\nWould you like to update?\nIf you would like to ignore this notification, click the \"Ignore this version\" button.\n\nIf you would like to disable these notifications entirely: disable Online Update Checks in the Configurator.")
|
||||||
rc=$? # Capture return code, as "Yes" button has no text value
|
rc=$? # Capture return code, as "Yes" button has no text value
|
||||||
if [[ $rc == "1" ]]; then # If any button other than "Yes" was clicked
|
if [[ $rc == "1" ]]; then # If any button other than "Yes" was clicked
|
||||||
if [[ $choice == "Ignore this version" ]]; then
|
if [[ $choice == "Ignore this version" ]]; then
|
||||||
|
@ -99,22 +99,46 @@ check_for_version_update() {
|
||||||
log i "Selected: \"Yes\""
|
log i "Selected: \"Yes\""
|
||||||
configurator_generic_dialog "RetroDECK Online Update" "The update process may take several minutes.\n\nAfter the update is complete, RetroDECK will close. When you run it again you will be using the latest version."
|
configurator_generic_dialog "RetroDECK Online Update" "The update process may take several minutes.\n\nAfter the update is complete, RetroDECK will close. When you run it again you will be using the latest version."
|
||||||
(
|
(
|
||||||
local latest_cooker_download=$(curl --silent https://api.github.com/repos/XargonWan/$update_repo/releases/latest | grep '"browser_download_url":' | sed -E 's/.*"([^"]+)".*/\1/')
|
local latest_cooker_download=$(curl --silent https://api.github.com/repos/XargonWan/RetroDECK-cooker/releases/latest | grep '"browser_download_url":.*flatpak' | grep -v '\.sha' | sed -E 's/.*"([^"]+)".*/\1/')
|
||||||
local temp_folder="$rdhome/RetroDECK_Updates"
|
local temp_folder="$rdhome/RetroDECK_Updates"
|
||||||
create_dir $temp_folder
|
create_dir $temp_folder
|
||||||
log i "Downloading version \"$online_version\" in \"$temp_folder/RetroDECK-cooker.flatpak\" from url: \"$latest_cooker_download\""
|
log i "Downloading version \"$online_version\" in \"$temp_folder/RetroDECK-cooker.flatpak\" from url: \"$latest_cooker_download\""
|
||||||
|
# Downloading the flatpak file
|
||||||
wget -P "$temp_folder" "$latest_cooker_download"
|
wget -P "$temp_folder" "$latest_cooker_download"
|
||||||
log d "Uninstalling old RetroDECK flatpak"
|
# And its sha
|
||||||
flatpak-spawn --host flatpak remove --noninteractive -y net.retrodeck.retrodeck # Remove current version before installing new one, to avoid duplicates
|
wget -P "$temp_folder" "$latest_cooker_download.sha"
|
||||||
log d "Installing new flatpak file from: \"$temp_folder/RetroDECK-cooker.flatpak\""
|
|
||||||
|
# Get the expected SHA checksum from the SHA file
|
||||||
|
local expected_sha=$(cat "$temp_folder/$(basename "$latest_cooker_download").sha" | awk '{print $1}')
|
||||||
|
|
||||||
|
# Check if the file exists
|
||||||
if [ -f "$temp_folder/RetroDECK-cooker.flatpak" ]; then
|
if [ -f "$temp_folder/RetroDECK-cooker.flatpak" ]; then
|
||||||
log d "Flatpak file \"$temp_folder/RetroDECK-cooker.flatpak\" found, proceeding."
|
# Calculate the actual SHA checksum of the file
|
||||||
flatpak-spawn --host flatpak install --user --bundle --noninteractive -y "$temp_folder/RetroDECK-cooker.flatpak"
|
actual_sha=$(sha256sum "$temp_folder/RetroDECK-cooker.flatpak" | awk '{print $1}')
|
||||||
|
|
||||||
|
# Log the found and expected SHA checksums
|
||||||
|
log d "Found SHA: $actual_sha"
|
||||||
|
log d "Expected SHA: $expected_sha"
|
||||||
|
|
||||||
|
# Check if the SHA checksum matches
|
||||||
|
if [ "$actual_sha" = "$expected_sha" ]; then
|
||||||
|
log d "Flatpak file \"$temp_folder/RetroDECK-cooker.flatpak\" found and SHA checksum matches, proceeding."
|
||||||
|
log d "Uninstalling old RetroDECK flatpak"
|
||||||
|
# Remove current version before installing new one, to avoid duplicates
|
||||||
|
flatpak-spawn --host flatpak remove --noninteractive -y net.retrodeck.retrodeck && log d "Uninstallation successful"
|
||||||
|
log d "Installing new flatpak file from: \"$temp_folder/RetroDECK-cooker.flatpak\""
|
||||||
|
flatpak-spawn --host flatpak install --user --bundle --noninteractive -y "$temp_folder/RetroDECK-cooker.flatpak" && log d "Installation successful"
|
||||||
else
|
else
|
||||||
log e "Flatpak file \"$temp_folder/RetroDECK-cooker.flatpak\" NOT FOUND. Quitting"
|
log e "Flatpak file \"$temp_folder/RetroDECK-cooker.flatpak\" found but SHA checksum does not match. Quitting."
|
||||||
configurator_generic_dialog "RetroDECK Online Update" "There was an error during the update: flatpak file not found please check the log file."
|
configurator_generic_dialog "RetroDECK Online Update" "There was an error during the update: flatpak file found but SHA checksum does not match. Please check the log file."
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
else
|
||||||
|
log e "Flatpak file \"$temp_folder/RetroDECK-cooker.flatpak\" NOT FOUND. Quitting."
|
||||||
|
configurator_generic_dialog "RetroDECK Online Update" "There was an error during the update: flatpak file not found. Please check the log file."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
rm -rf "$temp_folder" # Cleanup old bundles to save space
|
rm -rf "$temp_folder" # Cleanup old bundles to save space
|
||||||
) |
|
) |
|
||||||
zenity --icon-name=net.retrodeck.retrodeck --progress --no-cancel --pulsate --auto-close \
|
zenity --icon-name=net.retrodeck.retrodeck --progress --no-cancel --pulsate --auto-close \
|
||||||
|
|
|
@ -26,6 +26,29 @@ compress_game() {
|
||||||
elif [[ "$1" == "rvz" ]]; then
|
elif [[ "$1" == "rvz" ]]; then
|
||||||
dolphin-tool convert -f rvz -b 131072 -c zstd -l 5 -i "$source_file" -o "$dest_file.rvz"
|
dolphin-tool convert -f rvz -b 131072 -c zstd -l 5 -i "$source_file" -o "$dest_file.rvz"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [[ $post_compression_cleanup == "true" ]]; then # Remove file(s) if requested
|
||||||
|
if [[ -f "${file%.*}.$compatible_compression_format" ]]; then
|
||||||
|
log i "Performing post-compression file cleanup"
|
||||||
|
if [[ "$file" == *".cue" ]]; then
|
||||||
|
local cue_bin_files=$(grep -o -P "(?<=FILE \").*(?=\".*$)" "$file")
|
||||||
|
local file_path=$(dirname "$(realpath "$file")")
|
||||||
|
while IFS= read -r line
|
||||||
|
do
|
||||||
|
log i "Removing file $file_path/$line"
|
||||||
|
rm -f "$file_path/$line"
|
||||||
|
done < <(printf '%s\n' "$cue_bin_files")
|
||||||
|
log i "Removing file $(realpath $file)"
|
||||||
|
rm -f $(realpath "$file")
|
||||||
|
else
|
||||||
|
log i "Removing file $(realpath $file)"
|
||||||
|
rm -f "$(realpath "$file")"
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
log i "Compressed file ${file%.*}.$compatible_compression_format not found, skipping original file deletion"
|
||||||
|
configurator_generic_dialog "RetroDECK Configurator - RetroDECK: Compression Tool" "A compressed version of the file was not found, skipping deletion."
|
||||||
|
fi
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
find_compatible_compression_format() {
|
find_compatible_compression_format() {
|
||||||
|
@ -66,7 +89,7 @@ validate_for_chd() {
|
||||||
log i "Validating .cue associated .bin files"
|
log i "Validating .cue associated .bin files"
|
||||||
local cue_bin_files=$(grep -o -P "(?<=FILE \").*(?=\".*$)" "$file")
|
local cue_bin_files=$(grep -o -P "(?<=FILE \").*(?=\".*$)" "$file")
|
||||||
log i "Associated bin files read:"
|
log i "Associated bin files read:"
|
||||||
log i $(printf '%s\n' "$cue_bin_files")
|
log i "$(printf '%s\n' "$cue_bin_files")"
|
||||||
if [[ ! -z "$cue_bin_files" ]]; then
|
if [[ ! -z "$cue_bin_files" ]]; then
|
||||||
while IFS= read -r line
|
while IFS= read -r line
|
||||||
do
|
do
|
||||||
|
@ -96,6 +119,71 @@ validate_for_chd() {
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
find_compatible_games() {
|
||||||
|
# The function takes the following arguments, which alter what files are compressed:
|
||||||
|
# "everything" - Compresses all games found into their compatible formats
|
||||||
|
# "all" - Compresses a list of user-chosen files into their compatible formats
|
||||||
|
# "chd" or "zip" or "rvz" - Compresses a list of user-chosen files into the given format
|
||||||
|
|
||||||
|
if [[ -f "$godot_compression_compatible_games" ]]; then
|
||||||
|
rm -f "$godot_compression_compatible_games" # Godot data transfer temp files
|
||||||
|
fi
|
||||||
|
touch "$godot_compression_compatible_games"
|
||||||
|
|
||||||
|
compressable_games_list=()
|
||||||
|
all_compressable_games=()
|
||||||
|
games_to_compress=()
|
||||||
|
target_selection="$1"
|
||||||
|
|
||||||
|
if [[ "$1" == "everything" ]]; then
|
||||||
|
local compression_format="all"
|
||||||
|
else
|
||||||
|
local compression_format="$1"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ $compression_format == "all" ]]; then
|
||||||
|
local compressable_systems_list=$(cat $compression_targets | sed '/^$/d' | sed '/^\[/d')
|
||||||
|
else
|
||||||
|
local compressable_systems_list=$(sed -n '/\['"$compression_format"'\]/, /\[/{ /\['"$compression_format"'\]/! { /\[/! p } }' $compression_targets | sed '/^$/d')
|
||||||
|
fi
|
||||||
|
|
||||||
|
while IFS= read -r system # Find and validate all games that are able to be compressed with this compression type
|
||||||
|
do
|
||||||
|
compression_candidates=$(find "$roms_folder/$system" -type f -not -iname "*.txt")
|
||||||
|
if [[ ! -z $compression_candidates ]]; then
|
||||||
|
while IFS= read -r game
|
||||||
|
do
|
||||||
|
local compatible_compression_format=$(find_compatible_compression_format "$game")
|
||||||
|
if [[ $compression_format == "chd" ]]; then
|
||||||
|
if [[ $compatible_compression_format == "chd" ]]; then
|
||||||
|
all_compressable_games=("${all_compressable_games[@]}" "$game")
|
||||||
|
compressable_games_list=("${compressable_games_list[@]}" "false" "${game#$roms_folder}" "$game")
|
||||||
|
echo "${game}"^"$compatible_compression_format" >> "$godot_compression_compatible_games"
|
||||||
|
fi
|
||||||
|
elif [[ $compression_format == "zip" ]]; then
|
||||||
|
if [[ $compatible_compression_format == "zip" ]]; then
|
||||||
|
all_compressable_games=("${all_compressable_games[@]}" "$game")
|
||||||
|
compressable_games_list=("${compressable_games_list[@]}" "false" "${game#$roms_folder}" "$game")
|
||||||
|
echo "${game}"^"$compatible_compression_format" >> "$godot_compression_compatible_games"
|
||||||
|
fi
|
||||||
|
elif [[ $compression_format == "rvz" ]]; then
|
||||||
|
if [[ $compatible_compression_format == "rvz" ]]; then
|
||||||
|
all_compressable_games=("${all_compressable_games[@]}" "$game")
|
||||||
|
compressable_games_list=("${compressable_games_list[@]}" "false" "${game#$roms_folder}" "$game")
|
||||||
|
echo "${game}"^"$compatible_compression_format" >> "$godot_compression_compatible_games"
|
||||||
|
fi
|
||||||
|
elif [[ $compression_format == "all" ]]; then
|
||||||
|
if [[ ! $compatible_compression_format == "none" ]]; then
|
||||||
|
all_compressable_games=("${all_compressable_games[@]}" "$game")
|
||||||
|
compressable_games_list=("${compressable_games_list[@]}" "false" "${game#$roms_folder}" "$game")
|
||||||
|
echo "${game}"^"$compatible_compression_format" >> "$godot_compression_compatible_games"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
done < <(printf '%s\n' "$compression_candidates")
|
||||||
|
fi
|
||||||
|
done < <(printf '%s\n' "$compressable_systems_list")
|
||||||
|
}
|
||||||
|
|
||||||
cli_compress_single_game() {
|
cli_compress_single_game() {
|
||||||
# This function will compress a single file passed from the CLI arguments
|
# This function will compress a single file passed from the CLI arguments
|
||||||
# USAGE: cli_compress_single_game $full_file_path
|
# USAGE: cli_compress_single_game $full_file_path
|
||||||
|
@ -109,26 +197,6 @@ cli_compress_single_game() {
|
||||||
if [[ ! $compatible_compression_format == "none" ]]; then
|
if [[ ! $compatible_compression_format == "none" ]]; then
|
||||||
log i "$(basename "$file") can be compressed to $compatible_compression_format"
|
log i "$(basename "$file") can be compressed to $compatible_compression_format"
|
||||||
compress_game "$compatible_compression_format" "$file" "$system"
|
compress_game "$compatible_compression_format" "$file" "$system"
|
||||||
if [[ $post_compression_cleanup == [yY] ]]; then # Remove file(s) if requested
|
|
||||||
if [[ -f "${file%.*}.$compatible_compression_format" ]]; then
|
|
||||||
if [[ $(basename "$file") == *".cue" ]]; then
|
|
||||||
local cue_bin_files=$(grep -o -P "(?<=FILE \").*(?=\".*$)" "$file")
|
|
||||||
local file_path=$(dirname "$(realpath "$file")")
|
|
||||||
while IFS= read -r line
|
|
||||||
do # Remove associated .bin files
|
|
||||||
log i "Removing original file "$file_path/$line""
|
|
||||||
rm -f "$file_path/$line"
|
|
||||||
done < <(printf '%s\n' "$cue_bin_files") # Remove original .cue file
|
|
||||||
log i "Removing original file $(basename "$file")"
|
|
||||||
rm -f "$file"
|
|
||||||
else
|
|
||||||
log i "Removing original file $(basename "$file")"
|
|
||||||
rm -f "$file"
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
log w "Compressed version of $(basename "$file") not found, skipping deletion."
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
else
|
else
|
||||||
log w "$(basename "$file") does not have any compatible compression formats."
|
log w "$(basename "$file") does not have any compatible compression formats."
|
||||||
fi
|
fi
|
||||||
|
@ -171,26 +239,6 @@ cli_compress_all_games() {
|
||||||
if [[ ! "$compatible_compression_format" == "none" ]]; then
|
if [[ ! "$compatible_compression_format" == "none" ]]; then
|
||||||
log i "$(basename "$file") can be compressed to $compatible_compression_format"
|
log i "$(basename "$file") can be compressed to $compatible_compression_format"
|
||||||
compress_game "$compatible_compression_format" "$file" "$system"
|
compress_game "$compatible_compression_format" "$file" "$system"
|
||||||
if [[ $post_compression_cleanup == [yY] ]]; then # Remove file(s) if requested
|
|
||||||
if [[ -f "${file%.*}.$compatible_compression_format" ]]; then
|
|
||||||
if [[ "$file" == *".cue" ]]; then
|
|
||||||
local cue_bin_files=$(grep -o -P "(?<=FILE \").*(?=\".*$)" "$file")
|
|
||||||
local file_path=$(dirname "$(realpath "$file")")
|
|
||||||
while IFS= read -r line
|
|
||||||
do # Remove associated .bin files
|
|
||||||
log i "Removing original file "$file_path/$line""
|
|
||||||
rm -f "$file_path/$line"
|
|
||||||
done < <(printf '%s\n' "$cue_bin_files") # Remove original .cue file
|
|
||||||
log i "Removing original file "$file""
|
|
||||||
rm -f $(realpath "$file")
|
|
||||||
else
|
|
||||||
log i "Removing original file "$file""
|
|
||||||
rm -f $(realpath "$file")
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
log w "Compressed version of $(basename "$file") not found, skipping deletion."
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
else
|
else
|
||||||
log w "No compatible compression format found for $(basename "$file")"
|
log w "No compatible compression format found for $(basename "$file")"
|
||||||
fi
|
fi
|
||||||
|
|
64
functions/configurator_functions.sh
Normal file
64
functions/configurator_functions.sh
Normal file
|
@ -0,0 +1,64 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
check_bios_files() {
|
||||||
|
# This function validates all the BIOS files listed in the $bios_checklist and adds the results to an array called $bios_checked_list which can be used elsewhere
|
||||||
|
# There is a "basic" and "expert" mode which outputs different levels of data
|
||||||
|
# USAGE: check_bios_files "mode"
|
||||||
|
|
||||||
|
if [[ -f "$godot_bios_files_checked" ]]; then
|
||||||
|
rm -f "$godot_bios_files_checked" # Godot data transfer temp files
|
||||||
|
fi
|
||||||
|
touch "$godot_bios_files_checked"
|
||||||
|
|
||||||
|
while IFS="^" read -r bios_file bios_subdir bios_hash bios_system bios_desc
|
||||||
|
do
|
||||||
|
bios_file_found="No"
|
||||||
|
bios_hash_matched="No"
|
||||||
|
if [[ -f "$bios_folder/$bios_subdir$bios_file" ]]; then
|
||||||
|
bios_file_found="Yes"
|
||||||
|
if [[ $bios_hash == "Unknown" ]]; then
|
||||||
|
bios_hash_matched="Unknown"
|
||||||
|
elif [[ $(md5sum "$bios_folder/$bios_subdir$bios_file" | awk '{ print $1 }') == "$bios_hash" ]]; then
|
||||||
|
bios_hash_matched="Yes"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
if [[ "$1" == "basic" ]]; then
|
||||||
|
bios_checked_list=("${bios_checked_list[@]}" "$bios_file" "$bios_system" "$bios_file_found" "$bios_hash_matched" "$bios_desc")
|
||||||
|
echo "$bios_file"^"$bios_system"^"$bios_file_found"^"$bios_hash_matched"^"$bios_desc" >> "$godot_bios_files_checked" # Godot data transfer temp file
|
||||||
|
else
|
||||||
|
bios_checked_list=("${bios_checked_list[@]}" "$bios_file" "$bios_system" "$bios_file_found" "$bios_hash_matched" "$bios_desc" "$bios_subdir" "$bios_hash")
|
||||||
|
echo "$bios_file"^"$bios_system"^"$bios_file_found"^"$bios_hash_matched"^"$bios_desc"^"$bios_subdir"^"$bios_hash" >> "$godot_bios_files_checked" # Godot data transfer temp file
|
||||||
|
fi
|
||||||
|
done < $bios_checklist
|
||||||
|
}
|
||||||
|
|
||||||
|
find_empty_rom_folders() {
|
||||||
|
# This function will build an array of all the system subfolders in $roms_folder which are either empty or contain only systeminfo.txt for easy removal
|
||||||
|
|
||||||
|
if [[ -f "$godot_empty_roms_folders" ]]; then
|
||||||
|
rm -f "$godot_empty_roms_folders" # Godot data transfer temp files
|
||||||
|
fi
|
||||||
|
touch "$godot_empty_roms_folders"
|
||||||
|
|
||||||
|
empty_rom_folders_list=()
|
||||||
|
all_empty_folders=()
|
||||||
|
|
||||||
|
for system in $(find "$roms_folder" -mindepth 1 -maxdepth 1 -type d -printf '%f\n')
|
||||||
|
do
|
||||||
|
local dir="$roms_folder/$system"
|
||||||
|
local files=$(ls -A1 "$dir")
|
||||||
|
local count=$(ls -A "$dir" | wc -l)
|
||||||
|
|
||||||
|
if [[ $count -eq 0 ]]; then
|
||||||
|
# Directory is empty
|
||||||
|
empty_rom_folders_list=("${empty_rom_folders_list[@]}" "false" "$(realpath $dir)")
|
||||||
|
all_empty_folders=("${all_empty_folders[@]}" "$(realpath $dir)")
|
||||||
|
echo "$(realpath $dir)" >> "$godot_empty_roms_folders" # Godot data transfer temp file
|
||||||
|
elif [[ $count -eq 1 ]] && [[ "$(basename "${files[0]}")" == "systeminfo.txt" ]]; then
|
||||||
|
# Directory contains only systeminfo.txt
|
||||||
|
empty_rom_folders_list=("${empty_rom_folders_list[@]}" "false" "$(realpath $dir)")
|
||||||
|
all_empty_folders=("${all_empty_folders[@]}" "$(realpath $dir)")
|
||||||
|
echo "$(realpath $dir)" >> "$godot_empty_roms_folders" # Godot data transfer temp file
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
}
|
|
@ -2,6 +2,10 @@
|
||||||
|
|
||||||
source /app/libexec/functions.sh
|
source /app/libexec/functions.sh
|
||||||
|
|
||||||
|
# Dialog colors
|
||||||
|
purple="#a864fc"
|
||||||
|
blue="#6fbfff"
|
||||||
|
|
||||||
debug_dialog() {
|
debug_dialog() {
|
||||||
# This function is for displaying commands run by the Configurator without actually running them
|
# This function is for displaying commands run by the Configurator without actually running them
|
||||||
# USAGE: debug_dialog "command"
|
# USAGE: debug_dialog "command"
|
||||||
|
|
|
@ -39,12 +39,22 @@ set_setting_value() {
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
|
|
||||||
"rpcs3" | "vita3k" ) # This does not currently work for settings with a $ in them
|
"rpcs3" | "vita3k" )
|
||||||
|
# This does not currently work for settings with a $ in them
|
||||||
|
|
||||||
|
if [[ "$1" =~ (.ini)$ ]]; then # If this is a RPCS3 .ini file
|
||||||
|
if [[ -z $current_section_name ]]; then
|
||||||
|
sed -i 's^\^'"$setting_name_to_change"'=.*^'"$setting_name_to_change"'='"$setting_value_to_change"'^' "$1"
|
||||||
|
else
|
||||||
|
sed -i '\^\['"$current_section_name"'\]^,\^\^'"$setting_name_to_change"'=^s^\^'"$setting_name_to_change"'=.*^'"$setting_name_to_change"'='"$setting_value_to_change"'^' "$1"
|
||||||
|
fi
|
||||||
|
elif [[ "$1" =~ (.yml)$ ]]; then # If this is an YML-based file
|
||||||
if [[ -z $current_section_name ]]; then
|
if [[ -z $current_section_name ]]; then
|
||||||
sed -i 's^\^'"$setting_name_to_change"': .*^'"$setting_name_to_change"': '"$setting_value_to_change"'^' "$1"
|
sed -i 's^\^'"$setting_name_to_change"': .*^'"$setting_name_to_change"': '"$setting_value_to_change"'^' "$1"
|
||||||
else
|
else
|
||||||
sed -i '\^\['"$current_section_name"'\]^,\^\^'"$setting_name_to_change"'.*^s^\^'"$setting_name_to_change"': .*^'"$setting_name_to_change"': '"$setting_value_to_change"'^' "$1"
|
sed -i '\^\['"$current_section_name"'\]^,\^\^'"$setting_name_to_change"'.*^s^\^'"$setting_name_to_change"': .*^'"$setting_name_to_change"': '"$setting_value_to_change"'^' "$1"
|
||||||
fi
|
fi
|
||||||
|
fi
|
||||||
;;
|
;;
|
||||||
|
|
||||||
"cemu" )
|
"cemu" )
|
||||||
|
@ -55,7 +65,9 @@ set_setting_value() {
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
|
|
||||||
"mame" ) # In this option, $current_section_name is the <system name> in the .cfg file.
|
"mame" )
|
||||||
|
# In this option, $current_section_name is the <system name> in the .cfg file.
|
||||||
|
|
||||||
local mame_current_value=$(get_setting_value "$1" "$setting_name_to_change" "$4" "$current_section_name")
|
local mame_current_value=$(get_setting_value "$1" "$setting_name_to_change" "$4" "$current_section_name")
|
||||||
if [[ "$1" =~ (.ini)$ ]]; then # If this is a MAME .ini file
|
if [[ "$1" =~ (.ini)$ ]]; then # If this is a MAME .ini file
|
||||||
sed -i '\^\^'"$setting_name_to_change"'\s^s^'"$mame_current_value"'^'"$setting_value_to_change"'^' "$1"
|
sed -i '\^\^'"$setting_name_to_change"'\s^s^'"$mame_current_value"'^'"$setting_value_to_change"'^' "$1"
|
||||||
|
@ -84,7 +96,11 @@ get_setting_name() {
|
||||||
;;
|
;;
|
||||||
|
|
||||||
"rpcs3" | "vita3k" )
|
"rpcs3" | "vita3k" )
|
||||||
|
if [[ "$1" =~ (.ini)$ ]]; then # If this is a RPCS3 .ini file
|
||||||
|
echo "$current_setting_line" | grep -o -P "^\s*?.*?(?=\s?=\s?)" | sed -e 's/^[ \t]*//;s^\\ ^ ^g;s^\\$^^'
|
||||||
|
elif [[ "$1" =~ (.yml)$ ]]; then # If this is an YML-based file
|
||||||
echo "$current_setting_line" | grep -o -P "^\s*?.*?(?=\s?:\s?)" | sed -e 's/^[ \t]*//;s^\\ ^ ^g'
|
echo "$current_setting_line" | grep -o -P "^\s*?.*?(?=\s?:\s?)" | sed -e 's/^[ \t]*//;s^\\ ^ ^g'
|
||||||
|
fi
|
||||||
;;
|
;;
|
||||||
|
|
||||||
"mame" ) # This only works for mame .ini files, not the .cfg XML files
|
"mame" ) # This only works for mame .ini files, not the .cfg XML files
|
||||||
|
|
|
@ -7,12 +7,13 @@ source /app/libexec/checks.sh
|
||||||
source /app/libexec/compression.sh
|
source /app/libexec/compression.sh
|
||||||
source /app/libexec/dialogs.sh
|
source /app/libexec/dialogs.sh
|
||||||
source /app/libexec/logger.sh
|
source /app/libexec/logger.sh
|
||||||
source /app/libexec/functions.sh
|
source /app/libexec/other_functions.sh
|
||||||
source /app/libexec/multi_user.sh
|
source /app/libexec/multi_user.sh
|
||||||
source /app/libexec/framework.sh
|
source /app/libexec/framework.sh
|
||||||
source /app/libexec/post_update.sh
|
source /app/libexec/post_update.sh
|
||||||
source /app/libexec/prepare_component.sh
|
source /app/libexec/prepare_component.sh
|
||||||
source /app/libexec/presets.sh
|
source /app/libexec/presets.sh
|
||||||
|
source /app/libexec/configurator_fuctions.sh
|
||||||
|
|
||||||
# Static variables
|
# Static variables
|
||||||
rd_conf="/var/config/retrodeck/retrodeck.cfg" # RetroDECK config file path
|
rd_conf="/var/config/retrodeck/retrodeck.cfg" # RetroDECK config file path
|
||||||
|
@ -52,6 +53,9 @@ pretty_system_names_reference_list="$emuconfigs/defaults/retrodeck/reference_lis
|
||||||
# Godot data transfer temp files
|
# Godot data transfer temp files
|
||||||
|
|
||||||
godot_bios_files_checked="/var/config/retrodeck/godot/godot_bios_files_checked.tmp"
|
godot_bios_files_checked="/var/config/retrodeck/godot/godot_bios_files_checked.tmp"
|
||||||
|
godot_current_preset_settings="/var/config/retrodeck/godot/godot_current_preset_settings.tmp"
|
||||||
|
godot_compression_compatible_games="/var/config/retrodeck/godot/godot_compression_compatible_games.tmp"
|
||||||
|
godot_empty_roms_folders="/var/config/retrodeck/godot/godot_empty_roms_folders.tmp"
|
||||||
|
|
||||||
# Config files for emulators with single config files
|
# Config files for emulators with single config files
|
||||||
|
|
||||||
|
@ -131,6 +135,11 @@ if [[ ! -d "$rd_logs_folder/ES-DE" ]]; then
|
||||||
dir_prep "$rd_logs_folder/ES-DE" "$es_source_logs"
|
dir_prep "$rd_logs_folder/ES-DE" "$es_source_logs"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Initialize location of Godot temp data files, if it doesn't exist
|
||||||
|
if [[ ! -d "/var/config/retrodeck/godot" ]]; then
|
||||||
|
create_dir "/var/config/retrodeck/godot"
|
||||||
|
fi
|
||||||
|
|
||||||
# We moved the lockfile in /var/config/retrodeck in order to solve issue #53 - Remove in a few versions
|
# We moved the lockfile in /var/config/retrodeck in order to solve issue #53 - Remove in a few versions
|
||||||
if [[ -f "$HOME/retrodeck/.lock" ]]; then
|
if [[ -f "$HOME/retrodeck/.lock" ]]; then
|
||||||
mv "$HOME/retrodeck/.lock" $lockfile
|
mv "$HOME/retrodeck/.lock" $lockfile
|
||||||
|
|
|
@ -86,11 +86,11 @@ log() {
|
||||||
esac
|
esac
|
||||||
|
|
||||||
# Display the message in the terminal
|
# Display the message in the terminal
|
||||||
echo -e "$colored_message"
|
echo -e "$colored_message" >&2
|
||||||
|
|
||||||
# Write the log message to the log file
|
# Write the log message to the log file
|
||||||
if [ ! -f "$logfile" ]; then
|
if [ ! -f "$logfile" ]; then
|
||||||
echo "$timestamp [WARN] Log file not found in \"$logfile\", creating it"
|
echo "$timestamp [WARN] Log file not found in \"$logfile\", creating it" >&2
|
||||||
touch "$logfile"
|
touch "$logfile"
|
||||||
fi
|
fi
|
||||||
echo "$log_message" >> "$logfile"
|
echo "$log_message" >> "$logfile"
|
||||||
|
|
|
@ -286,36 +286,6 @@ dir_prep() {
|
||||||
log i "$symlink is now $real"
|
log i "$symlink is now $real"
|
||||||
}
|
}
|
||||||
|
|
||||||
check_bios_files() {
|
|
||||||
# This function validates all the BIOS files listed in the $bios_checklist and adds the results to an array called bios_checked_list which can be used elsewhere
|
|
||||||
# There is a "basic" and "expert" mode which outputs different levels of data
|
|
||||||
# USAGE: check_bios_files "mode"
|
|
||||||
|
|
||||||
rm -f "$godot_bios_files_checked" # Godot data transfer temp files
|
|
||||||
touch "$godot_bios_files_checked"
|
|
||||||
|
|
||||||
while IFS="^" read -r bios_file bios_subdir bios_hash bios_system bios_desc
|
|
||||||
do
|
|
||||||
bios_file_found="No"
|
|
||||||
bios_hash_matched="No"
|
|
||||||
if [[ -f "$bios_folder/$bios_subdir$bios_file" ]]; then
|
|
||||||
bios_file_found="Yes"
|
|
||||||
if [[ $bios_hash == "Unknown" ]]; then
|
|
||||||
bios_hash_matched="Unknown"
|
|
||||||
elif [[ $(md5sum "$bios_folder/$bios_subdir$bios_file" | awk '{ print $1 }') == "$bios_hash" ]]; then
|
|
||||||
bios_hash_matched="Yes"
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
if [[ "$1" == "basic" ]]; then
|
|
||||||
bios_checked_list=("${bios_checked_list[@]}" "$bios_file" "$bios_system" "$bios_file_found" "$bios_hash_matched" "$bios_desc")
|
|
||||||
echo "$bios_file"^"$bios_system"^"$bios_file_found"^"$bios_hash_matched"^"$bios_desc" >> "$godot_bios_files_checked" # Godot data transfer temp file
|
|
||||||
else
|
|
||||||
bios_checked_list=("${bios_checked_list[@]}" "$bios_file" "$bios_system" "$bios_file_found" "$bios_hash_matched" "$bios_desc" "$bios_subdir" "$bios_hash")
|
|
||||||
echo "$bios_file"^"$bios_system"^"$bios_file_found"^"$bios_hash_matched"^"$bios_desc"^"$bios_subdir"^"$bios_hash" >> "$godot_bios_files_checked" # Godot data transfer temp file
|
|
||||||
fi
|
|
||||||
done < $bios_checklist
|
|
||||||
}
|
|
||||||
|
|
||||||
update_rpcs3_firmware() {
|
update_rpcs3_firmware() {
|
||||||
create_dir "$roms_folder/ps3/tmp"
|
create_dir "$roms_folder/ps3/tmp"
|
||||||
chmod 777 "$roms_folder/ps3/tmp"
|
chmod 777 "$roms_folder/ps3/tmp"
|
||||||
|
@ -699,7 +669,7 @@ ponzu() {
|
||||||
rm -rf "$rdhome/ponzu"
|
rm -rf "$rdhome/ponzu"
|
||||||
}
|
}
|
||||||
|
|
||||||
ponzu_remove(){
|
ponzu_remove() {
|
||||||
|
|
||||||
# Call me with yuzu or citra and I will remove them
|
# Call me with yuzu or citra and I will remove them
|
||||||
|
|
|
@ -304,12 +304,34 @@ post_update() {
|
||||||
log i "In version 0.8.1b, the following changes were made that required config file updates/reset or other changes to the filesystem:"
|
log i "In version 0.8.1b, the following changes were made that required config file updates/reset or other changes to the filesystem:"
|
||||||
log i "- ES-DE files were moved inside the retrodeck folder, migrating to the new structure"
|
log i "- ES-DE files were moved inside the retrodeck folder, migrating to the new structure"
|
||||||
log i "- Give the user the option to reset Ryujinx, which was not properly initialized in 0.8.0b"
|
log i "- Give the user the option to reset Ryujinx, which was not properly initialized in 0.8.0b"
|
||||||
|
|
||||||
log d "ES-DE files were moved inside the retrodeck folder, migrating to the new structure"
|
log d "ES-DE files were moved inside the retrodeck folder, migrating to the new structure"
|
||||||
dir_prep "$rdhome/ES-DE/collections" "/var/config/ES-DE/collections"
|
dir_prep "$rdhome/ES-DE/collections" "/var/config/ES-DE/collections"
|
||||||
dir_prep "$rdhome/ES-DE/gamelists" "/var/config/ES-DE/gamelists"
|
dir_prep "$rdhome/ES-DE/gamelists" "/var/config/ES-DE/gamelists"
|
||||||
mv -f "$rdhome/gamelists/"* "$rdhome/ES-DE/gamelists"
|
log i "Moving ES-DE collections, downloaded_media, gamelist, and themes from \"$rdhome\" to \"$rdhome/ES-DE\""
|
||||||
|
set_setting_value "$es_settings" "MediaDirectory" "$rdhome/ES-DE/downloaded_media" "es_settings"
|
||||||
|
set_setting_value "$es_settings" "UserThemeDirectory" "$rdhome/ES-DE/themes" "es_settings"
|
||||||
|
mv -f "$rdhome/themes" "$rdhome/ES-DE/themes" && log d "Move of \"$rdhome/themes\" completed"
|
||||||
|
mv -f "$rdhome/downloaded_media" "$rdhome/ES-DE/downloaded_media" && log d "Move of \"$rdhome/downloaded_media\" completed"
|
||||||
|
mv -f "$rdhome/gamelists/"* "$rdhome/ES-DE/gamelists" && log d "Move of \"$rdhome/gamelists/\" completed"
|
||||||
rm -rf "$rdhome/gamelists"
|
rm -rf "$rdhome/gamelists"
|
||||||
|
|
||||||
|
log i "MAME-SA, migrating samples to the new exposed folder: from \"/var/data/mame/assets/samples\" to \"$bios_folder/mame-sa/samples\""
|
||||||
|
create_dir "$bios_folder/mame-sa/samples"
|
||||||
|
mv -f "/var/data/mame/assets/samples/"* "$bios_folder/mame-sa/samples"
|
||||||
|
set_setting_value "$mameconf" "samplepath" "$bios_folder/mame-sa/samples" "mame"
|
||||||
|
|
||||||
|
log i "Installing the missing ScummVM assets and renaming \"$mods_folder/RetroArch/ScummVM/themes\" into \"theme\""
|
||||||
|
mv -f "$mods_folder/RetroArch/ScummVM/themes" "$mods_folder/RetroArch/ScummVM/theme"
|
||||||
|
unzip -o "$emuconfigs/retroarch/ScummVM.zip" 'scummvm/extra/*' -d /tmp
|
||||||
|
unzip -o "$emuconfigs/retroarch/ScummVM.zip" 'scummvm/theme/*' -d /tmp
|
||||||
|
mv -f /tmp/scummvm/extra "$mods_folder/RetroArch/ScummVM"
|
||||||
|
mv -f /tmp/scummvm/theme "$mods_folder/RetroArch/ScummVM"
|
||||||
|
rm -rf /tmp/extra /tmp/theme
|
||||||
|
|
||||||
|
log i "Placing cheats in \"/var/data/mame/cheat\""
|
||||||
|
unzip -j -o "$emuconfigs/mame/cheat0264.zip" 'cheat.7z' -d "/var/data/mame/cheat"
|
||||||
|
|
||||||
log d "Verifying with user if they want to reset Ryujinx"
|
log d "Verifying with user if they want to reset Ryujinx"
|
||||||
if [[ "$(configurator_generic_question_dialog "RetroDECK 0.8.1b Ryujinx Reset" "In RetroDECK 0.8.0b the Ryujinx emulator was not properly initialized for upgrading users.\nThis would cause Ryujinx to not work properly.\n\nWould you like to reset Ryujinx to default RetroDECK settings now?\n\nIf you have made your own changes to the Ryujinx config, you can decline this reset.")" == "true" ]]; then
|
if [[ "$(configurator_generic_question_dialog "RetroDECK 0.8.1b Ryujinx Reset" "In RetroDECK 0.8.0b the Ryujinx emulator was not properly initialized for upgrading users.\nThis would cause Ryujinx to not work properly.\n\nWould you like to reset Ryujinx to default RetroDECK settings now?\n\nIf you have made your own changes to the Ryujinx config, you can decline this reset.")" == "true" ]]; then
|
||||||
log d "User agreed to Ryujinx reset"
|
log d "User agreed to Ryujinx reset"
|
||||||
|
@ -352,8 +374,9 @@ post_update() {
|
||||||
) |
|
) |
|
||||||
zenity --icon-name=net.retrodeck.retrodeck --progress --no-cancel --pulsate --auto-close \
|
zenity --icon-name=net.retrodeck.retrodeck --progress --no-cancel --pulsate --auto-close \
|
||||||
--window-icon="/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \
|
--window-icon="/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \
|
||||||
--title "RetroDECK Finishing Upgrade" \
|
--title "RetroDECK - Upgrade Process" \
|
||||||
--text="RetroDECK is finishing the upgrade process, please wait.\n\n If it feels like this is taking too much time, please ensure there aren't any windows that unexpectedly slipped into the background and need attention."
|
--width=400 --height=200 \
|
||||||
|
--text="RetroDECK is finishing up the upgrading process, please be patient.\n\n<span foreground='$purple' size='larger'><b>NOTICE - If the process is taking too long:</b></span>\n\nSome windows might be running in the background that could require your attention: pop-ups from emulators or the upgrade itself that needs user input to continue.\n\n"
|
||||||
|
|
||||||
version=$hard_version
|
version=$hard_version
|
||||||
conf_write
|
conf_write
|
||||||
|
|
|
@ -12,10 +12,12 @@ prepare_component() {
|
||||||
action="$1"
|
action="$1"
|
||||||
component=$(echo "$2" | tr '[:upper:]' '[:lower:]')
|
component=$(echo "$2" | tr '[:upper:]' '[:lower:]')
|
||||||
call_source="$3"
|
call_source="$3"
|
||||||
|
component_found="false"
|
||||||
|
|
||||||
log d "Preparing component: \"$component\", action: \"$action\""
|
log d "Preparing component: \"$component\", action: \"$action\""
|
||||||
|
|
||||||
if [[ "$component" == "retrodeck" ]]; then
|
if [[ "$component" == "retrodeck" ]]; then
|
||||||
|
component_found="true"
|
||||||
if [[ "$action" == "reset" ]]; then # Update the paths of all folders in retrodeck.cfg and create them
|
if [[ "$action" == "reset" ]]; then # Update the paths of all folders in retrodeck.cfg and create them
|
||||||
while read -r config_line; do
|
while read -r config_line; do
|
||||||
local current_setting_name=$(get_setting_name "$config_line" "retrodeck")
|
local current_setting_name=$(get_setting_name "$config_line" "retrodeck")
|
||||||
|
@ -49,6 +51,7 @@ prepare_component() {
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ "$component" =~ ^(es-de|all)$ ]]; then # For use after ESDE-related folders are moved or a reset
|
if [[ "$component" =~ ^(es-de|all)$ ]]; then # For use after ESDE-related folders are moved or a reset
|
||||||
|
component_found="true"
|
||||||
log i "--------------------------------"
|
log i "--------------------------------"
|
||||||
log i "Prepearing ES-DE"
|
log i "Prepearing ES-DE"
|
||||||
log i "--------------------------------"
|
log i "--------------------------------"
|
||||||
|
@ -77,6 +80,7 @@ prepare_component() {
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ "$component" =~ ^(retroarch|all)$ ]]; then
|
if [[ "$component" =~ ^(retroarch|all)$ ]]; then
|
||||||
|
component_found="true"
|
||||||
log i "--------------------------------"
|
log i "--------------------------------"
|
||||||
log i "Prepearing RetroArch"
|
log i "Prepearing RetroArch"
|
||||||
log i "--------------------------------"
|
log i "--------------------------------"
|
||||||
|
@ -88,7 +92,7 @@ prepare_component() {
|
||||||
else # Single-user actions
|
else # Single-user actions
|
||||||
create_dir -d /var/config/retroarch
|
create_dir -d /var/config/retroarch
|
||||||
dir_prep "$bios_folder" "/var/config/retroarch/system"
|
dir_prep "$bios_folder" "/var/config/retroarch/system"
|
||||||
dir_prep "$logs_folder/retroarch" "/var/config/retroarch/logs"
|
dir_prep "$rdhome/logs/retroarch" "/var/config/retroarch/logs"
|
||||||
create_dir /var/config/retroarch/shaders/
|
create_dir /var/config/retroarch/shaders/
|
||||||
cp -rf /app/share/libretro/shaders /var/config/retroarch/
|
cp -rf /app/share/libretro/shaders /var/config/retroarch/
|
||||||
dir_prep "$rdhome/shaders/retroarch" "/var/config/retroarch/shaders"
|
dir_prep "$rdhome/shaders/retroarch" "/var/config/retroarch/shaders"
|
||||||
|
@ -104,17 +108,6 @@ prepare_component() {
|
||||||
set_setting_value "$raconf" "screenshot_directory" "$screenshots_folder" "retroarch"
|
set_setting_value "$raconf" "screenshot_directory" "$screenshots_folder" "retroarch"
|
||||||
set_setting_value "$raconf" "log_dir" "$logs_folder" "retroarch"
|
set_setting_value "$raconf" "log_dir" "$logs_folder" "retroarch"
|
||||||
set_setting_value "$raconf" "rgui_browser_directory" "$roms_folder" "retroarch"
|
set_setting_value "$raconf" "rgui_browser_directory" "$roms_folder" "retroarch"
|
||||||
|
|
||||||
# Specific Settings for ScummVM core
|
|
||||||
cp -fv "$emuconfigs/retroarch/scummvm.ini" "$ra_scummvm_conf"
|
|
||||||
create_dir "$mods_folder/RetroArch/ScummVM/icons"
|
|
||||||
create_dir "$mods_folder/RetroArch/ScummVM/extra"
|
|
||||||
create_dir "$mods_folder/RetroArch/ScummVM/themes"
|
|
||||||
set_setting_value "$ra_scummvm_conf" "iconspath" "$mods_folder/RetroArch/ScummVM/icons" "libretro_scummvm" "scummvm"
|
|
||||||
set_setting_value "$ra_scummvm_conf" "extrapath" "$mods_folder/RetroArch/ScummVM/extra" "libretro_scummvm" "scummvm"
|
|
||||||
set_setting_value "$ra_scummvm_conf" "themepath" "$mods_folder/RetroArch/ScummVM/themes" "libretro_scummvm" "scummvm"
|
|
||||||
set_setting_value "$ra_scummvm_conf" "savepath" "$saves_folder/scummvm" "libretro_scummvm" "scummvm"
|
|
||||||
set_setting_value "$ra_scummvm_conf" "browser_lastpath" "$roms_folder/scummvm" "libretro_scummvm" "scummvm"
|
|
||||||
fi
|
fi
|
||||||
# Shared actions
|
# Shared actions
|
||||||
|
|
||||||
|
@ -162,6 +155,24 @@ prepare_component() {
|
||||||
log i "Copying \"/app/retrodeck/extras/Amiga/capsimg.so\" in \"$bios_folder/capsimg.so\""
|
log i "Copying \"/app/retrodeck/extras/Amiga/capsimg.so\" in \"$bios_folder/capsimg.so\""
|
||||||
cp -f "/app/retrodeck/extras/Amiga/capsimg.so" "$bios_folder/capsimg.so"
|
cp -f "/app/retrodeck/extras/Amiga/capsimg.so" "$bios_folder/capsimg.so"
|
||||||
|
|
||||||
|
# ScummVM
|
||||||
|
log i "-----------------------------------------------------------"
|
||||||
|
log i "Prepearing ScummVM LIBRETRO"
|
||||||
|
log i "-----------------------------------------------------------"
|
||||||
|
cp -fv "$emuconfigs/retroarch/scummvm.ini" "$ra_scummvm_conf"
|
||||||
|
create_dir "$mods_folder/RetroArch/ScummVM/icons"
|
||||||
|
log i "Installing ScummVM assets"
|
||||||
|
unzip -o "$emuconfigs/retroarch/ScummVM.zip" 'scummvm/extra/*' -d /tmp
|
||||||
|
unzip -o "$emuconfigs/retroarch/ScummVM.zip" 'scummvm/theme/*' -d /tmp
|
||||||
|
mv -f /tmp/scummvm/extra "$mods_folder/RetroArch/ScummVM"
|
||||||
|
mv -f /tmp/scummvm/theme "$mods_folder/RetroArch/ScummVM"
|
||||||
|
rm -rf /tmp/extra /tmp/theme
|
||||||
|
set_setting_value "$ra_scummvm_conf" "iconspath" "$mods_folder/RetroArch/ScummVM/icons" "libretro_scummvm" "scummvm"
|
||||||
|
set_setting_value "$ra_scummvm_conf" "extrapath" "$mods_folder/RetroArch/ScummVM/extra" "libretro_scummvm" "scummvm"
|
||||||
|
set_setting_value "$ra_scummvm_conf" "themepath" "$mods_folder/RetroArch/ScummVM/theme" "libretro_scummvm" "scummvm"
|
||||||
|
set_setting_value "$ra_scummvm_conf" "savepath" "$saves_folder/scummvm" "libretro_scummvm" "scummvm"
|
||||||
|
set_setting_value "$ra_scummvm_conf" "browser_lastpath" "$roms_folder/scummvm" "libretro_scummvm" "scummvm"
|
||||||
|
|
||||||
dir_prep "$texture_packs_folder/RetroArch-Mesen" "/var/config/retroarch/system/HdPacks"
|
dir_prep "$texture_packs_folder/RetroArch-Mesen" "/var/config/retroarch/system/HdPacks"
|
||||||
dir_prep "$texture_packs_folder/RetroArch-Mupen64Plus/cache" "/var/config/retroarch/system/Mupen64plus/cache"
|
dir_prep "$texture_packs_folder/RetroArch-Mupen64Plus/cache" "/var/config/retroarch/system/Mupen64plus/cache"
|
||||||
dir_prep "$texture_packs_folder/RetroArch-Mupen64Plus/hires_texture" "/var/config/retroarch/system/Mupen64plus/hires_texture"
|
dir_prep "$texture_packs_folder/RetroArch-Mupen64Plus/hires_texture" "/var/config/retroarch/system/Mupen64plus/hires_texture"
|
||||||
|
@ -204,6 +215,7 @@ prepare_component() {
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ "$component" =~ ^(citra|citra-emu|all)$ ]]; then
|
if [[ "$component" =~ ^(citra|citra-emu|all)$ ]]; then
|
||||||
|
component_found="true"
|
||||||
if [[ "$action" == "reset" ]]; then # Run reset-only commands
|
if [[ "$action" == "reset" ]]; then # Run reset-only commands
|
||||||
log i "------------------------"
|
log i "------------------------"
|
||||||
log i "Prepearing CITRA"
|
log i "Prepearing CITRA"
|
||||||
|
@ -249,6 +261,7 @@ prepare_component() {
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ "$component" =~ ^(cemu|all)$ ]]; then
|
if [[ "$component" =~ ^(cemu|all)$ ]]; then
|
||||||
|
component_found="true"
|
||||||
if [[ "$action" == "reset" ]]; then # Run reset-only commands
|
if [[ "$action" == "reset" ]]; then # Run reset-only commands
|
||||||
log i "----------------------"
|
log i "----------------------"
|
||||||
log i "Prepearing CEMU"
|
log i "Prepearing CEMU"
|
||||||
|
@ -276,6 +289,7 @@ prepare_component() {
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ "$component" =~ ^(dolphin|dolphin-emu|all)$ ]]; then
|
if [[ "$component" =~ ^(dolphin|dolphin-emu|all)$ ]]; then
|
||||||
|
component_found="true"
|
||||||
if [[ "$action" == "reset" ]]; then # Run reset-only commands
|
if [[ "$action" == "reset" ]]; then # Run reset-only commands
|
||||||
log i "----------------------"
|
log i "----------------------"
|
||||||
log i "Prepearing DOLPHIN"
|
log i "Prepearing DOLPHIN"
|
||||||
|
@ -329,6 +343,7 @@ prepare_component() {
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ "$component" =~ ^(duckstation|all)$ ]]; then
|
if [[ "$component" =~ ^(duckstation|all)$ ]]; then
|
||||||
|
component_found="true"
|
||||||
if [[ "$action" == "reset" ]]; then # Run reset-only commands
|
if [[ "$action" == "reset" ]]; then # Run reset-only commands
|
||||||
log i "------------------------"
|
log i "------------------------"
|
||||||
log i "Prepearing DUCKSTATION"
|
log i "Prepearing DUCKSTATION"
|
||||||
|
@ -374,6 +389,7 @@ prepare_component() {
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ "$component" =~ ^(melonds|all)$ ]]; then
|
if [[ "$component" =~ ^(melonds|all)$ ]]; then
|
||||||
|
component_found="true"
|
||||||
if [[ "$action" == "reset" ]]; then # Run reset-only commands
|
if [[ "$action" == "reset" ]]; then # Run reset-only commands
|
||||||
log i "----------------------"
|
log i "----------------------"
|
||||||
log i "Prepearing MELONDS"
|
log i "Prepearing MELONDS"
|
||||||
|
@ -412,6 +428,7 @@ prepare_component() {
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ "$component" =~ ^(pcsx2|all)$ ]]; then
|
if [[ "$component" =~ ^(pcsx2|all)$ ]]; then
|
||||||
|
component_found="true"
|
||||||
if [[ "$action" == "reset" ]]; then # Run reset-only commands
|
if [[ "$action" == "reset" ]]; then # Run reset-only commands
|
||||||
log i "----------------------"
|
log i "----------------------"
|
||||||
log i "Prepearing PCSX2"
|
log i "Prepearing PCSX2"
|
||||||
|
@ -456,6 +473,7 @@ prepare_component() {
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ "$component" =~ ^(pico8|pico-8|all)$ ]]; then
|
if [[ "$component" =~ ^(pico8|pico-8|all)$ ]]; then
|
||||||
|
component_found="true"
|
||||||
if [[ ("$action" == "reset") || ("$action" == "postmove") ]]; then
|
if [[ ("$action" == "reset") || ("$action" == "postmove") ]]; then
|
||||||
dir_prep "$bios_folder/pico-8" "$HOME/.lexaloffle/pico-8" # Store binary and config files together. The .lexaloffle directory is a hard-coded location for the PICO-8 config file, cannot be changed
|
dir_prep "$bios_folder/pico-8" "$HOME/.lexaloffle/pico-8" # Store binary and config files together. The .lexaloffle directory is a hard-coded location for the PICO-8 config file, cannot be changed
|
||||||
dir_prep "$roms_folder/pico8" "$bios_folder/pico-8/carts" # Symlink default game location to RD roms for cleanliness (this location is overridden anyway by the --root_path launch argument anyway)
|
dir_prep "$roms_folder/pico8" "$bios_folder/pico-8/carts" # Symlink default game location to RD roms for cleanliness (this location is overridden anyway by the --root_path launch argument anyway)
|
||||||
|
@ -466,6 +484,7 @@ prepare_component() {
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ "$component" =~ ^(ppsspp|all)$ ]]; then
|
if [[ "$component" =~ ^(ppsspp|all)$ ]]; then
|
||||||
|
component_found="true"
|
||||||
if [[ "$action" == "reset" ]]; then # Run reset-only commands
|
if [[ "$action" == "reset" ]]; then # Run reset-only commands
|
||||||
log i "------------------------"
|
log i "------------------------"
|
||||||
log i "Prepearing PPSSPPSDL"
|
log i "Prepearing PPSSPPSDL"
|
||||||
|
@ -494,6 +513,7 @@ prepare_component() {
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ "$component" =~ ^(primehack|all)$ ]]; then
|
if [[ "$component" =~ ^(primehack|all)$ ]]; then
|
||||||
|
component_found="true"
|
||||||
if [[ "$action" == "reset" ]]; then # Run reset-only commands
|
if [[ "$action" == "reset" ]]; then # Run reset-only commands
|
||||||
log i "----------------------"
|
log i "----------------------"
|
||||||
log i "Prepearing Primehack"
|
log i "Prepearing Primehack"
|
||||||
|
@ -537,6 +557,7 @@ prepare_component() {
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ "$component" =~ ^(rpcs3|all)$ ]]; then
|
if [[ "$component" =~ ^(rpcs3|all)$ ]]; then
|
||||||
|
component_found="true"
|
||||||
if [[ "$action" == "reset" ]]; then # Run reset-only commands
|
if [[ "$action" == "reset" ]]; then # Run reset-only commands
|
||||||
log i "------------------------"
|
log i "------------------------"
|
||||||
log i "Prepearing RPCS3"
|
log i "Prepearing RPCS3"
|
||||||
|
@ -573,6 +594,7 @@ prepare_component() {
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ "$component" =~ ^(ryujinx|all)$ ]]; then
|
if [[ "$component" =~ ^(ryujinx|all)$ ]]; then
|
||||||
|
component_found="true"
|
||||||
# NOTE: for techincal reasons the system folder of Ryujinx IS NOT a sumlink of the bios/switch/keys as not only the keys are located there
|
# NOTE: for techincal reasons the system folder of Ryujinx IS NOT a sumlink of the bios/switch/keys as not only the keys are located there
|
||||||
# When RetroDECK starts there is a "manage_ryujinx_keys" function that symlinks the keys only in Rryujinx/system.
|
# When RetroDECK starts there is a "manage_ryujinx_keys" function that symlinks the keys only in Rryujinx/system.
|
||||||
if [[ "$action" == "reset" ]]; then # Run reset-only commands
|
if [[ "$action" == "reset" ]]; then # Run reset-only commands
|
||||||
|
@ -617,6 +639,7 @@ prepare_component() {
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ "$component" =~ ^(yuzu|all)$ ]]; then
|
if [[ "$component" =~ ^(yuzu|all)$ ]]; then
|
||||||
|
component_found="true"
|
||||||
if [[ "$action" == "reset" ]]; then # Run reset-only commands
|
if [[ "$action" == "reset" ]]; then # Run reset-only commands
|
||||||
log i "----------------------"
|
log i "----------------------"
|
||||||
log i "Prepearing YUZU"
|
log i "Prepearing YUZU"
|
||||||
|
@ -670,6 +693,7 @@ prepare_component() {
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ "$component" =~ ^(xemu|all)$ ]]; then
|
if [[ "$component" =~ ^(xemu|all)$ ]]; then
|
||||||
|
component_found="true"
|
||||||
if [[ "$action" == "reset" ]]; then # Run reset-only commands
|
if [[ "$action" == "reset" ]]; then # Run reset-only commands
|
||||||
log i "------------------------"
|
log i "------------------------"
|
||||||
log i "Prepearing XEMU"
|
log i "Prepearing XEMU"
|
||||||
|
@ -714,6 +738,7 @@ prepare_component() {
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ "$component" =~ ^(vita3k|all)$ ]]; then
|
if [[ "$component" =~ ^(vita3k|all)$ ]]; then
|
||||||
|
component_found="true"
|
||||||
if [[ "$action" == "reset" ]]; then # Run reset-only commands
|
if [[ "$action" == "reset" ]]; then # Run reset-only commands
|
||||||
log i "----------------------"
|
log i "----------------------"
|
||||||
log i "Prepearing Vita3K"
|
log i "Prepearing Vita3K"
|
||||||
|
@ -738,6 +763,7 @@ prepare_component() {
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ "$component" =~ ^(mame|all)$ ]]; then
|
if [[ "$component" =~ ^(mame|all)$ ]]; then
|
||||||
|
component_found="true"
|
||||||
# TODO: do a proper script
|
# TODO: do a proper script
|
||||||
# This is just a placeholder script to test the emulator's flow
|
# This is just a placeholder script to test the emulator's flow
|
||||||
log i "----------------------"
|
log i "----------------------"
|
||||||
|
@ -758,7 +784,7 @@ prepare_component() {
|
||||||
|
|
||||||
create_dir "/var/data/mame/plugin-data"
|
create_dir "/var/data/mame/plugin-data"
|
||||||
create_dir "/var/data/mame/hash"
|
create_dir "/var/data/mame/hash"
|
||||||
create_dir "/var/data/mame/assets/samples"
|
create_dir "$bios_folder/mame-sa/samples"
|
||||||
create_dir "/var/data/mame/assets/artwork"
|
create_dir "/var/data/mame/assets/artwork"
|
||||||
create_dir "/var/data/mame/assets/fonts"
|
create_dir "/var/data/mame/assets/fonts"
|
||||||
create_dir "/var/data/mame/cheat"
|
create_dir "/var/data/mame/cheat"
|
||||||
|
@ -799,10 +825,15 @@ prepare_component() {
|
||||||
set_setting_value "$mameconf" "state_directory" "$states_folder/mame-sa" "mame"
|
set_setting_value "$mameconf" "state_directory" "$states_folder/mame-sa" "mame"
|
||||||
set_setting_value "$mameconf" "snapshot_directory" "$screenshots_folder/mame-sa" "mame"
|
set_setting_value "$mameconf" "snapshot_directory" "$screenshots_folder/mame-sa" "mame"
|
||||||
set_setting_value "$mameconf" "diff_directory" "$saves_folder/mame-sa/diff" "mame"
|
set_setting_value "$mameconf" "diff_directory" "$saves_folder/mame-sa/diff" "mame"
|
||||||
|
set_setting_value "$mameconf" "samplepath" "$bios_folder/mame-sa/samples" "mame"
|
||||||
|
|
||||||
|
log i "Placing cheats in \"/var/data/mame/cheat\""
|
||||||
|
unzip -j -o "$emuconfigs/mame/cheat0264.zip" 'cheat.7z' -d "/var/data/mame/cheat"
|
||||||
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ "$component" =~ ^(gzdoom|all)$ ]]; then
|
if [[ "$component" =~ ^(gzdoom|all)$ ]]; then
|
||||||
|
component_found="true"
|
||||||
# TODO: do a proper script
|
# TODO: do a proper script
|
||||||
# This is just a placeholder script to test the emulator's flow
|
# This is just a placeholder script to test the emulator's flow
|
||||||
log i "----------------------"
|
log i "----------------------"
|
||||||
|
@ -823,6 +854,7 @@ prepare_component() {
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ "$component" =~ ^(boilr|all)$ ]]; then
|
if [[ "$component" =~ ^(boilr|all)$ ]]; then
|
||||||
|
component_found="true"
|
||||||
log i "----------------------"
|
log i "----------------------"
|
||||||
log i "Prepearing BOILR"
|
log i "Prepearing BOILR"
|
||||||
log i "----------------------"
|
log i "----------------------"
|
||||||
|
@ -831,7 +863,7 @@ prepare_component() {
|
||||||
cp -fvr "/app/libexec/steam-sync/config.toml" "/var/config/boilr"
|
cp -fvr "/app/libexec/steam-sync/config.toml" "/var/config/boilr"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ ! "$component" =~ ^(retrodeck|es-de|retroarch|citra|citra-emu|cemu|dolphin|dolphin-emu|duckstation|melonds|melonDS|pcsx2|pico8|pico-8|ppsspp|primehack|rpcs3|ryujinx|yuzu|xemu|vita3k|mame|gzdoom|boilr|)$ ]]; then
|
if [[ $component_found="false" ]]; then
|
||||||
log e "Supplied component $component not found, not resetting"
|
log e "Supplied component $component not found, not resetting"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
|
@ -4,28 +4,7 @@ change_preset_dialog() {
|
||||||
# This function will build a list of all systems compatible with a given preset, their current enable/disabled state and allow the user to change one or more
|
# This function will build a list of all systems compatible with a given preset, their current enable/disabled state and allow the user to change one or more
|
||||||
# USAGE: change_preset_dialog "$preset"
|
# USAGE: change_preset_dialog "$preset"
|
||||||
|
|
||||||
local preset="$1"
|
build_preset_list_options "$1"
|
||||||
pretty_preset_name=${preset//_/ } # Preset name prettification
|
|
||||||
pretty_preset_name=$(echo $pretty_preset_name | awk '{for(i=1;i<=NF;i++){$i=toupper(substr($i,1,1))substr($i,2)}}1') # Preset name prettification
|
|
||||||
local current_preset_settings=()
|
|
||||||
local current_enabled_systems=()
|
|
||||||
local current_disabled_systems=()
|
|
||||||
local changed_systems=()
|
|
||||||
local changed_presets=()
|
|
||||||
local section_results=$(sed -n '/\['"$preset"'\]/, /\[/{ /\['"$preset"'\]/! { /\[/! p } }' $rd_conf | sed '/^$/d')
|
|
||||||
|
|
||||||
while IFS= read -r config_line
|
|
||||||
do
|
|
||||||
system_name=$(get_setting_name "$config_line" "retrodeck")
|
|
||||||
all_systems=("${all_systems[@]}" "$system_name")
|
|
||||||
system_value=$(get_setting_value "$rd_conf" "$system_name" "retrodeck" "$preset")
|
|
||||||
if [[ "$system_value" == "true" ]]; then
|
|
||||||
current_enabled_systems=("${current_enabled_systems[@]}" "$system_name")
|
|
||||||
elif [[ "$system_value" == "false" ]]; then
|
|
||||||
current_disabled_systems=("${current_disabled_systems[@]}" "$system_name")
|
|
||||||
fi
|
|
||||||
current_preset_settings=("${current_preset_settings[@]}" "$system_value" "$(make_name_pretty $system_name)" "$system_name")
|
|
||||||
done < <(printf '%s\n' "$section_results")
|
|
||||||
|
|
||||||
choice=$(zenity \
|
choice=$(zenity \
|
||||||
--list --width=1200 --height=720 \
|
--list --width=1200 --height=720 \
|
||||||
|
@ -42,6 +21,55 @@ change_preset_dialog() {
|
||||||
|
|
||||||
if [[ ! -z $choice || "$rc" == 0 ]]; then
|
if [[ ! -z $choice || "$rc" == 0 ]]; then
|
||||||
(
|
(
|
||||||
|
make_preset_changes
|
||||||
|
) |
|
||||||
|
zenity --icon-name=net.retrodeck.retrodeck --progress --no-cancel --pulsate --auto-close \
|
||||||
|
--window-icon="/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \
|
||||||
|
--title "RetroDECK Configurator Utility - Presets Configuration" \
|
||||||
|
--text="Setting up your presets, please wait..."
|
||||||
|
else
|
||||||
|
echo "No choices made"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
build_preset_list_options() {
|
||||||
|
# This function will build a list of all the systems available for a given preset
|
||||||
|
# The list will be generated into a Godot temp file and the variable $current_preset_settings
|
||||||
|
|
||||||
|
if [[ -f "$godot_current_preset_settings" ]]; then
|
||||||
|
rm -f "$godot_current_preset_settings" # Godot data transfer temp files
|
||||||
|
fi
|
||||||
|
touch "$godot_current_preset_settings"
|
||||||
|
|
||||||
|
preset="$1"
|
||||||
|
pretty_preset_name=${preset//_/ } # Preset name prettification
|
||||||
|
pretty_preset_name=$(echo $pretty_preset_name | awk '{for(i=1;i<=NF;i++){$i=toupper(substr($i,1,1))substr($i,2)}}1') # Preset name prettification
|
||||||
|
current_preset_settings=()
|
||||||
|
current_enabled_systems=()
|
||||||
|
current_disabled_systems=()
|
||||||
|
changed_systems=()
|
||||||
|
changed_presets=()
|
||||||
|
local section_results=$(sed -n '/\['"$preset"'\]/, /\[/{ /\['"$preset"'\]/! { /\[/! p } }' $rd_conf | sed '/^$/d')
|
||||||
|
|
||||||
|
while IFS= read -r config_line
|
||||||
|
do
|
||||||
|
system_name=$(get_setting_name "$config_line" "retrodeck")
|
||||||
|
all_systems=("${all_systems[@]}" "$system_name")
|
||||||
|
system_value=$(get_setting_value "$rd_conf" "$system_name" "retrodeck" "$preset")
|
||||||
|
if [[ "$system_value" == "true" ]]; then
|
||||||
|
current_enabled_systems=("${current_enabled_systems[@]}" "$system_name")
|
||||||
|
elif [[ "$system_value" == "false" ]]; then
|
||||||
|
current_disabled_systems=("${current_disabled_systems[@]}" "$system_name")
|
||||||
|
fi
|
||||||
|
current_preset_settings=("${current_preset_settings[@]}" "$system_value" "$(make_name_pretty $system_name)" "$system_name")
|
||||||
|
echo "$system_value"^"$(make_name_pretty $system_name)"^"$system_name" >> "$godot_current_preset_settings"
|
||||||
|
done < <(printf '%s\n' "$section_results")
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
make_preset_changes() {
|
||||||
|
# This function will take an array $choices, which contains the names of systems that have been enabled for this preset and enable them in the backend
|
||||||
|
|
||||||
IFS="," read -ra choices <<< "$choice"
|
IFS="," read -ra choices <<< "$choice"
|
||||||
for emulator in "${all_systems[@]}"; do
|
for emulator in "${all_systems[@]}"; do
|
||||||
if [[ " ${choices[*]} " =~ " ${emulator} " && ! " ${current_enabled_systems[*]} " =~ " ${emulator} " ]]; then
|
if [[ " ${choices[*]} " =~ " ${emulator} " && ! " ${current_enabled_systems[*]} " =~ " ${emulator} " ]]; then
|
||||||
|
@ -71,14 +99,6 @@ change_preset_dialog() {
|
||||||
for emulator in "${changed_systems[@]}"; do
|
for emulator in "${changed_systems[@]}"; do
|
||||||
build_preset_config $emulator ${changed_presets[*]}
|
build_preset_config $emulator ${changed_presets[*]}
|
||||||
done
|
done
|
||||||
) |
|
|
||||||
zenity --icon-name=net.retrodeck.retrodeck --progress --no-cancel --pulsate --auto-close \
|
|
||||||
--window-icon="/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \
|
|
||||||
--title "RetroDECK Configurator Utility - Presets Configuration" \
|
|
||||||
--text="Setting up your presets, please wait..."
|
|
||||||
else
|
|
||||||
echo "No choices made"
|
|
||||||
fi
|
|
||||||
}
|
}
|
||||||
|
|
||||||
build_preset_config() {
|
build_preset_config() {
|
||||||
|
@ -128,7 +148,7 @@ build_preset_config() {
|
||||||
create_dir "$(realpath "$(dirname "$read_target_file")")"
|
create_dir "$(realpath "$(dirname "$read_target_file")")"
|
||||||
echo "$read_setting_name = \""$new_setting_value"\"" > "$read_target_file"
|
echo "$read_setting_name = \""$new_setting_value"\"" > "$read_target_file"
|
||||||
else
|
else
|
||||||
if [[ -z $(grep "$read_setting_name" "$read_target_file") ]]; then
|
if [[ -z $(grep -o -P "^$read_setting_name\b" "$read_target_file") ]]; then
|
||||||
add_setting "$read_target_file" "$read_setting_name" "$new_setting_value" "$read_config_format" "$section"
|
add_setting "$read_target_file" "$read_setting_name" "$new_setting_value" "$read_config_format" "$section"
|
||||||
else
|
else
|
||||||
set_setting_value "$read_target_file" "$read_setting_name" "$new_setting_value" "$read_config_format" "$section"
|
set_setting_value "$read_target_file" "$read_setting_name" "$new_setting_value" "$read_config_format" "$section"
|
||||||
|
|
|
@ -67,22 +67,32 @@
|
||||||
<project_license>GPL-3.0</project_license>
|
<project_license>GPL-3.0</project_license>
|
||||||
<metadata_license>CC0-1.0</metadata_license>
|
<metadata_license>CC0-1.0</metadata_license>
|
||||||
<releases>
|
<releases>
|
||||||
<release version="0.8.1b" date="2024-04-22">
|
<release version="0.8.1b" date="2024-05-13">
|
||||||
<url>https://github.com/XargonWan/RetroDECK/releases/tag/0.8.1b</url>
|
<url>https://github.com/XargonWan/RetroDECK/releases/tag/0.8.1b</url>
|
||||||
<description>
|
<description>
|
||||||
<p>Changes:</p>
|
<p>Changes:</p>
|
||||||
<ul>
|
<ul>
|
||||||
|
<li>All emulators updated</li>
|
||||||
<li>PREPARE_COMPONENT: now the choice is passed lowercased so the script don't have to check for the possible casings, this should fix the issue where GZDoom couldn't be reset as it was expecting both GZDOOM or gzdoom.</li>
|
<li>PREPARE_COMPONENT: now the choice is passed lowercased so the script don't have to check for the possible casings, this should fix the issue where GZDoom couldn't be reset as it was expecting both GZDOOM or gzdoom.</li>
|
||||||
<li>ES-DE: gamelists are now moved to retrodeck/ES-DE/gamelist (previously was retrodeck/gamelist)</li>
|
<li>ES-DE: downloaded_media, gamelist, and themes are now moved to the new retrodeck/ES-DE (previously was retrodeck)</li>
|
||||||
<li>ES-DE: custom collections are now located in retrodeck/ES-DE/collections, this prevents to be destroyed by a reset</li>
|
<li>ES-DE: custom collections are now located in retrodeck/ES-DE/collections, this prevents to be destroyed by a reset</li>
|
||||||
<li>LOGGER: version notes are no more outputed in the terminal or in the logs</li>
|
<li>LOGGER: version notes are no more outputed in the terminal or in the logs</li>
|
||||||
|
<li>WORKFLOWS: added RetroDECK.flatpak.sha files</li>
|
||||||
<li>WORKFLOWS: disabled nightly builds (was broken)</li>
|
<li>WORKFLOWS: disabled nightly builds (was broken)</li>
|
||||||
<li>FRAMEWORK: now the PR builds are recognized same as cooker builds</li>
|
<li>FRAMEWORK: now the PR builds are recognized same as cooker builds</li>
|
||||||
<li>FRAMEWORK: now there is a warning to check background windows, useful when installing RCPS3 firmware as some users were stuck on that screen without noticing the windows in the backgrounds</li>
|
<li>FRAMEWORK: now there is a warning to check background windows, useful when installing RCPS3 firmware as some users were stuck on that screen without noticing the windows in the backgrounds</li>
|
||||||
|
<li>COOKER_UPDATER: added the hash check before uninstalling the flatpak</li>
|
||||||
<li>HELPER_FILES: updated links pointing to the new wiki</li>
|
<li>HELPER_FILES: updated links pointing to the new wiki</li>
|
||||||
|
<li>MAME-SA: added cheats</li>
|
||||||
<li>RYUJINX: added an helper file to specify how to install the firmware (not copying it in the folder)</li>
|
<li>RYUJINX: added an helper file to specify how to install the firmware (not copying it in the folder)</li>
|
||||||
<li>CITRA_LIBRETRO: upscaled to 2x (was 4x but was too much), set system as "New 3DS"</li>
|
<li>RPCS3: included the confirm on quit preset, that can be enabled or disabled trough configurator like the other emulators</li>
|
||||||
<li>RETROARCH: fixed an issue where if a zip contained more than the game files it failed to load the game</li>
|
<li>RETROARCH: fixed an issue where if a zip contained more than the game files it failed to load the game</li>
|
||||||
|
<li>CITRA_LIBRETRO: upscaled to 2x (was 4x but was too much), set system as "New 3DS"</li>
|
||||||
|
<li>GW_LIBRETRO: Handheld Electronic (GW) Libretro is now the defaulted Game And Watch emulator (due to a bug)</li>
|
||||||
|
<li>MESEN_LIBRETRO: enabled FDS disk auto load</li>
|
||||||
|
<li>SCUMMVM_LIBRETRO: provided assets</li>
|
||||||
|
<li>BIOS_CHECKER: added bios support for 3DO, GB, GBC, GBA, Neo Geo CD</li>
|
||||||
|
<li>BIOS_CHECKER: added more missing hashes</li>
|
||||||
</ul>
|
</ul>
|
||||||
<p>Known issues:</p>
|
<p>Known issues:</p>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
|
@ -22,7 +22,7 @@ finish-args:
|
||||||
- --talk-name=org.freedesktop.login1.Manager
|
- --talk-name=org.freedesktop.login1.Manager
|
||||||
- --filesystem=xdg-run/app/com.discordapp.Discord:create
|
- --filesystem=xdg-run/app/com.discordapp.Discord:create
|
||||||
- --filesystem=xdg-config/gtk-3.0:ro
|
- --filesystem=xdg-config/gtk-3.0:ro
|
||||||
- --env=QT_QPA_PLATFORM=wayland-egl;wayland;xcb
|
- --env=QT_QPA_PLATFORM=wayland;wayland-egl;xcb
|
||||||
# Dolphin
|
# Dolphin
|
||||||
- --allow=bluetooth
|
- --allow=bluetooth
|
||||||
# It allows an SDL application to specify its window class, which can be useful for window managers and desktop environments to identify and group similar windows
|
# It allows an SDL application to specify its window class, which can be useful for window managers and desktop environments to identify and group similar windows
|
||||||
|
@ -70,7 +70,7 @@ modules:
|
||||||
#
|
#
|
||||||
# UPDATE STEPS FOR MAIN:
|
# UPDATE STEPS FOR MAIN:
|
||||||
# [ ] Update the VERSION variable on line containing "VERSION=THISBRANCH"
|
# [ ] Update the VERSION variable on line containing "VERSION=THISBRANCH"
|
||||||
# [x] Update the appdata.xml with the version number and notes
|
# [ ] Update the appdata.xml with the version number and notes
|
||||||
#
|
#
|
||||||
- name: version-initialization
|
- name: version-initialization
|
||||||
buildsystem: simple
|
buildsystem: simple
|
||||||
|
@ -162,20 +162,6 @@ modules:
|
||||||
url: https://ftp.osuosl.org/pub/blfs/conglomeration/libgudev/libgudev-237.tar.xz
|
url: https://ftp.osuosl.org/pub/blfs/conglomeration/libgudev/libgudev-237.tar.xz
|
||||||
sha256: 0d06b21170d20c93e4f0534dbb9b0a8b4f1119ffb00b4031aaeb5b9148b686aa
|
sha256: 0d06b21170d20c93e4f0534dbb9b0a8b4f1119ffb00b4031aaeb5b9148b686aa
|
||||||
|
|
||||||
# #
|
|
||||||
# DEPRECATED IN FAVOR OF COMPILED MAME TOOL #
|
|
||||||
# #
|
|
||||||
# - name: chdman-tool
|
|
||||||
# buildsystem: simple
|
|
||||||
# build-commands:
|
|
||||||
# - cmake -B . -G Ninja
|
|
||||||
# - cmake --build .
|
|
||||||
# - cp chdman /app/bin
|
|
||||||
# sources:
|
|
||||||
# - type: git
|
|
||||||
# url: https://github.com/CharlesThobe/chdman.git
|
|
||||||
# commit: f7cadf1720cbeba8a14f2685830ff424a0c7f6cd
|
|
||||||
|
|
||||||
- name: rclone
|
- name: rclone
|
||||||
buildsystem: simple
|
buildsystem: simple
|
||||||
build-commands:
|
build-commands:
|
||||||
|
@ -224,6 +210,7 @@ modules:
|
||||||
url: https://github.com/mikefarah/yq/releases/download/v4.33.3/yq_linux_amd64
|
url: https://github.com/mikefarah/yq/releases/download/v4.33.3/yq_linux_amd64
|
||||||
sha256: 4ee662847c588c3ef2fec8bfb304e8739e3dbaba87ccb9a608d691c88f5b64dc
|
sha256: 4ee662847c588c3ef2fec8bfb304e8739e3dbaba87ccb9a608d691c88f5b64dc
|
||||||
|
|
||||||
|
# dependency of: CEMU
|
||||||
- name: glslang
|
- name: glslang
|
||||||
buildsystem: cmake-ninja
|
buildsystem: cmake-ninja
|
||||||
config-opts:
|
config-opts:
|
||||||
|
@ -236,21 +223,13 @@ modules:
|
||||||
- /lib/cmake
|
- /lib/cmake
|
||||||
sources:
|
sources:
|
||||||
- type: archive
|
- type: archive
|
||||||
url: https://github.com/KhronosGroup/glslang/archive/14.0.0.tar.gz
|
url: https://github.com/KhronosGroup/glslang/archive/14.2.0.tar.gz
|
||||||
sha256: 80bbb916a23e94ea9cbfb1acb5d1a44a7e0c9613bcf5b5947c03f2273bdc92b0
|
sha256: 14a2edbb509cb3e51a9a53e3f5e435dbf5971604b4b833e63e6076e8c0a997b5
|
||||||
x-checker-data:
|
x-checker-data:
|
||||||
type: anitya
|
type: anitya
|
||||||
stable-only: true
|
stable-only: true
|
||||||
project-id: 205796
|
project-id: 205796
|
||||||
url-template: https://github.com/KhronosGroup/glslang/archive/$version.tar.gz
|
url-template: https://github.com/KhronosGroup/glslang/archive/$version.tar.gz
|
||||||
# - type: git
|
|
||||||
# url: https://github.com/KhronosGroup/SPIRV-Tools.git
|
|
||||||
# tag: sdk-1.3.261.1
|
|
||||||
# dest: External/spirv-tools
|
|
||||||
# - type: git
|
|
||||||
# url: https://github.com/KhronosGroup/SPIRV-Headers.git
|
|
||||||
# tag: sdk-1.3.261.1
|
|
||||||
# dest: External/spirv-tools/external/spirv-headers
|
|
||||||
|
|
||||||
# enables motion controls on non-wii controllers (switch, ps4, etc)
|
# enables motion controls on non-wii controllers (switch, ps4, etc)
|
||||||
# dependency of: DOLPHIN, RPCS3
|
# dependency of: DOLPHIN, RPCS3
|
||||||
|
@ -260,16 +239,20 @@ modules:
|
||||||
config-opts:
|
config-opts:
|
||||||
- -Dtests=disabled
|
- -Dtests=disabled
|
||||||
- -Ddocumentation=disabled
|
- -Ddocumentation=disabled
|
||||||
|
cleanup:
|
||||||
|
- /bin
|
||||||
|
- /include
|
||||||
|
- /lib/pkgconfig
|
||||||
|
- /share
|
||||||
sources:
|
sources:
|
||||||
- type: archive
|
- type: archive
|
||||||
url: https://www.freedesktop.org/software/libevdev/libevdev-1.13.1.tar.xz
|
url: https://www.freedesktop.org/software/libevdev/libevdev-1.13.2.tar.xz
|
||||||
sha256: 06a77bf2ac5c993305882bc1641017f5bec1592d6d1b64787bad492ab34f2f36
|
sha256: 3eca86a6ce55b81d5bce910637fc451c8bbe373b1f9698f375c7f1ad0de3ac48
|
||||||
x-checker-data:
|
x-checker-data:
|
||||||
type: anitya
|
type: anitya
|
||||||
project-id: 20540
|
project-id: 20540
|
||||||
stable-only: true
|
stable-only: true
|
||||||
url-template: https://www.freedesktop.org/software/libevdev/libevdev-$version.tar.xz
|
url-template: https://www.freedesktop.org/software/libevdev/libevdev-$version.tar.xz
|
||||||
|
|
||||||
# dependency of: CEMU
|
# dependency of: CEMU
|
||||||
- name: rapidjson
|
- name: rapidjson
|
||||||
buildsystem: cmake-ninja
|
buildsystem: cmake-ninja
|
||||||
|
@ -331,10 +314,17 @@ modules:
|
||||||
# dependency of: XEMU, MelonDS
|
# dependency of: XEMU, MelonDS
|
||||||
- name: libslirp
|
- name: libslirp
|
||||||
buildsystem: meson
|
buildsystem: meson
|
||||||
|
cleanup:
|
||||||
|
- /include
|
||||||
sources:
|
sources:
|
||||||
- type: git
|
- type: archive
|
||||||
url: https://gitlab.freedesktop.org/slirp/libslirp.git
|
url: https://gitlab.freedesktop.org/slirp/libslirp/-/archive/v4.8.0/libslirp-v4.8.0.tar.gz
|
||||||
tag: v4.7.0
|
sha256: 2a98852e65666db313481943e7a1997abff0183bd9bea80caec1b5da89fda28c
|
||||||
|
x-checker-data:
|
||||||
|
type: anitya
|
||||||
|
project-id: 96796
|
||||||
|
stable-only: true
|
||||||
|
url-template: https://gitlab.freedesktop.org/slirp/libslirp/-/archive/v$version/libslirp-v$version.tar.gz
|
||||||
|
|
||||||
# dependency of: CEMU (1.0.26), DOLPHIN (1.0.27)
|
# dependency of: CEMU (1.0.26), DOLPHIN (1.0.27)
|
||||||
- name: libusb
|
- name: libusb
|
||||||
|
@ -357,7 +347,6 @@ modules:
|
||||||
# ES-DE - START
|
# ES-DE - START
|
||||||
# https://gitlab.com/es-de/emulationstation-de
|
# https://gitlab.com/es-de/emulationstation-de
|
||||||
|
|
||||||
#This is disabled because we added the extension (line 11), check if the videos are ok.
|
|
||||||
- name: ffmpeg
|
- name: ffmpeg
|
||||||
config-opts:
|
config-opts:
|
||||||
- --disable-static
|
- --disable-static
|
||||||
|
@ -692,12 +681,12 @@ modules:
|
||||||
- ln -s "${FLATPAK_DEST}/pcsx2-qt/usr/bin/pcsx2-qt" "${FLATPAK_DEST}/bin/pcsx2-qt"
|
- ln -s "${FLATPAK_DEST}/pcsx2-qt/usr/bin/pcsx2-qt" "${FLATPAK_DEST}/bin/pcsx2-qt"
|
||||||
sources:
|
sources:
|
||||||
- type: file
|
- type: file
|
||||||
url: https://github.com/PCSX2/pcsx2/releases/download/v1.7.5645/pcsx2-v1.7.5645-linux-appimage-x64-Qt.AppImage
|
url: https://github.com/PCSX2/pcsx2/releases/download/v1.7.5900/pcsx2-v1.7.5900-linux-appimage-x64-Qt.AppImage
|
||||||
sha256: dcd11469a91d8daa57fe46719a968e73ed282d81925879aca9393527f8b695fd
|
sha256: a4012fbdd175536cac99ef7f0b5fb65aa8303b4c5b8cc31918a05341d61bbb26
|
||||||
|
|
||||||
# PCSX2 - END
|
# PCSX2 - END
|
||||||
|
|
||||||
# Dolphin - START
|
# Dolphin - START - FROZEN UNTIL KDE 6.7 UPDATE
|
||||||
# https://github.com/flathub/org.DolphinEmu.dolphin-emu
|
# https://github.com/flathub/org.DolphinEmu.dolphin-emu
|
||||||
# WHEN UPADTING: remember to update rd-submodules/dolphin contents
|
# WHEN UPADTING: remember to update rd-submodules/dolphin contents
|
||||||
|
|
||||||
|
@ -822,8 +811,8 @@ modules:
|
||||||
sources:
|
sources:
|
||||||
- type: git
|
- type: git
|
||||||
url: https://github.com/xemu-project/xemu.git
|
url: https://github.com/xemu-project/xemu.git
|
||||||
tag: v0.7.120
|
tag: v0.7.126
|
||||||
commit: 94d826a4f125d755d6d37069ad7084bfde33d650
|
commit: b2b6a98d5ea21970cd2436a1912230f4b97c5e03
|
||||||
x-checker-data:
|
x-checker-data:
|
||||||
type: json
|
type: json
|
||||||
url: https://api.github.com/repos/xemu-project/xemu/releases/latest
|
url: https://api.github.com/repos/xemu-project/xemu/releases/latest
|
||||||
|
@ -862,7 +851,7 @@ modules:
|
||||||
|
|
||||||
# MELONDS - END
|
# MELONDS - END
|
||||||
|
|
||||||
# RPCS3 - START
|
# RPCS3 - START - FROZEN UNTIL KDE 6.7 UPDATE
|
||||||
# https://github.com/flathub/net.rpcs3.RPCS3
|
# https://github.com/flathub/net.rpcs3.RPCS3
|
||||||
|
|
||||||
- name: rpcs3
|
- name: rpcs3
|
||||||
|
@ -913,7 +902,7 @@ modules:
|
||||||
|
|
||||||
# RPCS3 - END
|
# RPCS3 - END
|
||||||
|
|
||||||
# PRIMEHACK - START
|
# PRIMEHACK - START - FROZEN UNTIL KDE 6.7 UPDATE
|
||||||
# https://github.com/flathub/io.github.shiiion.primehack
|
# https://github.com/flathub/io.github.shiiion.primehack
|
||||||
|
|
||||||
- name: primehack
|
- name: primehack
|
||||||
|
@ -955,7 +944,7 @@ modules:
|
||||||
|
|
||||||
# # PRIMEHACK - END
|
# # PRIMEHACK - END
|
||||||
|
|
||||||
# Duckstation-AppImage - START
|
# Duckstation-AppImage - START - AUTOUPDATED
|
||||||
# https://github.com/stenzek/duckstation/releases/tag/preview
|
# https://github.com/stenzek/duckstation/releases/tag/preview
|
||||||
|
|
||||||
- name: Duckstation-AppImage
|
- name: Duckstation-AppImage
|
||||||
|
@ -1001,8 +990,8 @@ modules:
|
||||||
- /lib/cmake
|
- /lib/cmake
|
||||||
sources:
|
sources:
|
||||||
- type: archive
|
- type: archive
|
||||||
url: https://boostorg.jfrog.io/artifactory/main/release/1.84.0/source/boost_1_84_0.tar.bz2
|
url: https://boostorg.jfrog.io/artifactory/main/release/1.85.0/source/boost_1_85_0.tar.bz2
|
||||||
sha256: cc4b893acf645c9d4b698e9a0f08ca8846aa5d6c68275c14c3e7949c24109454
|
sha256: 7009fe1faa1697476bdc7027703a2badb84e849b7b0baad5086b087b971f8617
|
||||||
x-checker-data:
|
x-checker-data:
|
||||||
type: anitya
|
type: anitya
|
||||||
project-id: 6845
|
project-id: 6845
|
||||||
|
@ -1058,8 +1047,8 @@ modules:
|
||||||
- /share
|
- /share
|
||||||
sources:
|
sources:
|
||||||
- type: archive
|
- type: archive
|
||||||
url: https://github.com/wxWidgets/wxWidgets/releases/download/v3.2.4/wxWidgets-3.2.4.tar.bz2
|
url: https://github.com/wxWidgets/wxWidgets/releases/download/v3.2.5/wxWidgets-3.2.5.tar.bz2
|
||||||
sha256: 0640e1ab716db5af2ecb7389dbef6138d7679261fbff730d23845ba838ca133e
|
sha256: 0ad86a3ad3e2e519b6a705248fc9226e3a09bbf069c6c692a02acf7c2d1c6b51
|
||||||
x-checker-data:
|
x-checker-data:
|
||||||
type: anitya
|
type: anitya
|
||||||
project-id: 5150
|
project-id: 5150
|
||||||
|
@ -1079,8 +1068,21 @@ modules:
|
||||||
x-checker-data:
|
x-checker-data:
|
||||||
type: git
|
type: git
|
||||||
tag-pattern: ^v([\d.]+-\d+)$
|
tag-pattern: ^v([\d.]+-\d+)$
|
||||||
tag: v2.0-73
|
tag: v2.0-86
|
||||||
commit: 241915e1a6bfd92e4ffd0d6961a178335300e83f
|
commit: 1672f969bbc4a683e4a852aa2e145c1e6f9f68e6
|
||||||
|
disable-submodules: true
|
||||||
|
- type: git
|
||||||
|
url: https://github.com/mozilla/cubeb
|
||||||
|
commit: 6c1a6e151c1f981a2800d40af7c041cfcccc710e
|
||||||
|
dest: dependencies/cubeb
|
||||||
|
- type: git
|
||||||
|
url: https://github.com/Exzap/ZArchive
|
||||||
|
dest: dependencies/ZArchive
|
||||||
|
tag: v0.1.2
|
||||||
|
- type: git
|
||||||
|
url: https://github.com/ocornut/imgui
|
||||||
|
dest: dependencies/imgui
|
||||||
|
commit: f65bcf481ab34cd07d3909aab1479f409fa79f2f
|
||||||
- type: shell
|
- type: shell
|
||||||
commands:
|
commands:
|
||||||
- sed "s/set(EXPERIMENTAL_VERSION.*/set(EXPERIMENTAL_VERSION \"$(git describe
|
- sed "s/set(EXPERIMENTAL_VERSION.*/set(EXPERIMENTAL_VERSION \"$(git describe
|
||||||
|
@ -1128,7 +1130,7 @@ modules:
|
||||||
|
|
||||||
# Cemu - END
|
# Cemu - END
|
||||||
|
|
||||||
# Vita3K - START
|
# Vita3K - START - AUTOUPDATED
|
||||||
|
|
||||||
- name: vita3k
|
- name: vita3k
|
||||||
buildsystem: simple
|
buildsystem: simple
|
||||||
|
@ -1233,8 +1235,8 @@ modules:
|
||||||
ln -sv ${FLATPAK_DEST}/ryujinx/Ryujinx ${FLATPAK_DEST}/bin/Ryujinx.sh
|
ln -sv ${FLATPAK_DEST}/ryujinx/Ryujinx ${FLATPAK_DEST}/bin/Ryujinx.sh
|
||||||
sources:
|
sources:
|
||||||
- type: file
|
- type: file
|
||||||
url: https://github.com/Ryujinx/release-channel-master/releases/download/1.1.1247/ryujinx-1.1.1247-linux_x64.tar.gz
|
url: https://github.com/Ryujinx/release-channel-master/releases/download/1.1.1330/ryujinx-1.1.1330-linux_x64.tar.gz
|
||||||
sha256: c929a17b3fe819b155b1126ae5d255e71c986c0be257c92fbbae967e5070e51a
|
sha256: 1e9158a3f55ff128e089ac3778dfb35127f2cab9d59bc52b5fe63c7b7ac2f6cb
|
||||||
|
|
||||||
# Ryujinx Appimage - END
|
# Ryujinx Appimage - END
|
||||||
|
|
||||||
|
|
|
@ -1,32 +1,31 @@
|
||||||
name: "Build cooker"
|
name: "Build cooker"
|
||||||
|
|
||||||
on:
|
on:
|
||||||
# push:
|
push:
|
||||||
# branches:
|
branches:
|
||||||
# - cooker*
|
- cooker*
|
||||||
# - feat*
|
- feat*
|
||||||
# paths:
|
paths:
|
||||||
# - '.github/workflows/**'
|
- '.github/workflows/**'
|
||||||
# - 'automation_tools/**'
|
- 'automation_tools/**'
|
||||||
# - 'emu-configs/**'
|
- 'emu-configs/**'
|
||||||
# - 'es-configs/**'
|
- 'es-configs/**'
|
||||||
# - 'functions/**'
|
- 'functions/**'
|
||||||
# - 'rd-submodules/**'
|
- 'rd-submodules/**'
|
||||||
# - '*.sh'
|
- '*.sh'
|
||||||
# - 'net.retrodeck.retrodeck.yml'
|
- 'net.retrodeck.retrodeck.yml'
|
||||||
# - 'net.retrodeck.retrodeck.appdata.xml'
|
- 'net.retrodeck.retrodeck.appdata.xml'
|
||||||
# pull_request:
|
pull_request:
|
||||||
# branches:
|
branches:
|
||||||
# - cooker*
|
- cooker*
|
||||||
|
|
||||||
# Italy (CET): 11:00 PM
|
# Italy (CET): 11:00 PM
|
||||||
# Japan (JST): 7:00 AM
|
# Japan (JST): 7:00 AM
|
||||||
schedule:
|
# schedule:
|
||||||
- cron: '0 22 * * *'
|
# - cron: '0 22 * * *'
|
||||||
|
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|
||||||
Building_RetroDECK:
|
Building_RetroDECK:
|
||||||
|
@ -49,6 +48,33 @@ jobs:
|
||||||
- name: Generate cooker build ID
|
- name: Generate cooker build ID
|
||||||
run: "/bin/bash ${GITHUB_WORKSPACE}/automation_tools/cooker_build_id.sh"
|
run: "/bin/bash ${GITHUB_WORKSPACE}/automation_tools/cooker_build_id.sh"
|
||||||
|
|
||||||
|
- name: Get branch name
|
||||||
|
id: branch_name
|
||||||
|
run: echo "BRANCH_NAME=$(echo $GITHUB_REF | sed 's|refs/heads/||')" >> $GITHUB_ENV
|
||||||
|
|
||||||
|
# if it's a feature branch it will not marked as "latest" cooker version
|
||||||
|
- name: "Set makeLatest (cooker only)"
|
||||||
|
run: |
|
||||||
|
if [[ "$BRANCH_NAME" == 'feat/'* || "$BRANCH_NAME" == 'refs/'* ]]; then
|
||||||
|
echo "MAKE_LATEST=false" >> $GITHUB_ENV
|
||||||
|
else
|
||||||
|
echo "MAKE_LATEST=true" >> $GITHUB_ENV
|
||||||
|
fi
|
||||||
|
|
||||||
|
# if the branch is coming from a PR the tag should be manually built
|
||||||
|
- name: "Generate version tag"
|
||||||
|
run: |
|
||||||
|
if [[ "$BRANCH_NAME" == 'refs/'* ]]; then
|
||||||
|
pr_number=$(echo ${{env.BRANCH_NAME}} | awk -F'/' '{print $3}')
|
||||||
|
source_branch=$(curl -s "https://api.github.com/repos/XargonWan/RetroDECK/pulls/$pr_number" | jq -r '.head.ref')
|
||||||
|
source_branch=${source_branch//\//-}
|
||||||
|
echo "[DEBUG] source branch is: $source_branch"
|
||||||
|
echo "TAG=PR-$pr_number-$source_branch-${{ env.buildid }}" >> $GITHUB_ENV
|
||||||
|
else
|
||||||
|
echo "TAG=${{env.BRANCH_NAME}}-${{ env.buildid }}" >> $GITHUB_ENV
|
||||||
|
fi
|
||||||
|
echo "Version TAG: ${{ env.TAG }}"
|
||||||
|
|
||||||
# backing up manifest in case download fails and hashes must be recalculated
|
# backing up manifest in case download fails and hashes must be recalculated
|
||||||
- name: Manifest backup
|
- name: Manifest backup
|
||||||
run: "cp ${GITHUB_WORKSPACE}/net.retrodeck.retrodeck.yml ${GITHUB_WORKSPACE}/net.retrodeck.retrodeck.yml.bak"
|
run: "cp ${GITHUB_WORKSPACE}/net.retrodeck.retrodeck.yml ${GITHUB_WORKSPACE}/net.retrodeck.retrodeck.yml.bak"
|
||||||
|
@ -109,23 +135,10 @@ jobs:
|
||||||
id: commits
|
id: commits
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
|
|
||||||
- name: Get branch name
|
|
||||||
id: branch_name
|
|
||||||
run: echo "BRANCH_NAME=$(echo $GITHUB_REF | sed 's|refs/heads/||')" >> $GITHUB_ENV
|
|
||||||
|
|
||||||
# if it's a feature branch it will not marked as "latest" cooker version
|
|
||||||
- name: "Set makeLatest (cooker only)"
|
|
||||||
run: |
|
|
||||||
if [[ "$BRANCH_NAME" == 'feat/'* ]]; then
|
|
||||||
echo "MAKE_LATEST=false" >> $GITHUB_ENV
|
|
||||||
else
|
|
||||||
echo "MAKE_LATEST=true" >> $GITHUB_ENV
|
|
||||||
fi
|
|
||||||
|
|
||||||
- name: Publish the flatpak in a new cooker release
|
- name: Publish the flatpak in a new cooker release
|
||||||
uses: ncipollo/release-action@v1
|
uses: ncipollo/release-action@v1
|
||||||
with:
|
with:
|
||||||
tag: "${{env.BRANCH_NAME}}-${{ env.buildid }}"
|
tag: "${{env.TAG}}"
|
||||||
body: |
|
body: |
|
||||||
# Release Notes (Cooker)
|
# Release Notes (Cooker)
|
||||||
This is a cooker snapshot based on the commit: ${{ github.event.repository.full_name }}@${{github.sha}}.
|
This is a cooker snapshot based on the commit: ${{ github.event.repository.full_name }}@${{github.sha}}.
|
||||||
|
@ -139,7 +152,7 @@ jobs:
|
||||||
Cooker channel is provided for the community to test fixes and explore new functionality.
|
Cooker channel is provided for the community to test fixes and explore new functionality.
|
||||||
Please DO NOT open issues or ask support on this build.
|
Please DO NOT open issues or ask support on this build.
|
||||||
|
|
||||||
artifacts: "RetroDECK-cooker.flatpak,RetroDECK-Artifact.tar.gz"
|
artifacts: "RetroDECK-cooker.flatpak,RetroDECK-cooker.flatpak.sha,RetroDECK-Artifact.tar.gz"
|
||||||
allowUpdates: true
|
allowUpdates: true
|
||||||
makeLatest: ${{env.MAKE_LATEST}} # if it's a feat branch is not considered the latest build
|
makeLatest: ${{env.MAKE_LATEST}} # if it's a feat branch is not considered the latest build
|
||||||
token: ${{ secrets.TRIGGER_BUILD_TOKEN }}
|
token: ${{ secrets.TRIGGER_BUILD_TOKEN }}
|
||||||
|
@ -154,3 +167,53 @@ jobs:
|
||||||
path: RetroDECK-cooker.flatpak
|
path: RetroDECK-cooker.flatpak
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
|
|
||||||
|
# - name: Upload RetroDECK-cooker.flatpak to Gitea Release
|
||||||
|
# run: |
|
||||||
|
# # Set variables for Gitea host, organization, repository, access token, and release details
|
||||||
|
# GITEA_HOST="repo.retrodeck.net"
|
||||||
|
# ORGANIZATION="RetroDECK"
|
||||||
|
# REPO="RetroDECK-cooker"
|
||||||
|
# GITEA_TOKEN="${{ secrets.GITEA_TRIGGER_BUILD_TOKEN }}"
|
||||||
|
# RELEASE_NAME="RetroDECK ${{env.TAG}}"
|
||||||
|
# TAG="${{env.TAG}}"
|
||||||
|
# RELEASE_BODY="# Release Notes (Cooker)
|
||||||
|
# This is a cooker snapshot based on the commit: ${{ github.event.repository.full_name }}@${{github.sha}}.
|
||||||
|
# On branch [${{env.BRANCH_NAME}}](https://repo.retrodeck.net/RetroDECK/RetroDECK/src/branch/${{env.BRANCH_NAME}}).
|
||||||
|
|
||||||
|
# ## Commits since last release
|
||||||
|
# ${{ steps.commits.outputs.commits }}
|
||||||
|
|
||||||
|
# For the full release note for this build please refer to the channel [#BETA-TESTING](https://discord.gg/WDc5C9YWMx) on our Discord server.
|
||||||
|
|
||||||
|
# Cooker channel is provided for the community to test fixes and explore new functionality.
|
||||||
|
# Please DO NOT open issues or ask support on this build."
|
||||||
|
|
||||||
|
# # Create a release using curl and capture the release ID
|
||||||
|
# release_response=$(curl -X POST \
|
||||||
|
# -H "Authorization: token ${GITEA_TOKEN}" \
|
||||||
|
# -H "Content-Type: application/json" \
|
||||||
|
# -d "{\"tag_name\":\"$TAG\",\"name\":\"$RELEASE_NAME\",\"body\":\"$RELEASE_BODY\"}" \
|
||||||
|
# "http://$GITEA_HOST/api/v1/repos/$ORGANIZATION/$REPO/releases")
|
||||||
|
|
||||||
|
# # Extract the release ID from the response
|
||||||
|
# release_id=$(echo $release_response | jq -r '.id')
|
||||||
|
|
||||||
|
# # Upload artifacts
|
||||||
|
# curl -X POST \
|
||||||
|
# -H "Authorization: token ${GITEA_TOKEN}" \
|
||||||
|
# -H "Content-Type: multipart/form-data" \
|
||||||
|
# -F "attachment=@RetroDECK-cooker.flatpak" \
|
||||||
|
# "http://$GITEA_HOST/api/v1/repos/$ORGANIZATION/$REPO/releases/$release_id/assets?name=RetroDECK-cooker.flatpak"
|
||||||
|
|
||||||
|
# # Upload artifacts sha
|
||||||
|
# curl -X POST \
|
||||||
|
# -H "Authorization: token ${GITEA_TOKEN}" \
|
||||||
|
# -H "Content-Type: multipart/form-data" \
|
||||||
|
# -F "attachment=@RetroDECK-cooker.flatpak.sha" \
|
||||||
|
# "http://$GITEA_HOST/api/v1/repos/$ORGANIZATION/$REPO/releases/$release_id/assets?name=RetroDECK-cooker.flatpak.sha"
|
||||||
|
|
||||||
|
# curl -X POST \
|
||||||
|
# -H "Authorization: token ${GITEA_TOKEN}" \
|
||||||
|
# -H "Content-Type: multipart/form-data" \
|
||||||
|
# -F "attachment=@RetroDECK-Artifact.tar.gz" \
|
||||||
|
# "http://$GITEA_HOST/api/v1/repos/$ORGANIZATION/$REPO/releases/$release_id/assets?name=RetroDECK-Artifact.tar.gz"
|
||||||
|
|
27
other_licenses.txt
Normal file
27
other_licenses.txt
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
All Licenses of the projects we are using are listed on the wiki:
|
||||||
|
https://retrodeck.readthedocs.io/en/latest/wiki_about/donations-licenses/
|
||||||
|
|
||||||
|
If we have made some linkage errors or your license needs to be included in the projects github page please contact the RetroDECK Team on Discord or Matrix.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
Freedoom
|
||||||
|
https://github.com/freedoom/freedoom?tab=License-1-ov-file#readme
|
||||||
|
|
||||||
|
Copyright © 2001-2024 Contributors to the Freedoom project. All rights reserved.
|
||||||
|
|
||||||
|
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
||||||
|
|
||||||
|
Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
|
||||||
|
|
||||||
|
Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
|
||||||
|
|
||||||
|
Neither the name of the Freedoom project nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
|
||||||
|
|
||||||
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS “AS IS” AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
|
For a list of contributors to the Freedoom project, see the file CREDITS.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
|
141
res/extra_splashes/rd-pride.svg
Normal file
141
res/extra_splashes/rd-pride.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 22 KiB |
BIN
res/icon-pride.png
Normal file
BIN
res/icon-pride.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 6.9 KiB |
100
res/icon-pride.svg
Normal file
100
res/icon-pride.svg
Normal file
|
@ -0,0 +1,100 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg
|
||||||
|
width="100%"
|
||||||
|
height="100%"
|
||||||
|
viewBox="0 0 256 256"
|
||||||
|
version="1.1"
|
||||||
|
xml:space="preserve"
|
||||||
|
style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;"
|
||||||
|
id="svg17"
|
||||||
|
sodipodi:docname="icon (pride).svg"
|
||||||
|
inkscape:version="1.2.2 (732a01da63, 2022-12-09)"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:serif="http://www.serif.com/"><sodipodi:namedview
|
||||||
|
id="namedview19"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#111111"
|
||||||
|
borderopacity="1"
|
||||||
|
inkscape:showpageshadow="0"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pagecheckerboard="1"
|
||||||
|
inkscape:deskcolor="#d1d1d1"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:zoom="3.3398438"
|
||||||
|
inkscape:cx="147.31228"
|
||||||
|
inkscape:cy="177.85263"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="1009"
|
||||||
|
inkscape:window-x="-8"
|
||||||
|
inkscape:window-y="-8"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="Left-Symbol" />
|
||||||
|
<g
|
||||||
|
transform="matrix(1.88235,0,0,1.86861,-7.52941,-5.60584)"
|
||||||
|
id="g4">
|
||||||
|
<path
|
||||||
|
d="M140,37.25C140,18.347 124.765,3 106,3L38,3C19.235,3 4,18.347 4,37.25L4,105.75C4,124.653 19.235,140 38,140L106,140C124.765,140 140,124.653 140,105.75L140,37.25Z"
|
||||||
|
style="fill:rgb(17,17,17);"
|
||||||
|
id="path2" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="matrix(2.02105,0,0,2.02105,-13.4737,-13.4737)"
|
||||||
|
id="g12">
|
||||||
|
<g
|
||||||
|
id="D"
|
||||||
|
transform="matrix(-0.674885,8.26495e-17,-8.26495e-17,-0.674885,223.747,109.037)">
|
||||||
|
<path
|
||||||
|
d="M172.54,-2.511C175.786,-5.757 179.378,-8.24 183.315,-9.96C187.251,-11.68 191.533,-12.54 196.16,-12.54L271.855,-12.54L271.855,6.901L196.16,6.901C194.44,6.901 192.823,7.222 191.309,7.864C189.795,8.506 188.475,9.39 187.348,10.517C186.222,11.643 185.337,12.964 184.695,14.478C184.053,15.992 183.732,17.609 183.732,19.329L183.732,96.355C183.732,97.954 184.084,99.498 184.786,100.988C185.489,102.478 186.416,103.798 187.566,104.949C188.717,106.1 190.037,107.027 191.527,107.729C193.017,108.432 194.562,108.783 196.16,108.783L271.855,108.783L271.855,128.224L196.16,128.224C193.859,128.224 191.624,127.982 189.456,127.498C187.288,127.013 185.204,126.329 183.206,125.444C181.207,124.56 179.311,123.5 177.518,122.265C175.726,121.029 174.066,119.673 172.54,118.195C169.366,115.118 166.901,111.575 165.145,107.566C163.389,103.556 162.51,99.226 162.51,94.574L162.51,21.11C162.51,16.458 163.37,12.17 165.09,8.246C166.811,4.321 169.294,0.736 172.54,-2.511Z"
|
||||||
|
style="fill:white;fill-rule:nonzero;"
|
||||||
|
id="path6" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="Left-Symbol"
|
||||||
|
serif:id="Left Symbol"
|
||||||
|
transform="matrix(0.494792,-0,-0,0.494792,6.66667,6.66667)">
|
||||||
|
<path
|
||||||
|
id="rect6600"
|
||||||
|
style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;fill:url(#pattern7632);stroke:none;stroke-width:0.999998"
|
||||||
|
d="M 47.199248 80.802785 C 45.822808 80.802785 44.569351 81.044902 43.441434 81.527395 C 42.313512 82.009865 41.343959 82.696403 40.531275 83.587943 C 39.718995 84.47953 39.092064 85.5436 38.652368 86.781305 C 38.212654 88.019017 37.994165 89.393933 37.994165 90.904354 L 38.021508 168.91026 L 54.769566 168.91026 L 54.769566 134.23446 L 97.697327 134.23446 L 123.50594 168.91026 L 144.29501 168.91026 L 118.4864 134.23446 L 118.80281 134.23446 C 121.49824 134.23446 123.9587 133.88769 126.18563 133.1954 C 128.413 132.50312 130.41571 131.54371 132.19344 130.31649 C 133.97116 129.0893 135.52516 127.63538 136.8536 125.95711 C 138.18246 124.27862 139.2867 122.44931 140.1661 120.46687 C 141.0455 118.48428 141.70493 116.39222 142.14462 114.18952 C 142.58434 111.98667 142.80282 109.76227 142.80282 107.51765 C 142.82193 105.31474 142.61167 103.12832 142.17196 100.95709 C 141.73228 98.786016 141.07285 96.708861 140.19345 94.726622 C 139.31404 92.744383 138.21178 90.902392 136.8829 89.203181 C 135.55439 87.503908 133.99477 86.036596 132.20711 84.798881 C 130.41986 83.561223 128.413 82.584399 126.18563 81.871145 C 123.95873 81.157899 121.49637 80.802785 118.80086 80.802785 L 47.199248 80.802785 z M 54.769566 97.63678 L 118.4864 97.63678 C 119.76727 97.63678 120.87996 97.919949 121.82625 98.48639 C 122.77254 99.052829 123.55673 99.797753 124.17781 100.72077 C 124.79933 101.64378 125.26257 102.69763 125.56844 103.88288 C 125.87432 105.06816 126.02275 106.27995 126.01375 107.51765 C 126.0044 108.75534 125.8409 109.96715 125.52547 111.15241 C 125.21005 112.33768 124.73643 113.3915 124.10555 114.31452 C 123.47468 115.23757 122.6907 115.98249 121.75398 116.5489 C 120.81726 117.1153 119.72901 117.39851 118.4864 117.39851 L 54.769566 117.39851 L 54.769566 97.63678 z "
|
||||||
|
transform="translate(2.6596517e-5,2.6596517e-5)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<defs
|
||||||
|
id="defs15"><pattern
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#pattern6592"
|
||||||
|
id="pattern7632"
|
||||||
|
patternTransform="matrix(0.13680989,0,0,0.18355902,37.993601,80.802163)" />
|
||||||
|
<image
|
||||||
|
id="_Image1"
|
||||||
|
width="104px"
|
||||||
|
height="79px"
|
||||||
|
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGgAAABPCAYAAAAHtYAvAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAGHUlEQVR4nO2de2xTVRzHP6cbe4qg8jB1ioQMcDJAHgEVMPyjgaAGQR4xhAxEGfIY8gaBGCXGGEULjMG2FhEG6JCBhEgEJWRBBkaDopIYwRAsigSHoMLa3usftzVla7eu/bWU9HySJvd37jnfnNzvPae95/Scq2hE7cTz6YZigqEYYKAKTUWhoehoKDBQmAqsYzCUwlBYaUGxocBsFBuAGS7Gn6ZUkFaQfnOx/9hsFIfSalE7rJa/rk3jBkNRbyjqDVS9qfjRUBw3FMcM1IlvXkpvaHx9W4sKDo5McPc1lKo0FP2aGKINajYOca3+MBSlpqL02+L0C9EaZAscfDnBPRs4DvSLVkxzAx2BlcDZXmXeioIy34PRiNgA6sa7+wBvA+ly9dP4yQSmAid7bvDt77HR16c1hW11493pQAXanETwOFCbX+4bGWkBGzAOGBC3KmkacxvwSbdyoziSzDZgYHzrowmBDSjtWmG81aXSsLWUsVdi6qQJwXxgy31OQ4XLYAMKE1cfTQgmApPDnbQBnRNXF00YVuc5TXuoE832f5qE0R5Yb3eZTbo6bVDy8BQwvnGiNii5WGN3mbnBCdqg5KIDMCo4QRuUfEwMDiSGd5YCLgGdWw0bUAAM8X+GI3PDj7C7zPbuIlUPMgZdHlPZ6TcBnVsRN3AAYLDDMxL4EMhttkTLZACj8d/0uosT4ujsNvuAYcDvAnL/d3PaIEHqZrX5GlgsIDUs8EykDZJnK3A2Ro1M4E7QBolzfGYbD/COgNQ9oA2KF0cFNLRBceS0gIY2KI5cBK7GqKENiiOK2J8xvaANihd5QFaMGr+CNihe5AtonANtULwYLqChDYoHA9d62gEzBaR0FxcnZgHtYtT4y12kroBlkBlzlTQADFrjGQ0sE5A6HDjQLUiIwQ5PCbCT2H+9AWwPHEjMB927c+qFvim4/MRmQKGhGGoohhrQXeBaAlwD9gQCCYMWIzPErrHYG/j+Ad3FJSPbgwNtUHJxEdgXnKANSi5muYvUv8EJ2qDkoQbY0ThRG5Qc/AnMcBepJs+k2qDkoOTcFHU+1Ak9knDzqQI+CHdSt6Cby5vApLNTbGEbiV7ZfXPwAsVnnrdVtJRRG5R4LgNjf55mOxBJZt3FJQ4T66f0wz9NS4vIHNAtKBFcBSoBx6kX01r9dyxtUPz4BXAAzpPT0y9HKyJh0BXgHwGdeHM7kC2o58VaflKP9b1SD5wCvvJ/zpyYkR7zI4zIdMOYyk6lAjpxZeqrfxcAdVhbsUiggMm1czIOCemFJGV+JFSuzP0BeE5QMg2oHvJew/2Cmk1IqZEE54rcPcByQcm7gN2POBpiXVUXlpRpQUGsAqoF9XoDmwY7PGH324mFlDNo04pcEygCvhOUHYu1mFqclDMIYPPy3KvA08AlQdnXBq3xPCmoB6SoQQBbXsk5AzwL+IQkFbB14FrPA0J6QAobBFC1LOdzYK6gZFtgd/91njukBFPaID9rAaegXj6w7aF13jQJsZQ3aNuyHBOYgcy60gBPAG9ICKW8QQA7luZcB57BGrqRYkGfUm/MD8baID8fLck+j7UFy3VB2Yre670x7aicUiMJLbFzSfYx4AVBySxgV68y793RCugW1Ihdi7M3A6sFJfOA6oIyX0Y0hbVBoVmIfxcrIR4F1vbc4Gv1cJA2KAQ1i7K9WPuHSmxIEWAaML21hbRBYdizMOsS1kavsW5IEYyjx0bfY60poA1qhr0Ls74HJglKpgPV+eW+LpEW0Aa1wL4FWTVY7wGSogNQ063ciGgOSRsUGa8DHwvq9QWcXSvCv7MhgDYoAj6dn2VgvV/hpKDsOCJYOqoNipD98zLjMYe0qkulMaq5DHokoRV8Ni/zNNadLzmHVHWf0+gZLoNuQa3k4MuZB4F5gpJtgd15TrN9qJPaoOhwAJsE9boDVXaX2WQOSRsUBV/MzTSBYqw/QkoxAusfRzegDYqSQyUZ17DmkEIuXYySRXaXecO7G7RBMXC4JMONNYcU8yuhg3DaXWb/QKANipHaORl1yM8h1dhdZmfQBolwZHbG+8C7gpJ5QLXdZWZog+RYABwU1BsCOP4DNMctuHcT4JEAAAAASUVORK5CYII=" />
|
||||||
|
<pattern
|
||||||
|
patternUnits="userSpaceOnUse"
|
||||||
|
width="777"
|
||||||
|
height="480"
|
||||||
|
id="pattern6592"><path
|
||||||
|
fill="#770088"
|
||||||
|
d="M 0,0 H 777 V 480 H 0 Z"
|
||||||
|
id="path6457" /><path
|
||||||
|
fill="#004cff"
|
||||||
|
d="M 0,0 H 777 V 400 H 0 Z"
|
||||||
|
id="path6459" /><path
|
||||||
|
fill="#028121"
|
||||||
|
d="M 0,0 H 777 V 320 H 0 Z"
|
||||||
|
id="path6461" /><path
|
||||||
|
fill="#ffee00"
|
||||||
|
d="M 0,0 H 777 V 240 H 0 Z"
|
||||||
|
id="path6463" /><path
|
||||||
|
fill="#ff8d00"
|
||||||
|
d="M 0,0 H 777 V 160 H 0 Z"
|
||||||
|
id="path6465" /><path
|
||||||
|
fill="#e50000"
|
||||||
|
d="M 0,0 H 777 V 80 H 0 Z"
|
||||||
|
id="path6467" /></pattern></defs>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 7.8 KiB |
|
@ -183,12 +183,6 @@ if [[ $update_check == "true" ]]; then
|
||||||
log i "You're running the latest version"
|
log i "You're running the latest version"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# THIS IS A ONE-OFF FORCED REFRESH OF RETRODECK CONTROLLER PROFILES IN A 0.7.6b VERSION REFRESH - REMOVE BEFORE NEXT VERSION RELEASE
|
|
||||||
if [[ -f "$HOME/.steam/steam/controller_base/templates/RetroDECK_controller_config.vdf" ]]; then # If RetroDECK controller profile has been previously installed
|
|
||||||
install_retrodeck_controller_profile
|
|
||||||
fi
|
|
||||||
# REMOVE BEFORE NEXT VERSION RELEASE
|
|
||||||
|
|
||||||
# Normal Startup
|
# Normal Startup
|
||||||
|
|
||||||
if [[ $steam_sync == "true" ]]; then
|
if [[ $steam_sync == "true" ]]; then
|
||||||
|
|
|
@ -52,6 +52,8 @@ source /app/libexec/global.sh
|
||||||
# - Move Screenshots folder
|
# - Move Screenshots folder
|
||||||
# - Move Mods folder
|
# - Move Mods folder
|
||||||
# - Move Texture Packs folder
|
# - Move Texture Packs folder
|
||||||
|
# - Tool: Remove Empty ROM Folders
|
||||||
|
# - Tool: Rebuild All ROM Folders
|
||||||
# - Tool: Compress Games
|
# - Tool: Compress Games
|
||||||
# - Compress Single Game
|
# - Compress Single Game
|
||||||
# - Compress Multiple Games - CHD
|
# - Compress Multiple Games - CHD
|
||||||
|
@ -559,6 +561,8 @@ configurator_retrodeck_tools_dialog() {
|
||||||
|
|
||||||
local choices=(
|
local choices=(
|
||||||
"Tool: Move Folders" "Move RetroDECK folders between internal/SD card or to a custom location"
|
"Tool: Move Folders" "Move RetroDECK folders between internal/SD card or to a custom location"
|
||||||
|
"Tool: Remove Empty ROM Folders" "Remove some or all of the empty ROM folders"
|
||||||
|
"Tool: Rebuild All ROM Folders" "Rebuild any missing default ROM folders"
|
||||||
"Tool: Compress Games" "Compress games for systems that support it"
|
"Tool: Compress Games" "Compress games for systems that support it"
|
||||||
"Install: RetroDECK Controller Layouts" "Install the custom RetroDECK controller layouts on Steam"
|
"Install: RetroDECK Controller Layouts" "Install the custom RetroDECK controller layouts on Steam"
|
||||||
"Install: PS3 Firmware" "Download and install PS3 firmware for use with the RPCS3 emulator"
|
"Install: PS3 Firmware" "Download and install PS3 firmware for use with the RPCS3 emulator"
|
||||||
|
@ -585,6 +589,44 @@ configurator_retrodeck_tools_dialog() {
|
||||||
configurator_retrodeck_move_tool_dialog
|
configurator_retrodeck_move_tool_dialog
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
"Tool: Remove Empty ROM Folders" )
|
||||||
|
log i "Configurator: opening \"$choice\" menu"
|
||||||
|
find_empty_rom_folders
|
||||||
|
|
||||||
|
choice=$(zenity \
|
||||||
|
--list --width=1200 --height=720 --title "RetroDECK Configurator - RetroDECK: Remove Empty ROM Folders" \
|
||||||
|
--checklist --hide-column=3 --ok-label="Remove Selected" --extra-button="Remove All" \
|
||||||
|
--separator="," --print-column=2 \
|
||||||
|
--text="Choose which ROM folders to remove:" \
|
||||||
|
--column "Remove?" \
|
||||||
|
--column "System" \
|
||||||
|
"${empty_rom_folders_list[@]}")
|
||||||
|
|
||||||
|
local rc=$?
|
||||||
|
if [[ $rc == "0" && ! -z $choice ]]; then # User clicked "Remove Selected" with at least one system selected
|
||||||
|
IFS="," read -ra folders_to_remove <<< "$choice"
|
||||||
|
for folder in "${folders_to_remove[@]}"; do
|
||||||
|
log i "Removing empty folder $folder"
|
||||||
|
rm -f "$folder"
|
||||||
|
done
|
||||||
|
elif [[ ! -z $choice ]]; then # User clicked "Remove All"
|
||||||
|
for folder in "${all_empty_folders[@]}"; do
|
||||||
|
log i "Removing empty folder $folder"
|
||||||
|
rm -f "$folder"
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
|
||||||
|
configurator_generic_dialog "RetroDECK Configurator - Remove Empty ROM Folders" "The removal process is complete."
|
||||||
|
configurator_retrodeck_tools_dialog
|
||||||
|
;;
|
||||||
|
|
||||||
|
"Tool: Rebuild All ROM Folders" )
|
||||||
|
log i "Configurator: opening \"$choice\" menu"
|
||||||
|
es-de --create-system-dirs
|
||||||
|
configurator_generic_dialog "RetroDECK Configurator - Rebuild All ROM Folders" "The rebuilding process is complete.\n\nAll missing default ROM folders will now exist in $roms_folder"
|
||||||
|
configurator_retrodeck_tools_dialog
|
||||||
|
;;
|
||||||
|
|
||||||
"Tool: Compress Games" )
|
"Tool: Compress Games" )
|
||||||
log i "Configurator: opening \"$choice\" menu"
|
log i "Configurator: opening \"$choice\" menu"
|
||||||
configurator_generic_dialog "RetroDECK Configurator - Compression Tool" "Depending on your library and compression choices, the process can sometimes take a long time.\nPlease be patient once it is started!"
|
configurator_generic_dialog "RetroDECK Configurator - Compression Tool" "Depending on your library and compression choices, the process can sometimes take a long time.\nPlease be patient once it is started!"
|
||||||
|
@ -608,14 +650,13 @@ configurator_retrodeck_tools_dialog() {
|
||||||
(
|
(
|
||||||
update_rpcs3_firmware
|
update_rpcs3_firmware
|
||||||
) |
|
) |
|
||||||
zenity --progress --pulsate \
|
zenity --progress --no-cancel --pulsate --auto-close \
|
||||||
--icon-name=net.retrodeck.retrodeck \
|
--icon-name=net.retrodeck.retrodeck \
|
||||||
--window-icon="/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \
|
--window-icon="/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \
|
||||||
--title="Downloading PS3 Firmware" \
|
--title="Downloading PS3 Firmware" \
|
||||||
--width=400 --height=200 \
|
--width=400 --height=200 \
|
||||||
--text="If it feels like this is taking too much time, please ensure there aren't any windows that unexpectedly slipped into the background and need attention.\n\n" \
|
--text="Dowloading and installing PS3 Firmware, please be patient.\n\n<span foreground='$purple' size='larger'><b>NOTICE - If the process is taking too long:</b></span>\n\nSome windows might be running in the background that could require your attention: pop-ups from emulators or the upgrade itself that needs user input to continue.\n\n"
|
||||||
--no-cancel \
|
|
||||||
--auto-close
|
|
||||||
else
|
else
|
||||||
configurator_generic_dialog "RetroDECK Configurator - Install: PS3 Firmware" "You do not appear to currently have Internet access, which is required by this tool. Please try again when network access has been restored."
|
configurator_generic_dialog "RetroDECK Configurator - Install: PS3 Firmware" "You do not appear to currently have Internet access, which is required by this tool. Please try again when network access has been restored."
|
||||||
configurator_retrodeck_tools_dialog
|
configurator_retrodeck_tools_dialog
|
||||||
|
@ -795,28 +836,6 @@ configurator_compress_single_game_dialog() {
|
||||||
echo "# Compressing $(basename "$file") to $compatible_compression_format format" # This updates the Zenity dialog
|
echo "# Compressing $(basename "$file") to $compatible_compression_format format" # This updates the Zenity dialog
|
||||||
log i "Compressing $(basename "$file") to $compatible_compression_format format"
|
log i "Compressing $(basename "$file") to $compatible_compression_format format"
|
||||||
compress_game "$compatible_compression_format" "$file" "$system"
|
compress_game "$compatible_compression_format" "$file" "$system"
|
||||||
if [[ $post_compression_cleanup == "true" ]]; then # Remove file(s) if requested
|
|
||||||
if [[ -f "${file%.*}.$compatible_compression_format" ]]; then
|
|
||||||
log i "Performing post-compression file cleanup"
|
|
||||||
if [[ "$file" == *".cue" ]]; then
|
|
||||||
local cue_bin_files=$(grep -o -P "(?<=FILE \").*(?=\".*$)" "$file")
|
|
||||||
local file_path=$(dirname "$(realpath "$file")")
|
|
||||||
while IFS= read -r line
|
|
||||||
do
|
|
||||||
log i "Removing file $file_path/$line"
|
|
||||||
rm -f "$file_path/$line"
|
|
||||||
done < <(printf '%s\n' "$cue_bin_files")
|
|
||||||
log i "Removing file $(realpath $file)"
|
|
||||||
rm -f $(realpath "$file")
|
|
||||||
else
|
|
||||||
log i "Removing file $(realpath $file)"
|
|
||||||
rm -f "$(realpath "$file")"
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
log i "Compressed file ${file%.*}.$compatible_compression_format not found, skipping original file deletion"
|
|
||||||
configurator_generic_dialog "RetroDECK Configurator - RetroDECK: Compression Tool" "A compressed version of the file was not found, skipping deletion."
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
) |
|
) |
|
||||||
zenity --icon-name=net.retrodeck.retrodeck --progress --no-cancel --pulsate --auto-close \
|
zenity --icon-name=net.retrodeck.retrodeck --progress --no-cancel --pulsate --auto-close \
|
||||||
--window-icon="/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \
|
--window-icon="/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \
|
||||||
|
@ -836,54 +855,7 @@ configurator_compress_single_game_dialog() {
|
||||||
configurator_compress_multiple_games_dialog() {
|
configurator_compress_multiple_games_dialog() {
|
||||||
# This dialog will display any games it finds to be compressable, from the systems listed under each compression type in compression_targets.cfg
|
# This dialog will display any games it finds to be compressable, from the systems listed under each compression type in compression_targets.cfg
|
||||||
|
|
||||||
local compressable_games_list=()
|
find_compatible_games "$1"
|
||||||
local all_compressable_games=()
|
|
||||||
local games_to_compress=()
|
|
||||||
local target_selection="$1"
|
|
||||||
|
|
||||||
if [[ "$1" == "everything" ]]; then
|
|
||||||
local compression_format="all"
|
|
||||||
else
|
|
||||||
local compression_format="$1"
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [[ $compression_format == "all" ]]; then
|
|
||||||
local compressable_systems_list=$(cat $compression_targets | sed '/^$/d' | sed '/^\[/d')
|
|
||||||
else
|
|
||||||
local compressable_systems_list=$(sed -n '/\['"$compression_format"'\]/, /\[/{ /\['"$compression_format"'\]/! { /\[/! p } }' $compression_targets | sed '/^$/d')
|
|
||||||
fi
|
|
||||||
|
|
||||||
while IFS= read -r system # Find and validate all games that are able to be compressed with this compression type
|
|
||||||
do
|
|
||||||
compression_candidates=$(find "$roms_folder/$system" -type f -not -iname "*.txt")
|
|
||||||
if [[ ! -z $compression_candidates ]]; then
|
|
||||||
while IFS= read -r game
|
|
||||||
do
|
|
||||||
local compatible_compression_format=$(find_compatible_compression_format "$game")
|
|
||||||
if [[ $compression_format == "chd" ]]; then
|
|
||||||
if [[ $compatible_compression_format == "chd" ]]; then
|
|
||||||
all_compressable_games=("${all_compressable_games[@]}" "$game")
|
|
||||||
compressable_games_list=("${compressable_games_list[@]}" "false" "${game#$roms_folder}" "$game")
|
|
||||||
fi
|
|
||||||
elif [[ $compression_format == "zip" ]]; then
|
|
||||||
if [[ $compatible_compression_format == "zip" ]]; then
|
|
||||||
all_compressable_games=("${all_compressable_games[@]}" "$game")
|
|
||||||
compressable_games_list=("${compressable_games_list[@]}" "false" "${game#$roms_folder}" "$game")
|
|
||||||
fi
|
|
||||||
elif [[ $compression_format == "rvz" ]]; then
|
|
||||||
if [[ $compatible_compression_format == "rvz" ]]; then
|
|
||||||
all_compressable_games=("${all_compressable_games[@]}" "$game")
|
|
||||||
compressable_games_list=("${compressable_games_list[@]}" "false" "${game#$roms_folder}" "$game")
|
|
||||||
fi
|
|
||||||
elif [[ $compression_format == "all" ]]; then
|
|
||||||
if [[ ! $compatible_compression_format == "none" ]]; then
|
|
||||||
all_compressable_games=("${all_compressable_games[@]}" "$game")
|
|
||||||
compressable_games_list=("${compressable_games_list[@]}" "false" "${game#$roms_folder}" "$game")
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
done < <(printf '%s\n' "$compression_candidates")
|
|
||||||
fi
|
|
||||||
done < <(printf '%s\n' "$compressable_systems_list")
|
|
||||||
|
|
||||||
if [[ ! "$target_selection" == "everything" ]]; then # If the user chose to not auto-compress everything
|
if [[ ! "$target_selection" == "everything" ]]; then # If the user chose to not auto-compress everything
|
||||||
choice=$(zenity \
|
choice=$(zenity \
|
||||||
|
@ -923,27 +895,6 @@ configurator_compress_multiple_games_dialog() {
|
||||||
games_left_to_compress=$((games_left_to_compress-1))
|
games_left_to_compress=$((games_left_to_compress-1))
|
||||||
log i "Games left to compress: $games_left_to_compress"
|
log i "Games left to compress: $games_left_to_compress"
|
||||||
compress_game "$compression_format" "$file" "$system"
|
compress_game "$compression_format" "$file" "$system"
|
||||||
if [[ $post_compression_cleanup == "true" ]]; then # Remove file(s) if requested
|
|
||||||
if [[ -f "${file%.*}.$compatible_compression_format" ]]; then
|
|
||||||
if [[ "$file" == *".cue" ]]; then
|
|
||||||
local cue_bin_files=$(grep -o -P "(?<=FILE \").*(?=\".*$)" "$file")
|
|
||||||
local file_path=$(dirname "$(realpath "$file")")
|
|
||||||
while IFS= read -r line
|
|
||||||
do
|
|
||||||
log i "Removing file $file_path/$line"
|
|
||||||
rm -f "$file_path/$line"
|
|
||||||
done < <(printf '%s\n' "$cue_bin_files")
|
|
||||||
log i "Removing file $(realpath $file)"
|
|
||||||
rm -f $(realpath "$file")
|
|
||||||
else
|
|
||||||
log i "Removing file $(realpath $file)"
|
|
||||||
rm -f "$(realpath "$file")"
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
log i "Compressed file ${file%.*}.$compatible_compression_format not found, skipping original file deletion"
|
|
||||||
configurator_generic_dialog "RetroDECK Configurator - RetroDECK: Compression Tool" "Compression of $(basename $file) failed, skipping deletion."
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
done
|
done
|
||||||
) |
|
) |
|
||||||
zenity --icon-name=net.retrodeck.retrodeck --progress --no-cancel --auto-close \
|
zenity --icon-name=net.retrodeck.retrodeck --progress --no-cancel --auto-close \
|
||||||
|
|
Loading…
Reference in a new issue