Skip to content

Commit a5cfc6e

Browse files
authored
Merge branch 'main' into add-gaomon-winusb-var
2 parents b598254 + e0cd1cb commit a5cfc6e

6 files changed

Lines changed: 33 additions & 6 deletions

File tree

.github/workflows/default_release_notes.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,3 @@
33
- Download `tabletdrivercleanup.zip`.
44
- Extract the contents of the zip.
55
- Run `tabletdrivercleanup.exe` as administrator.
6-
7-
## What's Changed
8-

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- "*"
77

88
jobs:
9-
build-win:
9+
build-win-and-release:
1010
runs-on: windows-latest
1111
permissions:
1212
contents: write
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Update Config Branch
2+
3+
on:
4+
workflow_dispatch:
5+
release:
6+
types: [published]
7+
8+
jobs:
9+
create-pr:
10+
runs-on: ubuntu-latest
11+
permissions:
12+
contents: write
13+
pull-requests: write
14+
steps:
15+
- uses: actions/checkout@v6
16+
- name: Create pull request
17+
run: gh pr create --base v4.x --title "Bump v4.x branch on release publish" --body ""
18+
env:
19+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ A CLI program that cleanly uninstalls tablet drivers.
44

55
## Instructions
66

7-
- Download `tabletdrivercleanup.zip` from [latest release](https://github.com/X9VoiD/TabletDriverCleanup/releases).
7+
- Download `tabletdrivercleanup.zip` from [latest release](https://github.com/OpenTabletDriver/TabletDriverCleanup/releases).
88
- Extract the contents of the zip file.
99
- Run as administrator.
1010

config/driver_identifiers.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,11 @@
2727
"provider": "libwdi",
2828
"class": "88bae032-5a81-49f0-bc3d-a4ff138216d6"
2929
},
30+
{
31+
"friendly_name": "Generic LibUsbK Driver",
32+
"original_name": "tablet[ _]monitor[ _]\\([Ii]nterface[ _]\\d+\\)\\.inf",
33+
"provider": "(libusbK|libusb-win32)"
34+
},
3035
{
3136
"friendly_name": "Hanvon Ugee Mouse Filter",
3237
"original_name": "hanvonugeemfilter\\.inf",
@@ -197,6 +202,12 @@
197202
"provider": "Wacom",
198203
"class": "745a17a0-74d3-11d0-b6fe-00a0c90f57da"
199204
},
205+
{
206+
"friendly_name": "Wacom Windows Update Helper App Service",
207+
"original_name": "wacomwuhaservicecom\\.inf",
208+
"provider": "Wacom Technology",
209+
"class": "5c4c3332-344d-483c-8739-259e934c9cc8"
210+
},
200211
{
201212
"friendly_name": "Wacom WUSD",
202213
"original_name": "wacom_wusd\\.inf",

src/services/identifiers.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ async fn get_resource_online(
134134
bail!(RetrievalErr::Disallowed("online"))
135135
}
136136

137-
let base_url = "https://raw.githubusercontent.com/X9VoiD/TabletDriverCleanup";
137+
let base_url = "https://raw.githubusercontent.com/OpenTabletDriver/TabletDriverCleanup";
138138
let git_ref = "v4.x";
139139
let url = format!("{base_url}/{git_ref}/config/{identifier}");
140140

0 commit comments

Comments
 (0)