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
4 changes: 4 additions & 0 deletions public/devices/README.md
Original file line numberDiff line numberDiff line change
Expand Up@@ -32,6 +32,10 @@ before including it in a public release package.
URL for the OP1 8K. Confirm redistribution terms before including it in a
public release package.

`teevolution-terra-pro.png` was supplied from Teevolution's Terra PRO Shopify
CDN product render. Confirm redistribution terms before including it in a
public release package.

`razer-viper-mini.webp` was supplied from a Discord attachment URL for the
Razer Viper Mini (wired). Confirm redistribution terms before including it in
a public release package.
Binary file addedpublic/devices/teevolution-terra-pro.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions src/control.ts
Original file line numberDiff line numberDiff line change
Expand Up@@ -376,8 +376,7 @@ const WORKSPACE_TAB_CONTENT: Record<WorkspaceTab, readonly string[]> = {
"#performance-settings", "#performance-settings > .dpi-card", "#polling-card",
"#performance-settings > .setting-card[data-pending-key='lift-off-distance gaming-surface']",
"#pulsar-advanced", "#processing-settings", "#ninjutso-sensor-settings", "#ninjutso-click-settings",
"#teevolution-dpi-lighting", "#egg-filter-settings",
"#egg-polling-settings", "#egg-cpi-settings",
"#egg-filter-settings", "#egg-polling-settings", "#egg-cpi-settings",
],
lighting: ["#lighting-settings", "#lighting-tab-card"],
buttons: [
Expand All@@ -387,7 +386,8 @@ const WORKSPACE_TAB_CONTENT: Record<WorkspaceTab, readonly string[]> = {
profiles: ["#logitech-onboard", "#pulsar-advanced", "#pulsar-pro-settings"],
advanced: [
"#logitech-device-details", "#pulsar-advanced", "#signal-settings", "#sleep-settings",
"#low-power-settings", "#lighting-card", "#finalmouse-settings", ".testing-note", "#device-debug-details",
"#low-power-settings", "#lighting-card", "#teevolution-dpi-lighting", "#finalmouse-settings",
".testing-note", "#device-debug-details",
],
};
const WORKSPACE_HOST_SELECTORS = new Set(["#performance-settings", "#pulsar-advanced", "#lighting-settings"]);
Expand Down
5 changes: 5 additions & 0 deletions src/ui/device-images.ts
Original file line numberDiff line numberDiff line change
Expand Up@@ -34,6 +34,11 @@ const DEVICE_IMAGES: ReadonlyMap<string, string> = new Map([
["093a:e020", "/devices/ninjutso-ten.png"],
["093a:ea01", "/devices/ninjutso-ten.png"],
["093a:eb01", "/devices/ninjutso-ten.png"],
// Teevolution Terra Pro wired / receiver Compx transports.
["3554:f520", "/devices/teevolution-terra-pro.png"],
["3554:f522", "/devices/teevolution-terra-pro.png"],
["3554:f523", "/devices/teevolution-terra-pro.png"],
["3554:f5bb", "/devices/teevolution-terra-pro.png"],
]);

function deviceKey(device: HIDDevice): string {
Expand Down