Skip to content

Commit 1bbc33c

Browse files
Merge pull request #5 from kodenamekrak/main
1.28.0
2 parents a0f3b6e + 84f9e32 commit 1bbc33c

File tree

13 files changed

+13
-416
lines changed

13 files changed

+13
-416
lines changed

.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
],

Android.mk

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

Android.mk.backup

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

Application.mk

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

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 "") {

default-config.json

Lines changed: 0 additions & 1 deletion
This file was deleted.

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": [

0 commit comments

Comments
 (0)