File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2222- [ main] Fixed ` --volume-ctrl fixed ` not disabling volume control
2323- [ core] Fix default permissions on credentials file and warn user if file is world readable
2424- [ core] Try all resolved addresses for the dealer connection instead of failing after the first one.
25+ - [ core] Allow parsing negative position values send in the ` SeekToCommand ` when seeking relative to current
2526
2627## [ 0.8.0] - 2025-11-10
2728
Original file line number Diff line number Diff line change @@ -108,7 +108,7 @@ pub struct PauseCommand {
108108#[ derive( Clone , Debug , Deserialize ) ]
109109pub struct SeekToCommand {
110110 pub value : u32 ,
111- pub position : u32 ,
111+ pub position : i32 ,
112112 pub logging_params : LoggingParams ,
113113}
114114
You can’t perform that action at this time.
0 commit comments