From 2071d6aae745077ba368626c3c452c676809637d Mon Sep 17 00:00:00 2001 From: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com> Date: Wed, 26 Aug 2026 11:08:17 -0400 Subject: [PATCH 1/2] feat(tools): add Virtual HID Driver --- apps/tools/virtual-hid-driver.json | 45 ++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 apps/tools/virtual-hid-driver.json diff --git a/apps/tools/virtual-hid-driver.json b/apps/tools/virtual-hid-driver.json new file mode 100644 index 0000000..4eb838b --- /dev/null +++ b/apps/tools/virtual-hid-driver.json @@ -0,0 +1,45 @@ +{ + "id": "virtual-hid-driver", + "name": "Virtual HID Driver", + "tagline": "User-mode virtual gamepads and Raw Input mice for Windows", + "description": "Virtual HID Driver is the Windows backend for libvirtualhid, enabling compatible applications to create virtual HID gamepads and Raw Input-visible mice through a user-mode UMDF2 driver backed by Windows Virtual HID Framework.", + "category": "tool", + "platforms": [ + "windows" + ], + "icon": "https://raw.githubusercontent.com/LizardByte/libvirtualhid/master/libvirtualhid-256.png", + "links": { + "website": "https://app.lizardbyte.dev/libvirtualhid/virtual-hid-driver/", + "github": "https://github.com/LizardByte/libvirtualhid", + "download": "https://github.com/LizardByte/libvirtualhid/releases/latest", + "documentation": "https://docs.lizardbyte.dev/projects/libvirtualhid" + }, + "official": true, + "tags": [ + "driver", + "virtual-hid", + "gamepad", + "mouse", + "windows" + ], + "compatibility": { + "sunshine": ">=2026.816.192458" + }, + "icons": [ + { + "src": "https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/icons/windows.svg", + "alt": "Windows", + "invert": true + } + ], + "downloads": [ + { + "label": "Download on GitHub", + "url": "https://github.com/LizardByte/libvirtualhid/releases" + }, + { + "label": "Buy a Windows license", + "url": "https://buy.polar.sh/polar_cl_zj6Io5NVukXfZSl97ULtFvImfI5L1jbL2cSnc0Y72Pt" + } + ] +} From a36edc6b9015ec6fe744c0464515ec01648a2cd4 Mon Sep 17 00:00:00 2001 From: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com> Date: Wed, 26 Aug 2026 14:10:35 -0400 Subject: [PATCH 2/2] chore: retrigger workflows