Skip to content

Commit 158e287

Browse files
committed
rawaccel: Add version 1.7.1
1 parent 7402bf4 commit 158e287

File tree

1 file changed

+66
-0
lines changed

1 file changed

+66
-0
lines changed

bucket/rawaccel.json

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
{
2+
"version": "1.7.1",
3+
"description": "Kernel mode mouse acceleration: Win 10/11 x86-64 driver which allows for the acceleration of mouse input in the raw input stream",
4+
"homepage": "https://github.com/RawAccelOfficial/rawaccel",
5+
"license": "MIT",
6+
"notes": [
7+
"❗ To finish installing the driver: run 'Raw Accel Driver Installer' Scoop shortcut or 'scoop/apps/rawaccel/installer.exe'",
8+
"(requires elevation to install 'rawaccel.sys' system-wide and is thus not enabled in Scoop)",
9+
"Added startup shortcut to the registry 'HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Run\\RawAccel'",
10+
"Anti-Cheat friendly: drivers are signed and run in system space. The app only modifies mouse input by a constant set of formulas, and adds a one-second delay when changing settings in order to mitigate its abuse"
11+
],
12+
"architecture": {
13+
"64bit": {
14+
"url": "https://github.com/RawAccelOfficial/rawaccel/releases/download/v1.7.1/RawAccel_v1.7.1.zip",
15+
"hash": "770fe3ae0919ca3c4d412f58c985eb27f5434decad809f7e8206de4e8852eec4",
16+
"extract_dir": "RawAccel"
17+
}
18+
},
19+
"pre_install": "New-Item -Path \"$dir/settings.json\" -ItemType file | Out-Null",
20+
"post_install": [
21+
"\"$dir/installer.exe\"",
22+
"New-ItemProperty -Path HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Run -Name RawAccel -PropertyType String -Value \"`\"$dir\\writer.exe`\" `\"$dir\\settings.json`\"\""
23+
],
24+
"pre_uninstall": [
25+
"\"$dir/uninstaller.exe\"",
26+
"Remove-ItemProperty -Path HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Run -Name RawAccel"
27+
],
28+
"bin": [
29+
[
30+
"rawaccel.exe",
31+
"rawaccel"
32+
]
33+
],
34+
"shortcuts": [
35+
[
36+
"rawaccel.exe",
37+
"Raw Accel Start¦Configure (GUI)"
38+
],
39+
[
40+
"writer.exe",
41+
"Raw Accel Start (CLI)",
42+
"settings.json"
43+
],
44+
[
45+
"installer.exe",
46+
"Raw Accel Driver Installer"
47+
],
48+
[
49+
"uninstaller.exe",
50+
"Raw Accel Driver Uninstaller"
51+
]
52+
],
53+
"persist": "settings.json",
54+
"checkver": {
55+
"url": "https://github.com/RawAccelOfficial/rawaccel/releases",
56+
"regex": "/v([\\w\\.-]+)\""
57+
},
58+
"autoupdate": {
59+
"architecture": {
60+
"64bit": {
61+
"url": "https://github.com/RawAccelOfficial/rawaccel/releases/download/v$version/RawAccel_v$version.zip",
62+
"extract_dir": "RawAccel"
63+
}
64+
}
65+
}
66+
}

0 commit comments

Comments
 (0)