This commit is contained in:
SrGooglo 2024-06-17 00:52:14 +02:00
parent 00f78d3e17
commit e4d53a5171
2 changed files with 18 additions and 1 deletions

View File

@ -1,4 +1,6 @@
class Manifest { class Manifest {
static useLib = ["open"]
static id = "content_warning" static id = "content_warning"
static version = "1.15.a" static version = "1.15.a"
static pkg_name = "Content Warning" static pkg_name = "Content Warning"
@ -11,7 +13,7 @@ class Manifest {
{ {
type: "http_file", type: "http_file",
url: "https://b2-cdn.ragestudio.net/file/bundler-sg/bundles/cnt_warng/1.15.a/bundle.7z", url: "https://b2-cdn.ragestudio.net/file/bundler-sg/bundles/cnt_warng/1.15.a/bundle.7z",
path: "." extract: true,
} }
] ]
} }

View File

@ -6,4 +6,19 @@ class Manifest {
static version = "1.0.0" static version = "1.0.0"
static icon = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQYIqfWrxzJpebOC8XMJpUr3Uk-lLhv9YKSpQ&usqp=CAU" static icon = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQYIqfWrxzJpebOC8XMJpUr3Uk-lLhv9YKSpQ&usqp=CAU"
static core_minimum_version = "0.17.0" static core_minimum_version = "0.17.0"
installSteps = [
{
type: "http_file",
url: "https://storage.ragestudio.net/rs-bundler/dependencies/yuzu-windows-x64.zip",
path: "yuzu-windows-x64.zip",
url: "https://storage.ragestudio.net/rs-bundler/dependencies/yuzu-windows-x64.zip",
extract: "./",
delete_after_extract: true,
}
]
execute = async (pkg) => {
Lib.
}
} }