Skip to content

Commit f21c784

Browse files
committed
Bump version v1.0.1-v6.2.0
1 parent 6e7b938 commit f21c784

File tree

5 files changed

+71
-22
lines changed

5 files changed

+71
-22
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
run: |
6666
url=$(echo "$response" | jq -r '.upload_url')
6767
echo $url
68-
echo upload_url="$url" >> $GITHUB_OUTPUT
68+
echo "upload_url=$url" >> $GITHUB_OUTPUT
6969
env:
7070
response: ${{ steps.get_release.outputs.data }}
7171

@@ -75,7 +75,7 @@ jobs:
7575
cd ./build/
7676
pattern="lib${module_id}*.so"
7777
files=( $pattern )
78-
echo NAME="${files[0]}" >> $GITHUB_OUTPUT
78+
echo "NAME=${files[0]}" >> $GITHUB_OUTPUT
7979
8080
# Upload our release assets
8181
- name: Upload Release Asset

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Android.mk.backup
5555
# QPM stuff
5656
[Ee]xtern/
5757
*.qmod
58-
mod.json
58+
#mod.json
5959
qpm_defines.cmake
6060
![Cc][Mm]ake[Ll]ists.txt
6161

mod.json

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
{
2+
"_QPVersion": "0.1.2",
3+
"name": "QBeatSaberPlus-NoteTweaker",
4+
"id": "qbeatsaberplus-notetweaker",
5+
"author": "HardCPP",
6+
"version": "1.0.1-v6.2.0",
7+
"packageId": "com.beatgames.beatsaber",
8+
"packageVersion": "1.28.0_4124311467",
9+
"description": "Feel good!",
10+
"coverImage": "cover.png",
11+
"dependencies": [
12+
{
13+
"version": "^0.33.0",
14+
"id": "codegen",
15+
"downloadIfMissing": "https://github.com/sc2ad/BeatSaber-Quest-Codegen/releases/download/v0.33.0/Codegen.qmod"
16+
},
17+
{
18+
"version": "^0.15.24",
19+
"id": "custom-types",
20+
"downloadIfMissing": "https://github.com/sc2ad/Il2CppQuestTypePatching/releases/download/v0.15.24/CustomTypes.qmod"
21+
},
22+
{
23+
"version": "^0.10.15",
24+
"id": "songloader",
25+
"downloadIfMissing": "https://github.com/darknight1050/SongLoader/releases/download/v0.10.17/SongLoader.qmod"
26+
},
27+
{
28+
"version": "^1.0.1-v6.2.0",
29+
"id": "chatplex-sdk-bs",
30+
"downloadIfMissing": "https://github.com/hardcpp/QuestChatPlexSDK-BS/releases/download/v1.0.1-v6.2.0/ChatPlexSDK-BS.qmod"
31+
}
32+
],
33+
"modFiles": [
34+
"libqbeatsaberplus-notetweaker.so"
35+
],
36+
"libraryFiles": [
37+
"libbeatsaber-hook_3_14_0.so"
38+
],
39+
"fileCopies": [],
40+
"copyExtensions": []
41+
}

qpm.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"info": {
55
"name": "QBeatSaberPlus-NoteTweaker",
66
"id": "qbeatsaberplus-notetweaker",
7-
"version": "1.0.0-v6.2.0",
7+
"version": "1.0.1-v6.2.0",
88
"url": "https://github.com/hardcpp/QBeatSaberPlus-NoteTweaker",
99
"additionalData": {
1010
"cmake": true,
@@ -53,7 +53,7 @@
5353
},
5454
{
5555
"id": "chatplex-sdk-bs",
56-
"versionRange": "^1.0.0-v6.2.0",
56+
"versionRange": "^1.0.1-v6.2.0",
5757
"additionalData": {
5858
"private": true
5959
}
@@ -74,6 +74,10 @@
7474
"pwsh ./start-logging.ps1"
7575
],
7676
"qmod": [
77+
"pwsh ./build.ps1 -clean",
78+
"pwsh ./createqmod.ps1 -clean"
79+
],
80+
"qmod_backup": [
7781
"pwsh ./build.ps1 -clean",
7882
"qpm qmod build",
7983
"pwsh ./createqmod.ps1 -clean"

qpm.shared.json

Lines changed: 21 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"info": {
66
"name": "QBeatSaberPlus-NoteTweaker",
77
"id": "qbeatsaberplus-notetweaker",
8-
"version": "1.0.0-v6.2.0",
8+
"version": "1.0.1-v6.2.0",
99
"url": "https://github.com/hardcpp/QBeatSaberPlus-NoteTweaker",
1010
"additionalData": {
1111
"overrideSoName": "libqbeatsaberplus-notetweaker.so",
@@ -54,30 +54,34 @@
5454
},
5555
{
5656
"id": "chatplex-sdk-bs",
57-
"versionRange": "^1.0.0-v6.2.0",
57+
"versionRange": "^1.0.1-v6.2.0",
5858
"additionalData": {
5959
"private": true
6060
}
6161
}
6262
],
6363
"workspace": {
6464
"scripts": {
65-
"build": [
66-
"pwsh ./build.ps1"
65+
"clean": [
66+
"pwsh ./build.ps1 -clean"
6767
],
68-
"log": [
69-
"pwsh ./start-logging.ps1"
68+
"copy": [
69+
"pwsh ./copy.ps1"
7070
],
71-
"qmod": [
71+
"qmod_backup": [
7272
"pwsh ./build.ps1 -clean",
7373
"qpm qmod build",
7474
"pwsh ./createqmod.ps1 -clean"
7575
],
76-
"copy": [
77-
"pwsh ./copy.ps1"
76+
"build": [
77+
"pwsh ./build.ps1"
7878
],
79-
"clean": [
80-
"pwsh ./build.ps1 -clean"
79+
"qmod": [
80+
"pwsh ./build.ps1 -clean",
81+
"pwsh ./createqmod.ps1 -clean"
82+
],
83+
"log": [
84+
"pwsh ./start-logging.ps1"
8185
]
8286
}
8387
}
@@ -108,17 +112,17 @@
108112
{
109113
"dependency": {
110114
"id": "chatplex-sdk-bs",
111-
"versionRange": "=1.0.0-v6.2.0",
115+
"versionRange": "=1.0.1-v6.2.0",
112116
"additionalData": {
113-
"soLink": "https://github.com/hardcpp/QuestChatPlexSDK-BS/releases/download/v1.0.0-v6.2.0/libchatplex-sdk-bs.so",
114-
"debugSoLink": "https://github.com/hardcpp/QuestChatPlexSDK-BS/releases/download/v1.0.0-v6.2.0/debug_libchatplex-sdk-bs.so",
117+
"soLink": "https://github.com/hardcpp/QuestChatPlexSDK-BS/releases/download/v1.0.1-v6.2.0/libchatplex-sdk-bs.so",
118+
"debugSoLink": "https://github.com/hardcpp/QuestChatPlexSDK-BS/releases/download/v1.0.1-v6.2.0/debug_libchatplex-sdk-bs.so",
115119
"overrideSoName": "libchatplex-sdk-bs.so",
116-
"modLink": "https://github.com/hardcpp/QuestChatPlexSDK-BS/releases/download/v1.0.0-v6.2.0/ChatPlexSDK-BS",
117-
"branchName": "version/v1_0_0-v6_2_0",
120+
"modLink": "https://github.com/hardcpp/QuestChatPlexSDK-BS/releases/download/v1.0.1-v6.2.0/ChatPlexSDK-BS.qmod",
121+
"branchName": "version/v1_0_1-v6_2_0",
118122
"cmake": true
119123
}
120124
},
121-
"version": "1.0.0-v6.2.0"
125+
"version": "1.0.1-v6.2.0"
122126
},
123127
{
124128
"dependency": {

0 commit comments

Comments
 (0)