Migrated Appdata to Metainfo

This commit is contained in:
XargonWan 2025-01-30 13:39:27 +09:00
parent 0b20d2542b
commit faecb95c9a
3 changed files with 9 additions and 9 deletions

View file

@ -52,9 +52,9 @@ These folder are the only folders writable by flatpak:
## The Appdata file ## The Metainfo file
To be published on Flathub a appdata `.xml` file is needed that contains all the information for the store: To be published on Flathub a metainfo `.xml` file is needed that contains all the information for the store:
- Official name - Official name
- Website links - Website links
@ -63,9 +63,9 @@ To be published on Flathub a appdata `.xml` file is needed that contains all the
- Patchnotes - Patchnotes
- Etc... - Etc...
### RetroDECK: Appdata file ### RetroDECK: Metainfo file
[net.retrodeck.retrodeck.appdata.xml](https://github.com/XargonWan/RetroDECK/blob/main/net.retrodeck.retrodeck.appdata.xml) on our GitHub repository's root. [net.retrodeck.retrodeck.metainfo.xml](https://github.com/XargonWan/RetroDECK/blob/main/net.retrodeck.retrodeck.metainfo.xml) on our GitHub repository's root.
## Permissions ## Permissions

View file

@ -48,20 +48,20 @@ You can edit and run the developer_toolbox/build_retrodeck_locally.sh below to c
git submodule update --init --recursive git submodule update --init --recursive
export GITHUB_WORKSPACE="." export GITHUB_WORKSPACE="."
cp net.retrodeck.retrodeck.appdata.xml net.retrodeck.retrodeck.appdata.xml.bak cp net.retrodeck.retrodeck.metainfo.xml net.retrodeck.retrodeck.metainfo.xml.bak
cp net.retrodeck.retrodeck.yml net.retrodeck.retrodeck.yml.bak cp net.retrodeck.retrodeck.yml net.retrodeck.retrodeck.yml.bak
#automation_tools/install_dependencies.sh #automation_tools/install_dependencies.sh
#automation_tools/cooker_build_id.sh #automation_tools/cooker_build_id.sh
automation_tools/pre_build_automation.sh automation_tools/pre_build_automation.sh
#automation_tools/cooker_flatpak_portal_add.sh #automation_tools/cooker_flatpak_portal_add.sh
#automation_tools/appdata_management.sh #automation_tools/metainfo_management.sh
#automation_tools/flatpak_build_download_only.sh #automation_tools/flatpak_build_download_only.sh
#automation_tools/flatpak_build_only.sh #automation_tools/flatpak_build_only.sh
#automation_tools/flatpak_build_bundle.sh #automation_tools/flatpak_build_bundle.sh
rm -f net.retrodeck.retrodeck.appdata.xml rm -f net.retrodeck.retrodeck.metainfo.xml
rm -f net.retrodeck.retrodeck.yml rm -f net.retrodeck.retrodeck.yml
cp net.retrodeck.retrodeck.appdata.xml.bak net.retrodeck.retrodeck.appdata.xml cp net.retrodeck.retrodeck.metainfo.xml.bak net.retrodeck.retrodeck.metainfo.xml
cp net.retrodeck.retrodeck.yml.bak net.retrodeck.retrodeck.yml cp net.retrodeck.retrodeck.yml.bak net.retrodeck.retrodeck.yml
``` ```

View file

@ -68,7 +68,7 @@ The builder creates these folders and files when building locally:
| .flatpak-builder | Folder where the flatpak builder is writing sources | | .flatpak-builder | Folder where the flatpak builder is writing sources |
| retrodeck-flatpak-cooker | Folder where the flatpak builder is writing built files | | retrodeck-flatpak-cooker | Folder where the flatpak builder is writing built files |
| retrodeck-repo | Folder where the flatpak builder mimicking the flatpak environment | | retrodeck-repo | Folder where the flatpak builder mimicking the flatpak environment |
| net.retrodeck.retrodeck.appdata.xml.bak | Backup of the appdata file | | net.retrodeck.retrodeck.metainfo.xml.bak | Backup of the metainfo file |
| net.retrodeck.retrodeck.yml.bak | Backup of the manifest file | | net.retrodeck.retrodeck.yml.bak | Backup of the manifest file |
| placeholders.cache | Cache for the fetched hashes to be reused later | | placeholders.cache | Cache for the fetched hashes to be reused later |
| RetroDECK-cooker.flatpak.sha | File containing the flatpak bundle hash | | RetroDECK-cooker.flatpak.sha | File containing the flatpak bundle hash |