Skip to content

Commit

Permalink
Bump version number
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperMarcus committed Aug 15, 2021
1 parent 3addd71 commit 5a182a9
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 27 deletions.
2 changes: 1 addition & 1 deletion .vscode/c_cpp_properties.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"defines": [
"__GNUC__",
"__aarch64__",
"VERSION=\"1.2.0\"",
"VERSION=\"1.3.0\"",
"ID=\"particletuner\""
],
"includePath": [
Expand Down
2 changes: 1 addition & 1 deletion Android.mk
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ LOCAL_SHARED_LIBRARIES += custom-types
LOCAL_SHARED_LIBRARIES += questui
LOCAL_SHARED_LIBRARIES += codegen_0_12_5
LOCAL_LDLIBS += -llog
LOCAL_CFLAGS += -DVERSION='"1.2.0"' -DID='"particletuner"' -isystem 'extern/libil2cpp/il2cpp/libil2cpp'
LOCAL_CFLAGS += -DVERSION='"1.3.0"' -DID='"particletuner"' -isystem 'extern/libil2cpp/il2cpp/libil2cpp'
LOCAL_CPPFLAGS += -std=c++2a -frtti
LOCAL_C_INCLUDES += ./include ./src ./shared ./extern ./extern/beatsaber-hook/shared ./extern/modloader/shared ./extern/questui/shared ./extern/custom-types/shared ./extern/codegen/include
LOCAL_CPP_FEATURES += exceptions
Expand Down
2 changes: 1 addition & 1 deletion bmbfmod.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "particletuner",
"name": "Particles",
"version": "1.2.0",
"version": "1.3.0",
"author": "marcuszhou",
"description": [
"Boost or reduce note-cutting and environmental particle effects. QuestParticles is a port of the ParticleOverdrive mod from PC to the Quest."
Expand Down
4 changes: 2 additions & 2 deletions mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
"name": "Particles",
"author": "Marcus Zhou",
"packageId": "com.beatgames.beatsaber",
"packageVersion": "1.14.0",
"packageVersion": "1.16.4",
"id": "particletuner",
"version": "1.2.0",
"version": "1.3.0",
"coverImage": "cover.gif",
"dependencies": [],
"modFiles": [
Expand Down
19 changes: 0 additions & 19 deletions mod.standalone.json

This file was deleted.

2 changes: 1 addition & 1 deletion qpm.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"info": {
"name": "particletuner",
"id": "particletuner",
"version": "1.2.0",
"version": "1.3.0",
"url": "https://github.com/SuperMarcus/QuestParticleTuner",
"additionalData": {}
},
Expand Down
2 changes: 2 additions & 0 deletions release.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/bin/bash

echo "[!] BMBFmod format has been deprecated! Use ./release-qmod.sh instead."

rm -f ParticleTuner.zip
zip -j ParticleTuner.zip bmbfmod.json cover.gif
find ./libs/arm64-v8a \
Expand Down
4 changes: 2 additions & 2 deletions src/PTModSettings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ void PTModSettingsOnReduceDustParticlesToggle(PTModSettingsViewController* paren
//}

void PTModSettingsViewController::DidActivate(bool firstActivation, bool addedToHierarchy, bool screenSystemEnabling) {
if (firstActivation && addedToHierarchy) {
if (firstActivation) {
getLogger().info("Adding mod settings UI components...");

auto sectionBackgroundName = il2cpp_utils::createcsstr("round-rect-panel");
Expand Down Expand Up @@ -296,7 +296,7 @@ void PTModSettingsViewController::DidActivate(bool firstActivation, bool addedTo
presetContainerLayout->get_rectTransform(),
preset->name,
"OkButton",
std::bind(PTModSettingsApplyPreset, presetData)
[presetData] { return PTModSettingsApplyPreset(presetData); }
);
}

Expand Down

0 comments on commit 5a182a9

Please sign in to comment.