13
0

change pingback URL and no longer send OS release or machine info

This commit is contained in:
Paul Davis 2022-10-18 18:08:44 -06:00
parent 39c6ea6813
commit 63677347c9
2 changed files with 5 additions and 3 deletions

View File

@ -260,9 +260,7 @@ CONFIG_VARIABLE (DenormalModel, denormal_model, "denormal-model", DenormalFTZDAZ
/* web addresses used in the program */
CONFIG_VARIABLE (std::string, osx_pingback_url, "osx-pingback-url", "http://community.ardour.org/pingback/osx/")
CONFIG_VARIABLE (std::string, linux_pingback_url, "linux-pingback-url", "http://community.ardour.org/pingback/linux/")
CONFIG_VARIABLE (std::string, windows_pingback_url, "windows-pingback-url", "http://community.ardour.org/pingback/windows/")
CONFIG_VARIABLE (std::string, pingback_url, "pingback-url", "http://community.ardour.org/pingback/ignored/")
CONFIG_VARIABLE (std::string, tutorial_manual_url, "tutorial-manual-url", "http://ardour.org/tutorial")
CONFIG_VARIABLE (std::string, reference_manual_url, "reference-manual-url", "http://manual.ardour.org/")
CONFIG_VARIABLE (std::string, updates_url, "updates-url", "http://ardour.org/whatsnew.html")

View File

@ -564,10 +564,14 @@ MidiRegion::merge (boost::shared_ptr<MidiRegion const> other_region)
for (Evoral::Sequence<Temporal::Beats>::const_iterator e = other->begin(); e != other->end(); ++e) {
std::cerr << "event " << *e << " @ " << e->time().str() << " vs " << other_region_start.str() << " .. " << other_region_end.str() << " other = " << other << std::endl;
if (e->time() < other_region_start) {
continue;
}
/* other_region_end is an exclusive end, not inclusive */
if (e->time() >= other_region_end) {
break;
}