Skip to content

Commit

Permalink
Update to Ableton Link 3.1.2
Browse files Browse the repository at this point in the history
Also preparing to cut a new release.
  • Loading branch information
brunchboy committed Jul 7, 2024
1 parent 4aa8744 commit ba6b527
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ This change log follows the conventions of

### Changed

- Updated Ableton Link to release 3.0.6.
- Updated Ableton Link to release 3.1.2.
- Continuous Integration has been updated to move away from a
deprecated Apple notarization tool.

Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set(CMAKE_OSX_ARCHITECTURES "arm64;x86_64" CACHE STRING "Build universal binary"

project(Carabiner)

set(Carabiner_VERSION "1.1.6")
set(Carabiner_VERSION "1.2.0")
configure_file(carabiner.h.in carabiner.h)
configure_file(Info.plist.in Info.plist)

Expand Down
2 changes: 1 addition & 1 deletion link
Submodule link updated 55 files
+26 −15 .appveyor.yml
+1 −1 CMakeLists.txt
+1 −1 README.md
+1 −1 cmake_include/ConfigureCompileFlags.cmake
+1 −1 examples/CMakeLists.txt
+1 −0 examples/esp32/.gitignore
+15 −0 examples/esp32/dependencies.lock
+17 −0 examples/esp32/main/idf_component.yml
+3 −41 examples/esp32/main/main.cpp
+2 −0 examples/esp32/sdkconfig.defaults
+4 −3 include/CMakeLists.txt
+23 −9 include/ableton/Link.ipp
+19 −8 include/ableton/discovery/AsioTypes.hpp
+3 −3 include/ableton/discovery/InterfaceScanner.hpp
+21 −14 include/ableton/discovery/IpInterface.hpp
+1 −1 include/ableton/discovery/NetworkByteStreamSerializable.hpp
+5 −0 include/ableton/discovery/Payload.hpp
+8 −10 include/ableton/discovery/PeerGateway.hpp
+10 −14 include/ableton/discovery/PeerGateways.hpp
+10 −2 include/ableton/discovery/Service.hpp
+72 −32 include/ableton/discovery/UdpMessenger.hpp
+17 −11 include/ableton/discovery/test/Interface.hpp
+9 −11 include/ableton/discovery/test/Socket.hpp
+34 −25 include/ableton/link/Controller.hpp
+4 −5 include/ableton/link/Gateway.hpp
+16 −6 include/ableton/link/Measurement.hpp
+9 −3 include/ableton/link/MeasurementEndpointV4.hpp
+75 −0 include/ableton/link/MeasurementEndpointV6.hpp
+3 −3 include/ableton/link/MeasurementService.hpp
+15 −9 include/ableton/link/PeerState.hpp
+7 −7 include/ableton/link/Peers.hpp
+6 −6 include/ableton/link/PingResponder.hpp
+9 −7 include/ableton/platforms/Config.hpp
+9 −6 include/ableton/platforms/asio/AsioTimer.hpp
+11 −7 include/ableton/platforms/asio/AsioWrapper.hpp
+73 −27 include/ableton/platforms/asio/Context.hpp
+2 −2 include/ableton/platforms/asio/LockFreeCallbackDispatcher.hpp
+20 −20 include/ableton/platforms/asio/Socket.hpp
+68 −33 include/ableton/platforms/esp32/Context.hpp
+3 −3 include/ableton/platforms/esp32/ScanIpIfAddrs.hpp
+36 −17 include/ableton/platforms/posix/ScanIpIfAddrs.hpp
+39 −11 include/ableton/platforms/windows/ScanIpIfAddrs.hpp
+4 −4 include/ableton/test/serial_io/Context.hpp
+3 −3 include/ableton/test/serial_io/Fixture.hpp
+1 −1 modules/asio-standalone
+3 −1 src/CMakeLists.txt
+3 −3 src/ableton/discovery/tst_InterfaceScanner.cpp
+5 −5 src/ableton/discovery/tst_PeerGateways.cpp
+24 −5 src/ableton/discovery/tst_UdpMessenger.cpp
+5 −5 src/ableton/link/tst_Controller.cpp
+3 −3 src/ableton/link/tst_Measurement.cpp
+71 −0 src/ableton/link/tst_PeerState.cpp
+2 −2 src/ableton/link/tst_Peers.cpp
+5 −5 src/ableton/link/tst_PingResponder.cpp
+51 −0 src/ableton/tst_Link.cpp

0 comments on commit ba6b527

Please sign in to comment.