Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

onscripter core updates #1867

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions dist/info/onscripter_libretro.info
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# Software Information
display_name = "ONScripter"
display_version = "0.1"
display_version = "0.3"
authors = "Studio O.G.A."
categories = "Game engine"
license = "GPLv3+"
permissions = ""
supported_extensions = "txt|dat|___"
supported_extensions = "txt|dat|___|ons|/"

# Hardware Information
manufacturer = "ONScripter"
Expand All @@ -19,6 +19,5 @@ libretro_saves = "false"
cheats = "false"
needs_fullpath = "true"
disk_control = "false"
is_experimental = "true"

description = "A port of the ONScripter visual novel games engine to libretro."
23 changes: 23 additions & 0 deletions dist/info/onsyuri_libretro.info
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Software Information
display_name = "ONScripter Yuri"
display_version = "0.7.4+2"
authors = "Studio O.G.A.|jh10001|YuriSizuku"
categories = "Game engine"
license = "GPLv2+"
permissions = ""
supported_extensions = "txt|dat|___|nt2|nt3|ons|/"

# Hardware Information
manufacturer = "ONScripter"
systemname = "ONScripter Yuri"
systemid = "onsyuri"

# Libretro Features
database = "ONScripter"
supports_no_game = "false"
libretro_saves = "false"
cheats = "false"
needs_fullpath = "true"
disk_control = "false"

description = "A port of the ONScripter Yuri visual novel games engine to libretro."
10 changes: 10 additions & 0 deletions rules.d/core-rules.sh
Original file line number Diff line number Diff line change
Expand Up @@ -1622,6 +1622,16 @@ libretro_onscripter_post_fetch_cmd="./update-deps.sh"
libretro_onscripter_build_rule="cmake"
libretro_onscripter_build_args="-DCMAKE_BUILD_TYPE=Release"

include_core_onsyuri() {
register_module core "onsyuri"
}
libretro_onsyuri_name="ONScripterYuri"
libretro_onsyuri_git_url="https://github.com/YuriSizuku/OnscripterYuri.git"
libretro_onsyuri_git_submodules="yes"
libretro_onsyuri_build_subdir="src/onsyuri_libretro"
libretro_onsyuri_build_rule="cmake"
libretro_onsyuri_build_args="-DCMAKE_BUILD_TYPE=Release"

include_core_virtualxt() {
register_module core "virtualxt"
}
Expand Down