Skip to content

Commit

Permalink
Update to 1.21.0
Browse files Browse the repository at this point in the history
  • Loading branch information
FranciscoRibeiro03 committed Apr 9, 2022
1 parent 48186a3 commit c2bc892
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 14 deletions.
10 changes: 5 additions & 5 deletions build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ Param(
)

if ($help -eq $true) {
echo "`"Build`" - Copiles your mod into a `".so`" or a `".a`" library"
echo "`n-- Arguments --`n"
Write-Output "`"Build`" - Copiles your mod into a `".so`" or a `".a`" library"
Write-Output "`n-- Arguments --`n"

echo "-Clean `t`t Deletes the `"build`" folder, so that the entire library is rebuilt"
Write-Output "-Clean `t`t Deletes the `"build`" folder, so that the entire library is rebuilt"

exit
}
Expand All @@ -30,7 +30,7 @@ if (($clean.IsPresent) -or (-not (Test-Path -Path "build")))
$out = new-item -Path build -ItemType Directory
}

cd build
Set-Location build
& cmake -G "Ninja" -DCMAKE_BUILD_TYPE="RelWithDebInfo" ../
& cmake --build .
cd ..
Set-Location ..
4 changes: 2 additions & 2 deletions createqmod.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Param(

if ($qmodName -eq "")
{
echo "Give a proper qmod name and try again"
Write-Output "Give a proper qmod name and try again"
exit
}
$mod = "./mod.json"
Expand Down Expand Up @@ -45,7 +45,7 @@ $qmod = $qmodName + ".qmod"

if ((-not ($clean.IsPresent)) -and (Test-Path $qmod))
{
echo "Making Clean Qmod"
Write-Output "Making Clean Qmod"
Move-Item $qmod $zip -Force
}

Expand Down
6 changes: 3 additions & 3 deletions mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
"name": "SearchFixes",
"id": "SearchFixes",
"author": "rui2015",
"version": "1.2.0",
"version": "1.2.1",
"packageId": "com.beatgames.beatsaber",
"packageVersion": "1.20.0",
"packageVersion": "1.21.0",
"description": "An improved search algorithm for Beat Saber",
"modFiles": [
"libSearchFixes.so"
],
"libraryFiles": [
"libbeatsaber-hook_3_6_8.so"
"libbeatsaber-hook_3_8_1.so"
]
}
9 changes: 5 additions & 4 deletions qpm.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"info": {
"name": "SearchFixes",
"id": "SearchFixes",
"version": "1.2.0",
"version": "1.2.1",
"url": null,
"additionalData": {
"overrideSoName": "libSearchFixes.so"
Expand All @@ -13,16 +13,17 @@
"dependencies": [
{
"id": "beatsaber-hook",
"versionRange": "^3.6.8",
"versionRange": "^3.8.1",
"additionalData": {
"extraFiles": [
"src/inline-hook"
]
],
"useRelease": true
}
},
{
"id": "codegen",
"versionRange": "^0.21.0",
"versionRange": "^0.22.0",
"additionalData": {}
}
],
Expand Down

0 comments on commit c2bc892

Please sign in to comment.