Skip to content

Commit 63f4cb6

Browse files
Small bugfixes, version bump to 0.0.3, maker version.
1 parent c94da59 commit 63f4cb6

14 files changed

+164
-73
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ function(setup_obs_lib_dependency target)
3434
endif()
3535
endfunction()
3636

37-
project(elgato-marketplace VERSION 0.0.2)
37+
project(elgato-marketplace VERSION 0.0.3)
3838

3939
if(${CMAKE_PROJECT_NAME} STREQUAL "obs-studio")
4040
set(OBS_FRONTEND_API_NAME "frontend-api")

buildspec.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
},
4141
"name": "elgato-marketplace",
4242
"displayName": "Elgato Marketplace Plugin",
43-
"version": "0.0.2",
43+
"version": "0.0.3",
4444
"author": "Elgato",
4545
"website": "https://elgato.com",
4646
"email": "support@elgato.com",

data/images/download.svg

Lines changed: 3 additions & 3 deletions
Loading

data/images/download_hover.svg

Lines changed: 2 additions & 2 deletions
Loading

data/images/settings.svg

Lines changed: 2 additions & 2 deletions
Loading

data/images/settings_hover.svg

Lines changed: 3 additions & 3 deletions
Loading

src/elgato-cloud-data.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ void ElgatoCloud::_Initialize()
192192
"RefreshTokenExpiration", 0);
193193

194194
std::string path = QDir::homePath().toStdString();
195-
path += "/AppData/Local/Elgato/DeepLinking/SceneCollections/";
195+
path += "/AppData/Local/Elgato/DeepLinking/SceneCollections";
196196
os_mkdirs(path.c_str());
197197
config_set_default_string(global_config, "ElgatoCloud", "InstallLocation", path.c_str());
198198

src/elgato-cloud-window.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -805,12 +805,12 @@ void CloseElgatoCloudWindow()
805805

806806
extern void InitElgatoCloud(obs_module_t *module)
807807
{
808-
obs_log(LOG_INFO, "version: %s", "0.0.2");
808+
obs_log(LOG_INFO, "version: %s", "0.0.3-maker");
809809

810810
elgatoCloud = new ElgatoCloud(module);
811-
QAction *action = (QAction *)obs_frontend_add_tools_menu_qaction(
812-
"Elgato Marketplace");
813-
action->connect(action, &QAction::triggered, OpenElgatoCloudWindow);
811+
//QAction *action = (QAction *)obs_frontend_add_tools_menu_qaction(
812+
// "Elgato Marketplace");
813+
//action->connect(action, &QAction::triggered, OpenElgatoCloudWindow);
814814
}
815815

816816
} // namespace elgatocloud

src/elgato-product.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,7 @@ void ElgatoProduct::Install(std::string filename_utf8, void *data, bool fromDown
202202
setupWizard->setAttribute(Qt::WA_DeleteOnClose);
203203
setupWizard->show();
204204
setupWizard->move(hostRect.center() - setupWizard->rect().center());
205+
setupWizard->OpenArchive();
205206
}
206207

207208
} // namespace elgatocloud

src/plugin-module.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ bool obs_module_load(void)
7070
elgatocloud::InitElgatoCloud(obs_current_module());
7171
config_t* const global_config = obs_frontend_get_global_config();
7272
bool makerTools = config_get_bool(global_config, "ElgatoCloud", "MakerTools");
73-
if (makerTools) {
73+
if (makerTools || true) {
7474
obs_frontend_add_tools_menu_item("Export Marketplace Scene",
7575
export_collection, NULL);
7676
obs_frontend_add_tools_menu_item("Import Marketplace Scene",

0 commit comments

Comments
 (0)