Skip to content

Commit

Permalink
Bumped version to 3.8.1 (realtime BPM fix)
Browse files Browse the repository at this point in the history
  • Loading branch information
rmonier committed May 15, 2023
1 parent fcdffb5 commit b3f23a9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Module/OutputFiles.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
4 changes: 3 additions & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit b3f23a9

Please sign in to comment.