Merge pull request #2028 from j8r/add-appstream-metadata-file
Add AppStream metadata file
|
@ -175,7 +175,7 @@ jobs:
|
|||
cd build
|
||||
cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_NOGUI_FRONTEND=ON -DBUILD_QT_FRONTEND=ON -DUSE_DRMKMS=ON -DUSE_EGL=ON -DUSE_SDL2=ON -DUSE_WAYLAND=ON -DUSE_X11=ON -G Ninja ..
|
||||
ninja
|
||||
../appimage/generate_appimages.sh $(pwd)
|
||||
../scripts/generate_appimages.sh $(pwd)
|
||||
|
||||
- name: Upload NoGUI AppImage
|
||||
uses: actions/upload-artifact@v1
|
||||
|
|
Before Width: | Height: | Size: 643 B After Width: | Height: | Size: 643 B |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 3.0 KiB After Width: | Height: | Size: 3.0 KiB |
|
@ -0,0 +1,33 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<component type="desktop-application">
|
||||
<id>org.duckstation.DuckStation</id>
|
||||
<launchable type="desktop-id">org.duckstation.DuckStation.desktop</launchable>
|
||||
<metadata_license>CC0-1.0</metadata_license>
|
||||
<project_license>GPL-3.0</project_license>
|
||||
<name>DuckStation</name>
|
||||
<summary>PlayStation 1/PSX emulator.</summary>
|
||||
<description>
|
||||
<p>
|
||||
DuckStation is an simulator/emulator of the Sony PlayStation(TM) console, focusing on playability, speed, and long-term maintainability.
|
||||
The goal is to be as accurate as possible while maintaining performance suitable for low-end devices.
|
||||
</p>
|
||||
</description>
|
||||
<screenshots>
|
||||
<screenshot type="default"><image>https://github.com/stenzek/duckstation/raw/md-images/bigduck.png</image></screenshot>
|
||||
<screenshot><image>https://github.com/stenzek/duckstation/raw/md-images/main.png</image></screenshot>
|
||||
<screenshot><image>https://github.com/stenzek/duckstation/raw/md-images/gamegrid.png</image></screenshot>
|
||||
<screenshot><image>https://github.com/stenzek/duckstation/raw/md-images/tof.jpg</image></screenshot>
|
||||
</screenshots>
|
||||
<categories>
|
||||
<category>Games</category>
|
||||
<category>Emulator</category>
|
||||
</categories>
|
||||
<url type="homepage">https://duckstation.org/</url>
|
||||
<url type="bugtracker">https://github.com/stenzek/duckstation/issues</url>
|
||||
<url type="help">https://www.duckstation.org/wiki/Main_Page</url>
|
||||
<developer_name>Connor McLaughlin</developer_name>
|
||||
<content_rating type="oars-1.1" />
|
||||
<releases>
|
||||
<release date="2021-04-24" version="nightly" />
|
||||
</releases>
|
||||
</component>
|
|
@ -1,7 +1,7 @@
|
|||
#!/bin/bash
|
||||
|
||||
# NOTE: Keep this script in the same directory as resources for AppImage creation
|
||||
APPIMAGE_RESOURCES_DIR=$(dirname $(readlink -f $0))
|
||||
APPIMAGE_RESOURCES_DIR=$(dirname $(readlink -f $0))/../dist
|
||||
echo "APPIMAGE_RESOURCES_DIR set to ${APPIMAGE_RESOURCES_DIR}"
|
||||
|
||||
if [[ "$#" -ne 1 ]]; then
|