1
0
mirror of https://github.com/lutris/lutris synced 2024-07-08 19:45:47 +00:00
This commit is contained in:
tobil4sk 2024-06-26 23:18:27 +02:00 committed by GitHub
commit df5647f818
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3,7 +3,7 @@
"description": "Emulates Flash games", "description": "Emulates Flash games",
"platforms": ["Flash"], "platforms": ["Flash"],
"runner_executable": "ruffle/ruffle", "runner_executable": "ruffle/ruffle",
"download_url": "https://github.com/ruffle-rs/ruffle/releases/download/nightly-2023-10-14/ruffle-nightly-2023_10_14-linux-x86_64.tar.gz", "download_url": "https://github.com/ruffle-rs/ruffle/releases/download/nightly-2024-05-22/ruffle-nightly-2024_05_22-linux-x86_64.tar.gz",
"game_options": [ "game_options": [
{ {
"option": "main_file", "option": "main_file",
@ -13,6 +13,20 @@
} }
], ],
"runner_options": [ "runner_options": [
{
"option": "fullscreen",
"type": "bool",
"default": true,
"label": "Fullscreen",
"argument": "--fullscreen"
},
{
"option": "force_align",
"type": "bool",
"label": "Force align",
"argument": "--force-align",
"help": "Prevent movies from changing the stage alignment"
},
{ {
"option": "graphics", "option": "graphics",
"type": "choice", "type": "choice",
@ -43,6 +57,15 @@
"type": "string", "type": "string",
"label": "Proxy", "label": "Proxy",
"argument": "--proxy" "argument": "--proxy"
},
{
"option": "no_gui",
"type": "bool",
"default": true,
"label": "No GUI",
"advanced": true,
"argument": "--no-gui",
"help": "Hides the menu bar (the bar at the top of the window)"
} }
] ]
} }