Skip to content

Commit 233dab3

Browse files
committed
Bump version 1.0.1-v6.2.0
1 parent 765ab18 commit 233dab3

File tree

6 files changed

+57
-10
lines changed

6 files changed

+57
-10
lines changed

.github/workflows/publish.yml

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

@@ -76,7 +76,7 @@ jobs:
7676
cd ./build/
7777
pattern="lib${module_id}*.so"
7878
files=( $pattern )
79-
echo NAME="${files[0]}" >> $GITHUB_OUTPUT
79+
echo "NAME=${files[0]}" >> $GITHUB_OUTPUT
8080
8181
# Upload our release assets
8282
- 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

Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ PROJECT_NAME = ChatPlexSDK-BS
4848
# could be handy for archiving the generated documentation or if some version
4949
# control system is used.
5050

51-
PROJECT_NUMBER = 0.2.0-v6.2.0
51+
PROJECT_NUMBER = 1.0.1-v6.2.0
5252

5353
# Using the PROJECT_BRIEF tag one can provide an optional one line description
5454
# for a project that appears at the top of each page and should give viewer a

mod.json

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
{
2+
"_QPVersion": "0.1.2",
3+
"name": "ChatPlexSDK-BS",
4+
"id": "chatplex-sdk-bs",
5+
"author": "HardCPP",
6+
"version": "1.0.1-v6.2.0",
7+
"description": "ChatPlex BeatSaber modding SDK (Dependence for other mods)",
8+
"coverImage": "cover.png",
9+
"dependencies": [
10+
{
11+
"version": "^0.33.0",
12+
"id": "codegen",
13+
"downloadIfMissing": "https://github.com/sc2ad/BeatSaber-Quest-Codegen/releases/download/v0.33.0/Codegen.qmod"
14+
},
15+
{
16+
"version": "^0.15.24",
17+
"id": "custom-types",
18+
"downloadIfMissing": "https://github.com/sc2ad/Il2CppQuestTypePatching/releases/download/v0.15.24/CustomTypes.qmod"
19+
},
20+
{
21+
"version": "^0.3.1",
22+
"id": "bsml",
23+
"downloadIfMissing": "https://github.com/RedBrumbler/Quest-BSML/releases/download/v0.3.3/BSML.qmod"
24+
},
25+
{
26+
"version": "^0.10.17",
27+
"id": "songloader",
28+
"downloadIfMissing": "https://github.com/darknight1050/SongLoader/releases/download/v0.10.17/SongLoader.qmod"
29+
}
30+
],
31+
"modFiles": [
32+
"libchatplex-sdk-bs.so"
33+
],
34+
"libraryFiles": [
35+
"libbeatsaber-hook_3_14_0.so"
36+
],
37+
"fileCopies": [],
38+
"copyExtensions": []
39+
}

qpm.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"info": {
55
"name": "ChatPlexSDK-BS",
66
"id": "chatplex-sdk-bs",
7-
"version": "1.0.0-v6.2.0",
7+
"version": "1.0.1-v6.2.0",
88
"url": "https://github.com/hardcpp/QuestChatPlexSDK-BS",
99
"additionalData": {
1010
"overrideSoName": "libchatplex-sdk-bs.so",
@@ -78,6 +78,10 @@
7878
"pwsh ./build.ps1 -clean"
7979
],
8080
"qmod": [
81+
"pwsh ./build.ps1 -clean",
82+
"pwsh ./createqmod.ps1 -clean"
83+
],
84+
"qmod_backup": [
8185
"pwsh ./build.ps1 -clean",
8286
"qpm qmod build",
8387
"pwsh ./createqmod.ps1 -clean"

qpm.shared.json

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"info": {
66
"name": "ChatPlexSDK-BS",
77
"id": "chatplex-sdk-bs",
8-
"version": "1.0.0-v6.2.0",
8+
"version": "1.0.1-v6.2.0",
99
"url": "https://github.com/hardcpp/QuestChatPlexSDK-BS",
1010
"additionalData": {
1111
"overrideSoName": "libchatplex-sdk-bs.so",
@@ -66,19 +66,23 @@
6666
],
6767
"workspace": {
6868
"scripts": {
69+
"qmod": [
70+
"pwsh ./build.ps1 -clean",
71+
"pwsh ./createqmod.ps1 -clean"
72+
],
73+
"copy": [
74+
"pwsh ./copy.ps1"
75+
],
6976
"build": [
7077
"pwsh ./build.ps1"
7178
],
7279
"log": [
7380
"pwsh ./start-logging.ps1"
7481
],
75-
"copy": [
76-
"pwsh ./copy.ps1"
77-
],
7882
"clean": [
7983
"pwsh ./build.ps1 -clean"
8084
],
81-
"qmod": [
85+
"qmod_backup": [
8286
"pwsh ./build.ps1 -clean",
8387
"qpm qmod build",
8488
"pwsh ./createqmod.ps1 -clean"

0 commit comments

Comments
 (0)