diff --git a/grapple-hook/package.json b/grapple-hook/package.json index 50149a0..a4ace2d 100644 --- a/grapple-hook/package.json +++ b/grapple-hook/package.json @@ -1,7 +1,7 @@ { "name": "grapple-hook", "private": true, - "version": "24.2.0", + "version": "24.2.1", "type": "module", "scripts": { "dev": "vite", diff --git a/grapple-hook/schema.json b/grapple-hook/schema.json index 185aa01..465c356 100644 --- a/grapple-hook/schema.json +++ b/grapple-hook/schema.json @@ -1030,7 +1030,6 @@ "type": "object", "required": [ "channel", - "enabled", "voltage" ], "properties": { @@ -1039,9 +1038,6 @@ "format": "uint8", "minimum": 0.0 }, - "enabled": { - "type": "boolean" - }, "voltage": { "type": "integer", "format": "uint16", diff --git a/grapple-hook/src-tauri/Cargo.lock b/grapple-hook/src-tauri/Cargo.lock index 4405bca..b4c4291 100644 --- a/grapple-hook/src-tauri/Cargo.lock +++ b/grapple-hook/src-tauri/Cargo.lock @@ -1181,9 +1181,9 @@ dependencies = [ [[package]] name = "grapple-frc-msgs" -version = "2024.4.2" +version = "2024.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "724de441e12f0bcb25cf2dfa8b055e9125c81552bf0b1b9ba0674de4a54bfa2f" +checksum = "0c1a476b5093168fb76020776e1fda3e8cff83d2f7b7bb21127206ac90277e37" dependencies = [ "anyhow", "binmarshal", @@ -1196,7 +1196,7 @@ dependencies = [ [[package]] name = "grapple-hook" -version = "24.2.0" +version = "24.2.1" dependencies = [ "anyhow", "async-trait", diff --git a/grapple-hook/src-tauri/Cargo.toml b/grapple-hook/src-tauri/Cargo.toml index 2f7e17d..e6625cc 100644 --- a/grapple-hook/src-tauri/Cargo.toml +++ b/grapple-hook/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "grapple-hook" -version = "24.2.0" +version = "24.2.1" description = "Configuration Tool for Grapple Hardware" authors = ["Jaci Brunning "] license = "GPLv3" diff --git a/grapple-hook/src-tauri/tauri.conf.json b/grapple-hook/src-tauri/tauri.conf.json index e0a19b3..ea0fef1 100644 --- a/grapple-hook/src-tauri/tauri.conf.json +++ b/grapple-hook/src-tauri/tauri.conf.json @@ -8,7 +8,7 @@ }, "package": { "productName": "GrappleHook", - "version": "24.2.0" + "version": "24.2.1" }, "tauri": { "allowlist": { diff --git a/grapple-hook/src/devices/Mitocandria.tsx b/grapple-hook/src/devices/Mitocandria.tsx index 2dab8f8..5e58377 100644 --- a/grapple-hook/src/devices/Mitocandria.tsx +++ b/grapple-hook/src/devices/Mitocandria.tsx @@ -68,7 +68,6 @@ export default function MitocandriaComponent(props: MitocandriaProps) { { channel: { channel: channel, - enabled: false, voltage: n * 1000.0 } } diff --git a/grapple-hook/src/schema.d.ts b/grapple-hook/src/schema.d.ts index 7b0c58e..c8f9d36 100644 --- a/grapple-hook/src/schema.d.ts +++ b/grapple-hook/src/schema.d.ts @@ -403,7 +403,6 @@ export interface MitocandriaSwitchableChannelRequest { } export interface MitocandriaAdjustableChannelRequest { channel: number; - enabled: boolean; voltage: number; } export interface MitocandriaStatus {