-
📅 Release date
- Aug 30, 2024
-
💥 Breaking changes
-
Add
vendor_id
andproduct_id
into thevirtual_hid_keyboard_initialize
parameters. You need to modify the code as follows.- client->async_virtual_hid_keyboard_initialize(pqrs::hid::country_code::us); + pqrs::karabiner::driverkit::virtual_hid_device_service::virtual_hid_keyboard_parameters parameters; + parameters.set_country_code(pqrs::hid::country_code::us); + client->async_virtual_hid_keyboard_initialize(parameters);
-
- 📅 Release date
- May 26, 2024
- 🍰 Minor Changes
- Fix minor script issues.
- Improved
examples/SMAppServiceExample
.
- 📅 Release date
- May 20, 2024
- 🍰 Minor Changes
- Renamed LaunchDaemons plist name.
- new:
LaunchDaemons/org.pqrs.service.daemon.Karabiner-VirtualHIDDevice-Daemon.plist
- old:
LaunchDaemons/org.pqrs.Karabiner-VirtualHIDDevice-Daemon.plist
- new:
- Renamed LaunchDaemons plist name.
- 📅 Release date
- May 16, 2024
- ⚡️ Improvements
- The signing identity during the package build has been changed from hard-coded to using an environment variable.
- 🍰 Minor Changes
- The provisioning profile for signing the built binary has been updated.
- 📅 Release date
- May 15, 2024
- 💥 Breaking changes
- macOS 11 and macOS 12 are no longer supported.
- The legacy
/Library/LaunchDaemons/org.pqrs.Karabiner-DriverKit-VirtualHIDDeviceClient.plist
is no longer included. To automatically launch the service process, please registerKarabiner-VirtualHIDDevice-Daemon.app
with launchd from your application.examples/SMAppServiceExample
is an example application for performing the registration. - Removed
/Library/Application Support/org.pqrs/Karabiner-DriverKit-VirtualHIDDevice/bin/cli
.
- 🔔 Compatibility
- There is binary compatibility for client applications. This means that a client designed for version 3.x.x will also work with version 4.0.0 without needing to rebuild your application.
- 🍰 Minor Changes
- The name of the daemon process has changed from
Karabiner-DriverKit-VirtualHIDDeviceClient.app
toKarabiner-VirtualHIDDevice-Daemon.app
.
- The name of the daemon process has changed from
- 📅 Release date
- May 10, 2024
- ⚡️ Improvements
- Changed the registration of the
Karabiner-DriverKit-VirtualHIDDeviceClient.app
in the Launch Services database to occur just once after the package is installed, instead of every time it is launched. - Stopped updating the modification time of
/Library/LaunchDaemons/org.pqrs.Karabiner-DriverKit-VirtualHIDDeviceClient.plist
each timeKarabiner-DriverKit-VirtualHIDDeviceClient.app
is launched. - Added
/Library/Application Support/org.pqrs/Karabiner-DriverKit-VirtualHIDDevice/bin/cli
. - Updated provisionprofile files.
- Updated dependent vendor code.
- Changed the registration of the
- 📅 Release date
- Sep 17, 2023
- 💥 Breaking changes
virtual_hid_device_service::client
signals are updated:driver_loaded_response
is changed todriver_connected
driver_version_matched_response
is changed todriver_version_mismatched
- Note that the true and false values are reversed.
*_response
is removed from the following signals:virtual_hid_keyboard_ready_response
virtual_hid_pointing_ready_response
- The following obsoleted methods of
virtual_hid_device_service::client
are removed:client(const std::filesystem::path& client_socket_file_path)
async_driver_loaded(void)
async_virtual_hid_keyboard_ready(void)
async_virtual_hid_pointing_ready(void)
- ✨ New Features
driver_activated
signal is added intovirtual_hid_device_service::client
.
- ⚡️ Improvements
- In the
forceActivate
process, if the same version of the system extension that is being installed is already installed, the request will be explicitly skipped.
- In the
- 📅 Release date
- Sep 10, 2023
- ⚡️ Improvements
- Updated dependent vendor code.
- pqrs::osx::process_info v2.3
- Updated dependent vendor code.
- 📅 Release date
- Sep 10, 2023
- ⚡️ Improvements
- Fix swiftlint warnings.
- 📅 Release date
- Sep 6, 2023
- ✨ New Features
- Generic desktop usage page (e.g., D-pad) has been supported.
- 📅 Release date
- Aug 19, 2023
- ⚡️ Improvements
- Updated dependent vendor code.
- asio 1.28.1
- Updated dependent vendor code.
- 📅 Release date
- Jul 17, 2023
- ⚡️ Improvements
- Updated dependent vendor code.
- asio 1.28.0
- spdlog 1.12.0
- Updated dependent vendor code.
- 📅 Release date
- Apr 15, 2023
- 🐛 Bug Fixes
- Fixed an issue that the virtual keyboard was not recreated with the new country code when the country code was changed after the virtual keyboard was initialized.
- 📅 Release date
- Jan 5, 2023
- 💥 Breaking changes
- The following callback in virtual_hid_device_service::client are now called periodically without a request.
- driver_loaded_response
- driver_version_matched_response
- virtual_hid_keyboard_ready_response
- virtual_hid_pointing_ready_response
- The following callback in virtual_hid_device_service::client are now called periodically without a request.
- ⚡️ Improvements
- The virtual device regeneration is no longer performed even when virtual_hid_keyboard_initialize or virtual_hid_pointing_initialize calls are repeated within a short period of time.
- 📅 Release date
- Jan 3, 2023
- ⚡️ Improvements
- Fix log messages.
- Update dependent vendor code.
- 📅 Release date
- Jan 2, 2023
- ⚡️ Improvements
- Improved error recovery by refreshing the client socket path for each connection.
- The keyboard and pointing device now share the same socket for communication.
- Update dependent vendor code.
- 📅 Release date
- Dec 29, 2022
- ⚡️ Improvements
- Update dependent vendor code
- 📅 Release date
- Dec 28, 2022
- ⚡️ Improvements
- Update dependent vendor code
- 📅 Release date
- Dec 27, 2022
- ⚡️ Improvements
- Added
AssociatedBundleIdentifiers
intoLaunchDaemons/org.pqrs.Karabiner-DriverKit-VirtualHIDDeviceClient.plist
- Improved error recovery by enhanced status check of local datagram communication between virtual_hid_device_service_server and virtual_hid_device_service::client.
- Added
- 📅 Release date
- Jun 5, 2022
- ⚡️ Improvements
- Ignore
async_virtual_hid_keyboard_initialize
andasync_virtual_hid_pointing_initialize
if the device is already initialized.
- Ignore
- 📅 Release date
- May 6, 2022
- ⚡️ Improvements
- The duplicated
driver_version_ is mismatched
warning log messages have suppressed.
- The duplicated
- 📅 Release date
- May 5, 2022
- ⚡️ Improvements
- Remove dependency of deprecated
kIOMasterPortDefault
.
- Remove dependency of deprecated
- 📅 Release date
- Nov 19, 2021
- ⚡️ Improvements
- Reverted the virtual keyboard usage maximum to 255 to avoid ioreg CPU usage issue on macOS 12 Monterey.
- Changed the consumer usage maximum to 768.
- Updated driver version to 1.6.0.
- Reverted the virtual keyboard usage maximum to 255 to avoid ioreg CPU usage issue on macOS 12 Monterey.
- 📅 Release date
- Oct 30, 2021
- ⚡️ Improvements
- Reverted to build with Xcode 13.0 due to Xcode 13.1 generates dext which does not support macOS 11 Big Sur.
- Updated driver version to 1.5.0 to ignore dext in v1.25.0.
- 📅 Release date
- Oct 30, 2021
- ⚡️ Improvements
- Built with Xcode 13.1)
- 📅 Release date
- Oct 20, 2021
- ⚡️ Improvements
- Changed the virtual keyboard usage maximum to 65535 from 255.
- Changed to create virtual devices for each pqrs::karabiner::driverkit::virtual_hid_device_service::client.
- Updated driver version to 1.4.0.
- 📅 Release date
- Sep 25, 2021
- ⚡️ Improvements
- Updated icons of
/Applications/.Karabiner-VirtualHIDDevice-Manager.app
. (Thanks to Kouji TAMURA)
- Updated icons of