diff --git a/Module/OutputFiles.cpp b/Module/OutputFiles.cpp index 3178e8f..70dc509 100644 --- a/Module/OutputFiles.cpp +++ b/Module/OutputFiles.cpp @@ -364,12 +364,12 @@ void run_listener() // if the Ableton Link is enabled, send the BPM to Link if (config.use_link && link != nullptr && link->isEnabled()) { auto currentMasterBpm = output_file::get_master_bpm(); - info("[LINK] Session state capture started"); + //info("[LINK] Session state capture started"); auto state = link->captureAppSessionState(); state.setTempo(stod(currentMasterBpm), chrono::microseconds(0)); - info("[LINK] Sending new BPM to Link peers..."); + //info("[LINK] Sending new BPM to Link peers..."); link->commitAppSessionState(state); - success("[LINK] Master BPM set to: %s (%.2f)", currentMasterBpm.c_str(), stod(currentMasterBpm)); + //success("[LINK] Master BPM set to: %s (%.2f)", currentMasterBpm.c_str(), stod(currentMasterBpm)); } else if (config.use_link && link == nullptr) { error("[LINK] Ableton Link has not been initialized correctly, skipping BPM update"); } else if (config.use_link) { diff --git a/conanfile.py b/conanfile.py index d593c98..56bc355 100644 --- a/conanfile.py +++ b/conanfile.py @@ -14,7 +14,9 @@ class RekordBoxSongExporter(ConanFile): conan build . -of conan/build/release -pr ./conan/profiles/release -pr:b ./conan/profiles/release --build missing """ name = "RekordBoxSongExporter" - version = "3.8" + version = "3.8.1" + description = "A hack for Rekordbox on Windows x64 to export track information for realtime integration with OBS " \ + "and Ableton Link" package_type = "application" settings = "build_type", "os", "arch", "compiler" build_policy = "missing"