commit 2fc4c665bf5f4639652648666314a639b71a2e8d Author: SrGooglo Date: Mon Apr 1 07:01:38 2024 +0200 nit diff --git a/data/music.mp3 b/data/music.mp3 new file mode 100644 index 0000000..781ba7c Binary files /dev/null and b/data/music.mp3 differ diff --git a/main.rmanifest.js b/main.rmanifest.js new file mode 100644 index 0000000..091a883 --- /dev/null +++ b/main.rmanifest.js @@ -0,0 +1,28 @@ +class test { + static pkg_name = "test" + static version = "0.0.1" + static description = "Testing the new manifest v2 on RS-Relic" + static license = "unlicensed" + + static useLib = ["path", "open"] + + static git_remote = "https://git.ragestudio.net/srgooglo/Relic-ManifestV2-test" + + installSteps = [ + { + type: "git_clone", + url: test.git_remote, + } + ] + + async execute() { + const target = Lib.path.resolve(install_path, "./data/music.mp3") + + Lib.open.spawn(target) + } + + async initialize() { + Log.info("Initializing...") + Log.info(`Im am running on a host ${os_string} [${arch}] [${install_path}]`) + } +} \ No newline at end of file