Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-r-elp committed Aug 11, 2021
1 parent 2bbb56d commit 3531d10
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/Pre-Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ env:
module_id: clockmod
version: 1.4.0-rc.2
BSVersion: 1.16.4
bs_hook: 2_2_4
bs_hook: 2_2_5
codegen: 0_12_5
ndkname: android-ndk-r22

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
module_id: clockmod
version: 1.4.0
BSVersion: 1.16.4
bs_hook: 2_2_4
bs_hook: 2_2_5
codegen: 0_12_5
ndkname: android-ndk-r22

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/buildMod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ env:
module_id: clockmod
version: 1.4.0-Dev.${{ github.run_number }}
BSVersion: 1.16.4
bs_hook: 2_2_4
bs_hook: 2_2_5
codegen: 0_12_5

jobs:
Expand Down
6 changes: 3 additions & 3 deletions Android.mk
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ LOCAL_MODULE :=
include $(CLEAR_VARS)
# Creating prebuilt for dependency: beatsaber-hook - version: 1.3.3
include $(CLEAR_VARS)
LOCAL_MODULE := beatsaber-hook_2_2_4
LOCAL_MODULE := beatsaber-hook_2_2_5
LOCAL_EXPORT_C_INCLUDES := extern/beatsaber-hook
LOCAL_SRC_FILES := extern/libbeatsaber-hook_2_2_4.so
LOCAL_SRC_FILES := extern/libbeatsaber-hook_2_2_5.so
LOCAL_CPP_FEATURES += exceptions
include $(PREBUILT_SHARED_LIBRARY)
# Creating prebuilt for dependency: codegen - version: 0.8.1
Expand Down Expand Up @@ -60,7 +60,7 @@ LOCAL_SRC_FILES += $(call rwildcard,src/,*.cpp)
LOCAL_SRC_FILES += $(call rwildcard,extern/beatsaber-hook/src/inline-hook,*.cpp)
LOCAL_SRC_FILES += $(call rwildcard,extern/beatsaber-hook/src/inline-hook,*.c)
LOCAL_SHARED_LIBRARIES += modloader
LOCAL_SHARED_LIBRARIES += beatsaber-hook_2_2_4
LOCAL_SHARED_LIBRARIES += beatsaber-hook_2_2_5
LOCAL_SHARED_LIBRARIES += codegen_0_12_5
LOCAL_SHARED_LIBRARIES += custom-types
LOCAL_SHARED_LIBRARIES += questui
Expand Down
2 changes: 1 addition & 1 deletion build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ if ($args[0] -eq "--release") {
} else {
$VERSION = "1.4.0-InDev"
}
$BSHook = "2_2_4"
$BSHook = "2_2_5"
$codegen_ver = "0_12_5"
}

Expand Down
2 changes: 1 addition & 1 deletion buildQMOD.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
if ($args.Count -eq 0) {
$ModID = "clockmod"
$VERSION = "1.4.0"
$BSHook = "2_2_4"
$BSHook = "2_2_5"
$BS_Version = "1.16.4"
echo "Compiling Mod"
& $PSScriptRoot/build.ps1 --release
Expand Down
2 changes: 1 addition & 1 deletion mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"libclockmod.so"
],
"libraryFiles": [
"libbeatsaber-hook_2_2_4.so"
"libbeatsaber-hook_2_2_5.so"
],
"dependencies": [],
"fileCopies": []
Expand Down
8 changes: 4 additions & 4 deletions qpm.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"dependencies": [
{
"id": "beatsaber-hook",
"versionRange": "^2.2.2",
"versionRange": "^2.2.5",
"additionalData": {
"extraFiles": [
"src/inline-hook"
Expand All @@ -20,17 +20,17 @@
},
{
"id": "codegen",
"versionRange": "^0.12.3",
"versionRange": "^0.12.5",
"additionalData": {}
},
{
"id": "questui",
"versionRange": "^0.10.0",
"versionRange": "^0.10.2",
"additionalData": {}
},
{
"id": "custom-types",
"versionRange": "^0.12.5",
"versionRange": "^0.12.6",
"additionalData": {}
},
{
Expand Down

0 comments on commit 3531d10

Please sign in to comment.