Skip to content

Commit aff494a

Browse files
committed
Bump version 1.0.0-v6.2.0
1 parent 3ff84c5 commit aff494a

File tree

8 files changed

+35
-29
lines changed

8 files changed

+35
-29
lines changed

.github/workflows/build-ndk.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ jobs:
5050
restore: true
5151
cache: true
5252
publish: false
53+
qpm_qmod: ${{ env.qmodName }}
5354

5455
- name: Build & Create Qmod
5556
run: |
@@ -62,7 +63,7 @@ jobs:
6263
cd ./build/
6364
pattern="lib${module_id}*.so"
6465
files=( $pattern )
65-
echo "NAME=${files[0]}" >> ${GITHUB_OUTPUT}
66+
echo "NAME=${files[0]}" >> $GITHUB_OUTPUT
6667
6768
- name: Upload non-debug artifact
6869
uses: actions/upload-artifact@v2

.github/workflows/publish.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ jobs:
3131
id: get_tag_version
3232
run: |
3333
echo ${GITHUB_REF#refs/tags/}
34-
echo "TAG=${GITHUB_REF#refs/tags/}" >> ${GITHUB_OUTPUT}
35-
echo "VERSION=${GITHUB_REF#refs/tags/v}" >> ${GITHUB_OUTPUT}
34+
echo TAG="${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
35+
echo VERSION="${GITHUB_REF#refs/tags/v}" >> $GITHUB_OUTPUT
3636
3737
- name: Setup qpm
3838
uses: Fernthedev/qpm-action@main
@@ -45,7 +45,7 @@ jobs:
4545
tag: ${{ steps.get_tag_version.outputs.TAG }}
4646
qpm_release_bin: true
4747
qpm_debug_bin: true
48-
qpm_mod: ${{ env.qmod_name }}
48+
qpm_qmod: ${{ env.qmodName }}
4949

5050
- name: Build & Create Qmod
5151
run: |
@@ -56,8 +56,7 @@ jobs:
5656
uses: octokit/request-action@v2.x
5757
id: get_release
5858
with:
59-
route: GET /repos/:repository/releases/tags/${{ steps.get_tag_version.outputs.TAG }}
60-
repository: ${{ github.repository }}
59+
route: GET /repos/${{ github.repository }}/releases/tags/${{ steps.get_tag_version.outputs.TAG }}
6160
env:
6261
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6362

@@ -66,7 +65,7 @@ jobs:
6665
run: |
6766
url=$(echo "$response" | jq -r '.upload_url')
6867
echo $url
69-
echo "::set-output name=upload_url::$url"
68+
echo upload_url="$url" >> $GITHUB_OUTPUT
7069
env:
7170
response: ${{ steps.get_release.outputs.data }}
7271

@@ -76,8 +75,9 @@ jobs:
7675
cd ./build/
7776
pattern="lib${module_id}*.so"
7877
files=( $pattern )
79-
echo ::set-output name=NAME::"${files[0]}"
78+
echo NAME="${files[0]}" >> $GITHUB_OUTPUT
8079
80+
# Upload our release assets
8181
- name: Upload Release Asset
8282
id: upload_release_asset
8383
uses: actions/upload-release-asset@v1
@@ -100,13 +100,13 @@ jobs:
100100
asset_name: debug_${{ steps.libname.outputs.NAME }}
101101
asset_content_type: application/octet-stream
102102

103-
- name: Upload Qmod Asset
103+
- name: Upload Qmod asset
104104
id: upload_qmod_asset
105105
uses: actions/upload-release-asset@v1
106106
env:
107107
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
108108
with:
109109
upload_url: ${{ steps.get_upload_url.outputs.upload_url }}
110-
asset_path: ./${{env.qmodName}}.qmod
111-
asset_name: ${{env.qmodName}}.qmod
112-
asset_content_type: application/octet-stream
110+
asset_path: ./${{ env.qmodName }}.qmod
111+
asset_name: ${{ env.qmodName }}.qmod
112+
asset_content_type: application/octet-stream

.vscode/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,5 +128,5 @@
128128
"editor.formatOnSave": false,
129129
"editor.trimAutoWhitespace": true,
130130
"cmake.configureOnOpen": false,
131-
"cmake.automaticReconfigure": true
131+
"cmake.automaticReconfigure": false
132132
}

cover.png

78.6 KB
Loading

createqmod.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ foreach ($mod in $modJson.modFiles) {
3434
}
3535

3636
foreach ($lib in $modJson.libraryFiles) {
37-
if ($lib -eq "libchatplex-sdk-bs.so") {
38-
Continue
39-
}
37+
#if ($lib -eq "libchatplex-sdk-bs.so") {
38+
# Continue
39+
#}
4040

4141

4242
$path = "./build/" + $lib

mod.template.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@
33
"_QPVersion": "0.1.2",
44
"name": "${mod_name}",
55
"id": "${mod_id}",
6-
"author": "HardCPP#1985",
6+
"author": "HardCPP",
77
"version": "${version}",
88
"packageId": "com.beatgames.beatsaber",
99
"packageVersion": "1.28.0_4124311467",
1010
"description": "Feel good!",
11+
"coverImage": "cover.png",
1112
"dependencies": [],
1213
"modFiles": [],
1314
"libraryFiles": [],

qpm.json

Lines changed: 2 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": "0.1.1-v6.2.0",
7+
"version": "1.0.0-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": "^0.1.1-v6.2.0",
56+
"versionRange": "^1.0.0-v6.2.0",
5757
"additionalData": {
5858
"private": true
5959
}

qpm.shared.json

Lines changed: 14 additions & 10 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": "0.1.1-v6.2.0",
8+
"version": "1.0.0-v6.2.0",
99
"url": "https://github.com/hardcpp/QBeatSaberPlus-NoteTweaker",
1010
"additionalData": {
1111
"overrideSoName": "libqbeatsaberplus-notetweaker.so",
@@ -54,7 +54,7 @@
5454
},
5555
{
5656
"id": "chatplex-sdk-bs",
57-
"versionRange": "^0.1.1-v6.2.0",
57+
"versionRange": "^1.0.0-v6.2.0",
5858
"additionalData": {
5959
"private": true
6060
}
@@ -65,19 +65,19 @@
6565
"build": [
6666
"pwsh ./build.ps1"
6767
],
68-
"clean": [
69-
"pwsh ./build.ps1 -clean"
70-
],
71-
"copy": [
72-
"pwsh ./copy.ps1"
73-
],
7468
"log": [
7569
"pwsh ./start-logging.ps1"
7670
],
7771
"qmod": [
7872
"pwsh ./build.ps1 -clean",
7973
"qpm qmod build",
8074
"pwsh ./createqmod.ps1 -clean"
75+
],
76+
"copy": [
77+
"pwsh ./copy.ps1"
78+
],
79+
"clean": [
80+
"pwsh ./build.ps1 -clean"
8181
]
8282
}
8383
}
@@ -108,13 +108,17 @@
108108
{
109109
"dependency": {
110110
"id": "chatplex-sdk-bs",
111-
"versionRange": "=0.1.1-v6.2.0",
111+
"versionRange": "=1.0.0-v6.2.0",
112112
"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",
113115
"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",
114118
"cmake": true
115119
}
116120
},
117-
"version": "0.1.1-v6.2.0"
121+
"version": "1.0.0-v6.2.0"
118122
},
119123
{
120124
"dependency": {

0 commit comments

Comments
 (0)