Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/update_config_branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ jobs:
steps:
- uses: actions/checkout@v6
- name: Create pull request
run: gh pr create --base v4.x --title "Bump v4.x branch on release publish" --body ""
run: gh pr create --base v4.x --head main --title "Bump v4.x branch on release publish" --body ""
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7 changes: 7 additions & 0 deletions config/device_identifiers.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,12 @@
"friendly_name": "Wacom Driver Downloader",
"device_desc": "Wacom Driver Downloader",
"manufacturer": "Wacom Technology"
},
{
"friendly_name": "Virtual HID Minidriver",
"device_desc": "Virtual HID Minidriver",
"manufacturer": "GSPY",
"hardware_id": "VID_(5543|28BD|256C|0A12|172F|0458|08CA|0483|0B57|2FEB|0543|056A|0531|2D80)",
"class_uuid": "6264e7e6-b95c-4033-908f-86e7ab9e2555"
}
]
28 changes: 28 additions & 0 deletions config/driver_identifiers.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,22 @@
"provider": "FTDI",
"class": "4d36e978-e325-11ce-bfc1-08002be10318"
},
{
"friendly_name": "WinUSB (Gaomon)",
"original_name": "gaomon_tablet_\\(interface_\\d\\+).inf",
"provider": "libwdi",
"class": "88bae032-5a81-49f0-bc3d-a4ff138216d6"
},
{
"friendly_name": "Generic LibUsbK Driver",
"original_name": "tablet[ _]monitor[ _]\\([Ii]nterface[ _]\\d+\\)\\.inf",
"provider": "(libusbK|libusb-win32)"
},
{
"friendly_name": "Intuos LibUsbK Driver",
"original_name": "intuos.*\\.inf",
"provider": "(libusbK|libusb-win32)"
},
{
"friendly_name": "Hanvon Ugee Mouse Filter",
"original_name": "hanvonugeemfilter\\.inf",
Expand Down Expand Up @@ -185,12 +201,24 @@
"provider": "Wacom",
"class": "745a17a0-74d3-11d0-b6fe-00a0c90f57da"
},
{
"friendly_name": "Wacom Router",
"original_name": "wachidrouter_re\\.inf",
"provider": "Wacom",
"class": "745a17a0-74d3-11d0-b6fe-00a0c90f57da"
},
{
"friendly_name": "Wacom Virtual HID",
"original_name": "WacomVHid\\.inf",
"provider": "Wacom",
"class": "745a17a0-74d3-11d0-b6fe-00a0c90f57da"
},
{
"friendly_name": "Wacom Windows Update Helper App Service",
"original_name": "wacomwuhaservicecom\\.inf",
"provider": "Wacom Technology",
"class": "5c4c3332-344d-483c-8739-259e934c9cc8"
},
{
"friendly_name": "Wacom WUSD",
"original_name": "wacom_wusd\\.inf",
Expand Down
1 change: 1 addition & 0 deletions src/services/interest.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ lazy_static! {
"XenceLabs",
"XENX",
"XP[-| ]?Pen",
"GSPY",
])
};
static ref COUNTER_INTEREST_CACHE: HashMap::<&'static str, Regex> =
Expand Down