mirror of
https://github.com/RetroDECK/io.github.lime3ds.Lime3DS.git
synced 2024-11-22 04:35:38 +00:00
Updated to version 2112
This commit is contained in:
parent
591e8aeac2
commit
95ea83ab1d
|
@ -7,7 +7,7 @@
|
||||||
"org.freedesktop.Sdk.Extension.llvm18"
|
"org.freedesktop.Sdk.Extension.llvm18"
|
||||||
],
|
],
|
||||||
"command": "lime3ds-launcher",
|
"command": "lime3ds-launcher",
|
||||||
"rename-desktop-file": "lime-qt.desktop",
|
"rename-desktop-file": "lime3ds-gui.desktop",
|
||||||
"rename-mime-file": "lime.xml",
|
"rename-mime-file": "lime.xml",
|
||||||
"rename-icon": "lime",
|
"rename-icon": "lime",
|
||||||
"rename-mime-icons": [
|
"rename-mime-icons": [
|
||||||
|
@ -135,16 +135,16 @@
|
||||||
"post-install": [
|
"post-install": [
|
||||||
"install -Dm755 ../lime3ds-launcher.sh /app/bin/lime3ds-launcher",
|
"install -Dm755 ../lime3ds-launcher.sh /app/bin/lime3ds-launcher",
|
||||||
"install -Dm644 ../io.github.lime3ds.Lime3DS.metainfo.xml /app/share/appdata/io.github.lime3ds.Lime3DS.metainfo.xml",
|
"install -Dm644 ../io.github.lime3ds.Lime3DS.metainfo.xml /app/share/appdata/io.github.lime3ds.Lime3DS.metainfo.xml",
|
||||||
"desktop-file-install --dir=/app/share/applications ../dist/lime-qt.desktop",
|
"desktop-file-install --dir=/app/share/applications ../dist/lime3ds-gui.desktop",
|
||||||
"desktop-file-edit --set-key StartupWMClass --set-value lime-qt --set-key Exec --set-value lime3ds-launcher /app/share/applications/lime-qt.desktop",
|
"desktop-file-edit --set-key StartupWMClass --set-value lime3ds-gui --set-key Exec --set-value lime3ds-launcher /app/share/applications/lime3ds-gui.desktop",
|
||||||
"install -Dm644 ../dist/lime.svg /app/share/icons/hicolor/scalable/apps/lime.svg",
|
"install -Dm644 ../dist/lime.svg /app/share/icons/hicolor/scalable/apps/lime.svg",
|
||||||
"install -Dm644 ../dist/icon.png /app/share/icons/hicolor/512x512/apps/lime.png"
|
"install -Dm644 ../dist/icon.png /app/share/icons/hicolor/512x512/apps/lime.png"
|
||||||
],
|
],
|
||||||
"sources": [
|
"sources": [
|
||||||
{
|
{
|
||||||
"type": "archive",
|
"type": "archive",
|
||||||
"url": "https://github.com/Lime3DS/Lime3DS/releases/download/2111/lime3ds-unified-source-20240429-09196d7.tar.xz",
|
"url": "https://github.com/Lime3DS/Lime3DS/releases/download/2112/lime3ds-unified-source-20240511-467afbb.tar.xz",
|
||||||
"sha256": "dec35cdd66aea96639e6fa8e2121f45f474fbe94923d13edbe51efc98a7ea51e"
|
"sha256": "f1305384f7370da51dd7a58a95598afeca2e093dc9ada8bc748cbe146d744ff5"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "file",
|
"type": "file",
|
||||||
|
|
|
@ -15,8 +15,8 @@
|
||||||
</description>
|
</description>
|
||||||
<launchable type="desktop-id">io.github.lime3ds.Lime3DS.desktop</launchable>
|
<launchable type="desktop-id">io.github.lime3ds.Lime3DS.desktop</launchable>
|
||||||
<provides>
|
<provides>
|
||||||
<binary>lime-qt</binary>
|
<binary>lime3ds-gui</binary>
|
||||||
<id>lime-qt.desktop</id>
|
<id>lime3ds-gui.desktop</id>
|
||||||
</provides>
|
</provides>
|
||||||
<url type="homepage">https://lime3ds.github.io/</url>
|
<url type="homepage">https://lime3ds.github.io/</url>
|
||||||
<url type="bugtracker">https://github.com/Lime3DS/Lime3DS/issues</url>
|
<url type="bugtracker">https://github.com/Lime3DS/Lime3DS/issues</url>
|
||||||
|
@ -30,6 +30,20 @@
|
||||||
</screenshots>
|
</screenshots>
|
||||||
<releases>
|
<releases>
|
||||||
|
|
||||||
|
<release version="2112" date="2024-05-13">
|
||||||
|
<description>
|
||||||
|
<p>- Added support for Artic Base</p>
|
||||||
|
<p>- Desktop: Added favourite game functionality</p>
|
||||||
|
<p>- Desktop: Added play time counter</p>
|
||||||
|
<p>- Windows+Linux: Added game desktop shortcut functionality</p>
|
||||||
|
<p>- Desktop: Updated right-click user interface layout</p>
|
||||||
|
<p>- Updated executable names to follow a new naming scheme</p>
|
||||||
|
<p> - `lime.exe` --> `lime3ds-cli.exe`</p>
|
||||||
|
<p> - `lime-qt.exe` --> `lime3ds-gui.exe`</p>
|
||||||
|
<p> - `lime-room.exe` --> `lime3ds-room.exe`</p>
|
||||||
|
</description>
|
||||||
|
</release>
|
||||||
|
|
||||||
<release version="2111" date="2024-04-29">
|
<release version="2111" date="2024-04-29">
|
||||||
<description>
|
<description>
|
||||||
<p>- Updated log filenames</p>
|
<p>- Updated log filenames</p>
|
||||||
|
|
|
@ -20,6 +20,6 @@ for i in {0..9}; do
|
||||||
done
|
done
|
||||||
|
|
||||||
|
|
||||||
if ! prlimit --nofile=8192 lime-qt "$@"; then
|
if ! prlimit --nofile=8192 lime3ds-gui "$@"; then
|
||||||
report_error
|
report_error
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue