diff --git a/CMakeLists.txt b/CMakeLists.txt index 13f04c4f..2db29901 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -273,4 +273,9 @@ endif() # -- Fixes issue where plugin isn't copied to rundir plugins directory on local build -- -install_obs_plugin_with_data(obs-midi data) +if(WIN32) + if (${isAzure}) + else () + install_obs_plugin_with_data(obs-midi data) + endif() +endif() diff --git a/src/obs-midi.cpp b/src/obs-midi.cpp index 512b989d..b261b518 100644 --- a/src/obs-midi.cpp +++ b/src/obs-midi.cpp @@ -45,7 +45,7 @@ eventsPtr _eventsSystem; bool obs_module_load(void) { - blog(LOG_INFO, "MIDI LOADED :)"); + blog(LOG_INFO, "MIDI LOADED! :)"); // Device Manager Setup _deviceManager = DeviceManagerPtr(new DeviceManager()); diff --git a/src/version.h b/src/version.h index 2e4927cd..fad16610 100644 --- a/src/version.h +++ b/src/version.h @@ -2,6 +2,6 @@ #define VERSION_H #define GIT_BRANCH "fixes" -#define GIT_COMMIT_HASH "3e9ad09" +#define GIT_COMMIT_HASH "d9f877e" #endif