Skip to content

Commit fb393c4

Browse files
committed
1.28
1 parent a0f3b6e commit fb393c4

8 files changed

Lines changed: 13 additions & 294 deletions

File tree

.vscode/c_cpp_properties.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{
44
"defines": [
55
"MOD_ID=\"#{id}\"",
6-
"VERSION=\"0.1.0\"",
6+
"VERSION=\"#{version}\"",
77
"__GNUC__",
88
"__aarch64__"
99
],

buildQMOD.ps1

Lines changed: 0 additions & 79 deletions
This file was deleted.

copy.ps1

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,10 @@ if ($LASTEXITCODE -ne 0) {
4646
exit $LASTEXITCODE
4747
}
4848

49-
& $PSScriptRoot/validate-modjson.ps1
50-
if ($LASTEXITCODE -ne 0) {
51-
exit $LASTEXITCODE
52-
}
49+
# & $PSScriptRoot/validate-modjson.ps1
50+
# if ($LASTEXITCODE -ne 0) {
51+
# exit $LASTEXITCODE
52+
# }
5353
$modJson = Get-Content "./mod.json" -Raw | ConvertFrom-Json
5454

5555
$modFiles = $modJson.modFiles

createqmod.ps1

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,6 @@ if ($help -eq $true) {
1717

1818
$mod = "./mod.json"
1919

20-
& $PSScriptRoot/build.ps1 -clean:$clean
21-
22-
if ($LASTEXITCODE -ne 0) {
23-
echo "Failed to build, exiting..."
24-
exit $LASTEXITCODE
25-
}
26-
27-
& qpm-rust qmod build
28-
29-
& $PSScriptRoot/validate-modjson.ps1
30-
if ($LASTEXITCODE -ne 0) {
31-
exit $LASTEXITCODE
32-
}
3320
$modJson = Get-Content $mod -Raw | ConvertFrom-Json
3421

3522
if ($qmodName -eq "") {

mod.json

Lines changed: 0 additions & 35 deletions
This file was deleted.

mod.template.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"_QPVersion": "0.1.1",
3-
"id": "CrashMod",
4-
"name": "CrashMod",
5-
"version": "0.11.0",
3+
"name": "${mod_name}",
4+
"id": "${mod_id}",
5+
"version": "${version}",
66
"author": "ComputerElite",
77
"packageId": "com.beatgames.beatsaber",
88
"coverImage": "cover.png",
9-
"packageVersion": "1.27.0_3631150051",
9+
"packageVersion": "1.28.0_4124311467",
1010
"modFiles": [
1111
],
1212
"libraryFiles": [

qpm.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"info": {
55
"name": "Crash Mod",
66
"id": "CrashMod",
7-
"version": "0.11.0",
7+
"version": "0.12.0",
88
"url": null,
99
"additionalData": {
1010
"overrideSoName": "libCrashMod.so"
@@ -23,12 +23,12 @@
2323
},
2424
{
2525
"id": "codegen",
26-
"versionRange": "^0.32.0",
26+
"versionRange": "^0.33.0",
2727
"additionalData": {}
2828
},
2929
{
3030
"id": "custom-types",
31-
"versionRange": "^0.15.22",
31+
"versionRange": "^0.15.23",
3232
"additionalData": {}
3333
},
3434
{
@@ -38,7 +38,7 @@
3838
},
3939
{
4040
"id": "questui",
41-
"versionRange": "^0.17.10",
41+
"versionRange": "^0.17.11",
4242
"additionalData": {}
4343
}
4444
]

qpm.shared.json

Lines changed: 0 additions & 154 deletions
This file was deleted.

0 commit comments

Comments
 (0)