Skip to content

Commit 45c2393

Browse files
committed
Fixing some issues
1 parent 4a683e7 commit 45c2393

File tree

4 files changed

+10
-16
lines changed

4 files changed

+10
-16
lines changed

.vscode/tasks.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,7 @@
4141
"detail": "Builds the library",
4242
"type": "shell",
4343
"command": "./scripts/build.ps1",
44-
"group": {
45-
"kind": "build",
46-
"isDefault": true
47-
},
44+
"group": "build",
4845
"options": {
4946
"env": {}
5047
},
@@ -75,21 +72,24 @@
7572
"label": "Start Logging",
7673
"detail": "Begin logging from the Quest to the console",
7774
"type": "shell",
78-
"command": "./scripts/start-logging.ps1",
75+
"command": "./scripts/start-logging.ps1"
7976
},
8077
{
8178
"label": "Start logging to file",
8279
"detail": "Begin logging from the Quest to the console and saving output to a file 'logcat.log'",
8380
"type": "shell",
84-
"command": "./scripts/start-logging.ps1 --file",
81+
"command": "./scripts/start-logging.ps1 --file"
8582
},
8683
{
8784
"label": "Build QMOD",
8885
"detail": "Builds a .qmod to be installed into BMBF or QuestPatcher",
8986
"type": "shell",
9087
"command": "./scripts/build.ps1 && ./scripts/createqmod.ps1",
9188
"args": [],
92-
"group": "build",
89+
"group": {
90+
"kind": "build",
91+
"isDefault": true
92+
},
9393
"options": {
9494
"env": {}
9595
},

include/config.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
#include "config-utils/shared/config-utils.hpp"
44

55
DECLARE_CONFIG(ModConfig,
6-
CONFIG_VALUE(Active, bool, "Disable the expanding of the Cover Art", false);
6+
CONFIG_VALUE(Active, bool, "Disable the Mod (RESTART REQUIRED FOR DISABLING)", false);
77
)

qpm.shared.json

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,7 @@
4040
"tomb": [
4141
"pwsh ./scripts/pull-tombstone.ps1"
4242
]
43-
},
44-
"qmodIncludeDirs": [
45-
"./build",
46-
"./extern/libs"
47-
],
48-
"qmodIncludeFiles": [],
49-
"qmodOutput": "./ImageCoverExpander.qmod"
43+
}
5044
},
5145
"dependencies": [
5246
{

src/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ MOD_EXPORT_FUNC void late_load() {
9191
getModConfig().Init(modInfo);
9292
BSML::Init();
9393

94-
BSML::Register::RegisterMainMenu("ImageCoverExpander", "ImageCoverExpander", "Hide/Show Bigger Image Cover Art", DidActivate);
94+
BSML::Register::RegisterSettingsMenu("CoverExpander", DidActivate, false);
9595
Logger.info("Installing hooks...");
9696

9797
INSTALL_HOOK(Logger, m_DidActivate);

0 commit comments

Comments
 (0)