Skip to content

Commit

Permalink
#1136 Raise minimum/optimal REAPER version for Playtime to 7.23
Browse files Browse the repository at this point in the history
  • Loading branch information
helgoboss committed Sep 4, 2024
1 parent 92f6089 commit c31d96f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main/src/infrastructure/proto/initial_events.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ pub fn create_initial_instance_updates(
let reaper_revision = reaper_version.revision();
let mut warnings = vec![];
if cfg!(feature = "playtime") && reaper_revision < MIN_REAPER_VERSION_FOR_PLAYTIME {
let msg = format!("You are using REAPER version {reaper_revision}, which is not optimal for running Playtime. You may experience issues of all kinds! For an optimal experience, please upgrade to at least REAPER version {MIN_REAPER_VERSION_FOR_PLAYTIME}!");
let msg = format!("You are using REAPER version {reaper_revision}, which is not optimal for running Playtime. You may experience issues of all kinds (timing, keyboard control, ...)! For an optimal experience, please upgrade to at least REAPER version {MIN_REAPER_VERSION_FOR_PLAYTIME}!");
warnings.push(Update::warning(Severity::High, Some(Scope::Playtime), msg))
}
create(
Expand All @@ -60,7 +60,7 @@ pub fn create_initial_instance_updates(
)
}

const MIN_REAPER_VERSION_FOR_PLAYTIME: &str = "7.17";
const MIN_REAPER_VERSION_FOR_PLAYTIME: &str = "7.23";

pub fn create_initial_unit_updates(
instance_shell: &InstanceShell,
Expand Down

0 comments on commit c31d96f

Please sign in to comment.