diff --git a/CHANGELOG.md b/CHANGELOG.md index 686f9ea4a3a..4583be5f165 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -86,6 +86,7 @@ * Prevent moving a loop beyond track end [#3117](https://github.com/mixxxdj/mixxx/pull/3117) [lp:1799574](https://bugs.launchpad.net/mixxx/+bug/1799574) * Use 6 instead of only 4 compatible musical keys (major/minor) [#3205](https://github.com/mixxxdj/mixxx/pull/3205) * Fix possible memory corruption using JACK on Linux [#3160](https://github.com/mixxxdj/mixxx/pull/3160) +* Fix possible crash when trying to refocus the tracks table while another Mixxx window has focus [#3201](https://github.com/mixxxdj/mixxx/pull/3201) ## [2.2.4](https://launchpad.net/mixxx/+milestone/2.2.4) (2020-06-27) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0ae4825de93..00ef09e651d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1604,10 +1604,11 @@ if(KEYFINDER) find_package(FFTW REQUIRED) set(KeyFinder_INSTALL_DIR "${CMAKE_CURRENT_BINARY_DIR}/lib/keyfinder-install") set(KeyFinder_LIBRARY "lib/${CMAKE_STATIC_LIBRARY_PREFIX}keyfinder${CMAKE_STATIC_LIBRARY_SUFFIX}") - ExternalProject_Add(keyfinder - GIT_REPOSITORY https://github.com/ibsh/libKeyFinder.git - GIT_TAG v2.2.2 - GIT_SHALLOW TRUE + file(MAKE_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/download") + ExternalProject_Add(libKeyFinder + URL "https://github.com/ibsh/libKeyFinder/archive/v2.2.2.zip" + URL_HASH SHA256=f04ff63c9710d969e79b71bde18abd720e886f537951a1045cc50cb497a72492 + DOWNLOAD_DIR "${CMAKE_CURRENT_BINARY_DIR}/download/libKeyFinder" INSTALL_DIR "${KeyFinder_INSTALL_DIR}" CMAKE_ARGS -DBUILD_STATIC_LIBS=ON @@ -1631,7 +1632,7 @@ if(KEYFINDER) file(MAKE_DIRECTORY "${KeyFinder_INSTALL_DIR}/include") add_library(mixxx-keyfinder STATIC IMPORTED) - add_dependencies(mixxx-keyfinder keyfinder) + add_dependencies(mixxx-keyfinder libKeyFinder) set_target_properties(mixxx-keyfinder PROPERTIES IMPORTED_LOCATION "${KeyFinder_INSTALL_DIR}/${KeyFinder_LIBRARY}") target_link_libraries(mixxx-keyfinder INTERFACE FFTW::FFTW) target_include_directories(mixxx-keyfinder INTERFACE "${KeyFinder_INSTALL_DIR}/include")