Skip to content
Open
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
6 changes: 6 additions & 0 deletions crates/buttplug_client_in_process/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 10.0.4 (2026-06-01)

## Features

- Update internal Buttplug library dependencies

# 10.0.3 (2026-05-31)

## Features
Expand Down
20 changes: 10 additions & 10 deletions crates/buttplug_client_in_process/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "buttplug_client_in_process"
version = "10.0.3"
version = "10.0.4"
authors = ["Nonpolynomial Labs, LLC <kyle@nonpolynomial.com>"]
description = "Buttplug Intimate Hardware Control Library - Core Library"
license = "BSD-3-Clause"
Expand Down Expand Up @@ -34,15 +34,15 @@ wasm = ["buttplug_core/wasm", "buttplug_client/wasm", "buttplug_server/wasm"]
[dependencies]
buttplug_core = { version = "10.0.3", path = "../buttplug_core", default-features = false }
buttplug_client = { version = "10.0.3", path = "../buttplug_client", default-features = false }
buttplug_server = { version = "10.0.3", path = "../buttplug_server", default-features = false }
buttplug_server_device_config = { version = "10.1.0", path = "../buttplug_server_device_config" }
buttplug_server_hwmgr_btleplug = { version = "10.0.3", path = "../buttplug_server_hwmgr_btleplug", optional = true}
buttplug_server_hwmgr_hid = { version = "10.0.3", path = "../buttplug_server_hwmgr_hid", optional = true}
buttplug_server_hwmgr_lovense_connect = { version = "10.0.3", path = "../buttplug_server_hwmgr_lovense_connect", optional = true}
buttplug_server_hwmgr_lovense_dongle = { version = "10.0.3", path = "../buttplug_server_hwmgr_lovense_dongle", optional = true}
buttplug_server_hwmgr_serial = { version = "10.0.3", path = "../buttplug_server_hwmgr_serial", optional = true}
buttplug_server_hwmgr_websocket = { version = "10.0.3", path = "../buttplug_server_hwmgr_websocket", optional = true}
buttplug_server_hwmgr_xinput = { version = "10.0.3", path = "../buttplug_server_hwmgr_xinput", optional = true}
buttplug_server = { version = "10.0.4", path = "../buttplug_server", default-features = false }
buttplug_server_device_config = { version = "10.1.1", path = "../buttplug_server_device_config" }
buttplug_server_hwmgr_btleplug = { version = "10.0.4", path = "../buttplug_server_hwmgr_btleplug", optional = true}
buttplug_server_hwmgr_hid = { version = "10.0.4", path = "../buttplug_server_hwmgr_hid", optional = true}
buttplug_server_hwmgr_lovense_connect = { version = "10.0.4", path = "../buttplug_server_hwmgr_lovense_connect", optional = true}
buttplug_server_hwmgr_lovense_dongle = { version = "10.0.4", path = "../buttplug_server_hwmgr_lovense_dongle", optional = true}
buttplug_server_hwmgr_serial = { version = "10.0.4", path = "../buttplug_server_hwmgr_serial", optional = true}
buttplug_server_hwmgr_websocket = { version = "10.0.4", path = "../buttplug_server_hwmgr_websocket", optional = true}
buttplug_server_hwmgr_xinput = { version = "10.0.4", path = "../buttplug_server_hwmgr_xinput", optional = true}
futures = "0.3.32"
futures-util = "0.3.32"
thiserror = "2.0.18"
Expand Down
11 changes: 11 additions & 0 deletions crates/buttplug_server/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
# 10.0.4 (2026-06-01)

## Features

- Update to device configuration v10.1.1 with additional device support

## Bugfixes

- Add new JoyHub Rosella 2 and Svakom Pulse Lite Neo identifiers
- Add heater support to JoyHub Thermos

# 10.0.3 (2026-05-31)

## Features
Expand Down
4 changes: 2 additions & 2 deletions crates/buttplug_server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "buttplug_server"
version = "10.0.3"
version = "10.0.4"
authors = ["Nonpolynomial Labs, LLC <kyle@nonpolynomial.com>"]
description = "Buttplug Intimate Hardware Control Library - Core Library"
license = "BSD-3-Clause"
Expand All @@ -26,7 +26,7 @@ wasm=["buttplug_core/wasm", "uuid/js", "instant/wasm-bindgen"]

[dependencies]
buttplug_core = { version = "10.0.3", path = "../buttplug_core", default-features = false }
buttplug_server_device_config = { version = "10.1.0", path = "../buttplug_server_device_config" }
buttplug_server_device_config = { version = "10.1.1", path = "../buttplug_server_device_config" }
futures = "0.3.32"
futures-util = "0.3.32"
thiserror = "2.0.18"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -134,4 +134,48 @@ impl ProtocolHandler for SvakomV6 {
])
}
}

fn handle_output_constrict_cmd(
&self,
_feature_index: u32,
feature_id: uuid::Uuid,
level: u32,
) -> Result<Vec<HardwareCommand>, ButtplugDeviceError> {
Ok(vec![
HardwareWriteCmd::new(
&[feature_id],
Endpoint::Tx,
[0x55, 0x09, 0x00, 0x00, level as u8, 0x00, 0x00].to_vec(),
false,
)
.into(),
])
}

fn handle_output_rotate_cmd(
&self,
_feature_index: u32,
feature_id: uuid::Uuid,
speed: i32,
) -> Result<Vec<HardwareCommand>, ButtplugDeviceError> {
let speed = speed.unsigned_abs() as u8;
Ok(vec![
HardwareWriteCmd::new(
&[feature_id],
Endpoint::Tx,
[
0x55,
0x14,
0x00,
0x00,
if speed == 0 { 0x00 } else { 0x01 },
speed,
0x00,
]
.to_vec(),
false,
)
.into(),
])
}
}
28 changes: 28 additions & 0 deletions crates/buttplug_server_device_config/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,31 @@
# 10.1.1 (2026-06-01)

## Features

- Device Support
- Adorime Anal Vibrator 2
- Bestvibe Rotational Vibration
- Honey Play Box Frenzy
- Honey Play Box Noah
- JoyHub Aurora II
- JoyHub Mystor
- JoyHub Phantom
- JoyHub Pixel
- JoyHub Rose Star
- JoyHub Sync Flare
- JoyHub Thelma
- JoyHub Vortus
- JoyHub Vows
- Lelo Boomerang
- Luvmazer Fantasy Nova
- Luvmazer Rose Finger Vibe
- WeVibe Jive Lite

## Bugfixes

- Add new JoyHub Rosella 2 and Svakom Pulse Lite Neo identifiers
- Add heater support to JoyHub Thermos

# 10.1.0 (2026-05-31)

## Features
Expand Down
2 changes: 1 addition & 1 deletion crates/buttplug_server_device_config/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "buttplug_server_device_config"
version = "10.1.0"
version = "10.1.1"
authors = ["Nonpolynomial Labs, LLC <kyle@nonpolynomial.com>"]
description = "Buttplug Intimate Hardware Control Library - Server Device Config Library"
license = "BSD-3-Clause"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22349,7 +22349,8 @@
"Vick Neo 2",
"Iker Neo",
"VA617A-3",
"VA617A-4"
"VA617A-4",
"ST462A"
],
"services": {
"0000ffe0-0000-1000-8000-00805f9b34fb": {
Expand Down Expand Up @@ -22480,6 +22481,51 @@
"VA617A-4"
],
"name": "BeYourLover Naughty Clock Sucker"
},
{
"features": [
{
"id": "e420ade4-22b0-4a72-adfc-18a5e065bb53",
"index": 0,
"output": {
"vibrate": {
"value": [
0,
10
]
}
}
},
{
"id": "9e9ab318-33fc-44e6-96a2-53a1d4f66665",
"index": 1,
"output": {
"constrict": {
"value": [
0,
3
]
}
}
},
{
"id": "513fd726-9f49-4a8c-bf45-67ed2b016688",
"index": 2,
"output": {
"rotate": {
"value": [
0,
10
]
}
}
}
],
"id": "62e5336b-bb9e-4528-9310-5a524c76b779",
"identifier": [
"ST462A"
],
"name": "Svakom Klitty"
}
],
"defaults": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,32 @@ configurations:
- 10
index: 0
id: 1e587721-7e91-44b2-9612-f9cfd88389fc
- identifier:
- ST462A
name: Svakom Klitty
features:
- id: e420ade4-22b0-4a72-adfc-18a5e065bb53
output:
vibrate:
value:
- 0
- 10
index: 0
- id: 9e9ab318-33fc-44e6-96a2-53a1d4f66665
output:
constrict:
value:
- 0
- 3
index: 1
- id: 513fd726-9f49-4a8c-bf45-67ed2b016688
output:
rotate:
value:
- 0
- 10
index: 2
id: 62e5336b-bb9e-4528-9310-5a524c76b779
communication:
- btle:
names:
Expand All @@ -89,6 +115,7 @@ communication:
- Iker Neo
- VA617A-3
- VA617A-4
- ST462A
services:
0000ffe0-0000-1000-8000-00805f9b34fb:
tx: 0000ffe1-0000-1000-8000-00805f9b34fb
Expand Down
6 changes: 6 additions & 0 deletions crates/buttplug_server_hwmgr_btleplug/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 10.0.4 (2026-06-01)

## Features

- Update internal Buttplug library dependencies

# 10.0.3 (2026-05-31)

## Bugfixes
Expand Down
6 changes: 3 additions & 3 deletions crates/buttplug_server_hwmgr_btleplug/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "buttplug_server_hwmgr_btleplug"
version = "10.0.3"
version = "10.0.4"
authors = ["Nonpolynomial Labs, LLC <kyle@nonpolynomial.com>"]
description = "Buttplug Intimate Hardware Control Library - Core Library"
license = "BSD-3-Clause"
Expand All @@ -21,8 +21,8 @@ doc = true

[dependencies]
buttplug_core = { version = "10.0.3", path = "../buttplug_core", default-features = false }
buttplug_server = { version = "10.0.3", path = "../buttplug_server", default-features = false }
buttplug_server_device_config = { version = "10.1.0", path = "../buttplug_server_device_config" }
buttplug_server = { version = "10.0.4", path = "../buttplug_server", default-features = false }
buttplug_server_device_config = { version = "10.1.1", path = "../buttplug_server_device_config" }
futures = "0.3.32"
futures-util = "0.3.32"
log = "0.4.29"
Expand Down
6 changes: 6 additions & 0 deletions crates/buttplug_server_hwmgr_hid/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 10.0.4 (2026-06-01)

## Features

- Update internal Buttplug library dependencies

# 10.0.3 (2026-05-31)

## Bugfixes
Expand Down
6 changes: 3 additions & 3 deletions crates/buttplug_server_hwmgr_hid/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "buttplug_server_hwmgr_hid"
version = "10.0.3"
version = "10.0.4"
authors = ["Nonpolynomial Labs, LLC <kyle@nonpolynomial.com>"]
description = "Buttplug Intimate Hardware Control Library - Core Library"
license = "BSD-3-Clause"
Expand All @@ -21,8 +21,8 @@ doc = true

[dependencies]
buttplug_core = { version = "10.0.3", path = "../buttplug_core", default-features = false }
buttplug_server = { version = "10.0.3", path = "../buttplug_server", default-features = false }
buttplug_server_device_config = { version = "10.1.0", path = "../buttplug_server_device_config" }
buttplug_server = { version = "10.0.4", path = "../buttplug_server", default-features = false }
buttplug_server_device_config = { version = "10.1.1", path = "../buttplug_server_device_config" }
futures = "0.3.32"
futures-util = "0.3.32"
log = "0.4.29"
Expand Down
6 changes: 6 additions & 0 deletions crates/buttplug_server_hwmgr_lovense_connect/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 10.0.4 (2026-06-01)

## Features

- Update internal Buttplug library dependencies

# 10.0.3 (2026-05-31)

## Features
Expand Down
6 changes: 3 additions & 3 deletions crates/buttplug_server_hwmgr_lovense_connect/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "buttplug_server_hwmgr_lovense_connect"
version = "10.0.3"
version = "10.0.4"
authors = ["Nonpolynomial Labs, LLC <kyle@nonpolynomial.com>"]
description = "Buttplug Intimate Hardware Control Library - Core Library"
license = "BSD-3-Clause"
Expand Down Expand Up @@ -28,8 +28,8 @@ features = ["default", "unstable"]

[dependencies]
buttplug_core = { version = "10.0.3", path = "../buttplug_core", default-features = false }
buttplug_server = { version = "10.0.3", path = "../buttplug_server", default-features = false }
buttplug_server_device_config = { version = "10.1.0", path = "../buttplug_server_device_config" }
buttplug_server = { version = "10.0.4", path = "../buttplug_server", default-features = false }
buttplug_server_device_config = { version = "10.1.1", path = "../buttplug_server_device_config" }
futures = "0.3.32"
futures-util = "0.3.32"
log = "0.4.29"
Expand Down
6 changes: 6 additions & 0 deletions crates/buttplug_server_hwmgr_lovense_dongle/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 10.0.4 (2026-06-01)

## Features

- Update internal Buttplug library dependencies

# 10.0.3 (2026-05-31)

## Bugfixes
Expand Down
6 changes: 3 additions & 3 deletions crates/buttplug_server_hwmgr_lovense_dongle/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "buttplug_server_hwmgr_lovense_dongle"
version = "10.0.3"
version = "10.0.4"
authors = ["Nonpolynomial Labs, LLC <kyle@nonpolynomial.com>"]
description = "Buttplug Intimate Hardware Control Library - Core Library"
license = "BSD-3-Clause"
Expand All @@ -21,8 +21,8 @@ doc = true

[dependencies]
buttplug_core = { version = "10.0.3", path = "../buttplug_core", default-features = false }
buttplug_server = { version = "10.0.3", path = "../buttplug_server", default-features = false }
buttplug_server_device_config = { version = "10.1.0", path = "../buttplug_server_device_config" }
buttplug_server = { version = "10.0.4", path = "../buttplug_server", default-features = false }
buttplug_server_device_config = { version = "10.1.1", path = "../buttplug_server_device_config" }
futures = "0.3.32"
futures-util = "0.3.32"
log = "0.4.29"
Expand Down
6 changes: 6 additions & 0 deletions crates/buttplug_server_hwmgr_serial/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 10.0.4 (2026-06-01)

## Features

- Update internal Buttplug library dependencies

# 10.0.3 (2026-05-31)

## Features
Expand Down
Loading