-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #569 from Dygmalab/newFocusArch
Bazecor 1.4.0
- Loading branch information
Showing
343 changed files
with
26,863 additions
and
11,221 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
Bazecor | ||
colormap | ||
Dygma | ||
keymap | ||
superkeys | ||
Underglow | ||
underglow |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
{"rule":"MAC_OS","sentence":"^\\QBazecor is supported on all three major operating systems, we test our releases on Windows 10, MacOS, and Ubuntu LTS.\\E$"} | ||
{"rule":"WHITESPACE_RULE","sentence":"^\\QWindows \\E(?:Dummy|Ina|Jimmy-)[0-9]+\\Q\nmacOS \\E(?:Dummy|Ina|Jimmy-)[0-9]+\\Q\nmacOS x64 \\E(?:Dummy|Ina|Jimmy-)[0-9]+\\Q\nmacOS arm64 \\E(?:Dummy|Ina|Jimmy-)[0-9]+\\Q\nLinux \\E(?:Dummy|Ina|Jimmy-)[0-9]+$"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"$schema": "https://ui.shadcn.com/schema.json", | ||
"style": "default", | ||
"rsc": false, | ||
"tsx": true, | ||
"tailwind": { | ||
"config": "tailwind.config.js", | ||
"css": "src/renderer/theme/styles.css", | ||
"baseColor": "slate", | ||
"cssVariables": false, | ||
"prefix": "" | ||
}, | ||
"aliases": { | ||
"components": "@Renderer/components", | ||
"utils": "@Renderer/utils" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// export default { | ||
// plugins: { | ||
// "tailwindcss/nesting": {}, | ||
// tailwindcss: {}, | ||
// autoprefixer: {}, | ||
// }, | ||
// }; | ||
|
||
module.exports = { | ||
plugins: { | ||
"tailwindcss/nesting": {}, | ||
tailwindcss: {}, | ||
autoprefixer: {}, | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export type ConnectedDevice = unknown; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
export type ConnnectedDeviceCommsHandler = (dataReceived: string) => void; | ||
export type ErrorHandler = (err: Error) => void; | ||
|
||
export interface ConnectedDeviceComms { | ||
sendData: (data: string, receiverHandler: ConnnectedDeviceCommsHandler, errorHandler: ErrorHandler) => Promise<void>; | ||
sendRawData: (data: string, receiverHandler: ConnnectedDeviceCommsHandler, errorHandler: ErrorHandler) => Promise<void>; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import { ConnectedDevice } from "./ConnectedDevice"; | ||
|
||
export interface DeviceManager { | ||
find: () => Promise<ConnectedDevice[]>; | ||
open: (index: number) => Promise<ConnectedDevice>; | ||
close: (index: number) => void; | ||
isDeviceAccessible: (index: number) => boolean; | ||
isDeviceSupported: (index: number) => boolean; | ||
} |
Oops, something went wrong.