Skip to content

Commit 3531d10

Browse files
committed
Update dependencies
1 parent 2bbb56d commit 3531d10

File tree

8 files changed

+13
-13
lines changed

8 files changed

+13
-13
lines changed

.github/workflows/Pre-Release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ env:
66
module_id: clockmod
77
version: 1.4.0-rc.2
88
BSVersion: 1.16.4
9-
bs_hook: 2_2_4
9+
bs_hook: 2_2_5
1010
codegen: 0_12_5
1111
ndkname: android-ndk-r22
1212

.github/workflows/Release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
module_id: clockmod
66
version: 1.4.0
77
BSVersion: 1.16.4
8-
bs_hook: 2_2_4
8+
bs_hook: 2_2_5
99
codegen: 0_12_5
1010
ndkname: android-ndk-r22
1111

.github/workflows/buildMod.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ env:
1111
module_id: clockmod
1212
version: 1.4.0-Dev.${{ github.run_number }}
1313
BSVersion: 1.16.4
14-
bs_hook: 2_2_4
14+
bs_hook: 2_2_5
1515
codegen: 0_12_5
1616

1717
jobs:

Android.mk

+3-3
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ LOCAL_MODULE :=
2424
include $(CLEAR_VARS)
2525
# Creating prebuilt for dependency: beatsaber-hook - version: 1.3.3
2626
include $(CLEAR_VARS)
27-
LOCAL_MODULE := beatsaber-hook_2_2_4
27+
LOCAL_MODULE := beatsaber-hook_2_2_5
2828
LOCAL_EXPORT_C_INCLUDES := extern/beatsaber-hook
29-
LOCAL_SRC_FILES := extern/libbeatsaber-hook_2_2_4.so
29+
LOCAL_SRC_FILES := extern/libbeatsaber-hook_2_2_5.so
3030
LOCAL_CPP_FEATURES += exceptions
3131
include $(PREBUILT_SHARED_LIBRARY)
3232
# Creating prebuilt for dependency: codegen - version: 0.8.1
@@ -60,7 +60,7 @@ LOCAL_SRC_FILES += $(call rwildcard,src/,*.cpp)
6060
LOCAL_SRC_FILES += $(call rwildcard,extern/beatsaber-hook/src/inline-hook,*.cpp)
6161
LOCAL_SRC_FILES += $(call rwildcard,extern/beatsaber-hook/src/inline-hook,*.c)
6262
LOCAL_SHARED_LIBRARIES += modloader
63-
LOCAL_SHARED_LIBRARIES += beatsaber-hook_2_2_4
63+
LOCAL_SHARED_LIBRARIES += beatsaber-hook_2_2_5
6464
LOCAL_SHARED_LIBRARIES += codegen_0_12_5
6565
LOCAL_SHARED_LIBRARIES += custom-types
6666
LOCAL_SHARED_LIBRARIES += questui

build.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ if ($args[0] -eq "--release") {
66
} else {
77
$VERSION = "1.4.0-InDev"
88
}
9-
$BSHook = "2_2_4"
9+
$BSHook = "2_2_5"
1010
$codegen_ver = "0_12_5"
1111
}
1212

buildQMOD.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
if ($args.Count -eq 0) {
33
$ModID = "clockmod"
44
$VERSION = "1.4.0"
5-
$BSHook = "2_2_4"
5+
$BSHook = "2_2_5"
66
$BS_Version = "1.16.4"
77
echo "Compiling Mod"
88
& $PSScriptRoot/build.ps1 --release

mod.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"libclockmod.so"
1313
],
1414
"libraryFiles": [
15-
"libbeatsaber-hook_2_2_4.so"
15+
"libbeatsaber-hook_2_2_5.so"
1616
],
1717
"dependencies": [],
1818
"fileCopies": []

qpm.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"dependencies": [
1212
{
1313
"id": "beatsaber-hook",
14-
"versionRange": "^2.2.2",
14+
"versionRange": "^2.2.5",
1515
"additionalData": {
1616
"extraFiles": [
1717
"src/inline-hook"
@@ -20,17 +20,17 @@
2020
},
2121
{
2222
"id": "codegen",
23-
"versionRange": "^0.12.3",
23+
"versionRange": "^0.12.5",
2424
"additionalData": {}
2525
},
2626
{
2727
"id": "questui",
28-
"versionRange": "^0.10.0",
28+
"versionRange": "^0.10.2",
2929
"additionalData": {}
3030
},
3131
{
3232
"id": "custom-types",
33-
"versionRange": "^0.12.5",
33+
"versionRange": "^0.12.6",
3434
"additionalData": {}
3535
},
3636
{

0 commit comments

Comments
 (0)