diff --git a/Cargo.lock b/Cargo.lock index f4ceae0..438dbfe 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2396,7 +2396,7 @@ dependencies = [ [[package]] name = "stremio-core" version = "0.1.0" -source = "git+https://github.com/Stremio/stremio-core?branch=development#645d6ec6d5be197c05fceecda45ba78a8f3b59b2" +source = "git+https://github.com/Stremio/stremio-core?branch=feat/separate-seek-user-action#3fefd55edeed5cd9aecfd14a70d7881e7371dee4" dependencies = [ "anyhow", "base64 0.21.7", @@ -2500,7 +2500,7 @@ dependencies = [ [[package]] name = "stremio-derive" version = "0.1.0" -source = "git+https://github.com/Stremio/stremio-core?branch=development#645d6ec6d5be197c05fceecda45ba78a8f3b59b2" +source = "git+https://github.com/Stremio/stremio-core?branch=feat/separate-seek-user-action#3fefd55edeed5cd9aecfd14a70d7881e7371dee4" dependencies = [ "case", "proc-macro-crate", @@ -2534,7 +2534,7 @@ dependencies = [ [[package]] name = "stremio-watched-bitfield" version = "0.1.0" -source = "git+https://github.com/Stremio/stremio-core?branch=development#645d6ec6d5be197c05fceecda45ba78a8f3b59b2" +source = "git+https://github.com/Stremio/stremio-core?branch=feat/separate-seek-user-action#3fefd55edeed5cd9aecfd14a70d7881e7371dee4" dependencies = [ "base64 0.13.1", "flate2", diff --git a/Cargo.toml b/Cargo.toml index 0e6cd70..2b86b00 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,13 +3,13 @@ resolver = "2" members = ["stremio-core-kotlin", "stremio-core-protobuf"] [workspace.dependencies] -stremio-core = { version = "0.1", git = "https://github.com/Stremio/stremio-core", branch = "development", features = [ +stremio-core = { version = "0.1", git = "https://github.com/Stremio/stremio-core", branch = "feat/separate-seek-user-action", features = [ "derive", "analytics", "env-future-send", ] } # For share UI models -stremio-core-web = { version = "0.47", git = "https://github.com/Stremio/stremio-core", branch = "development", default-features = false } +stremio-core-web = { version = "0.47", git = "https://github.com/Stremio/stremio-core", branch = "feat/separate-seek-user-action", default-features = false } stremio-core-protobuf = { version = "0.1", path = "stremio-core-protobuf", default-features = false } # Protobuf diff --git a/stremio-core-protobuf/proto/stremio/core/runtime/action_player.proto b/stremio-core-protobuf/proto/stremio/core/runtime/action_player.proto index 4525ee2..057c2d2 100644 --- a/stremio-core-protobuf/proto/stremio/core/runtime/action_player.proto +++ b/stremio-core-protobuf/proto/stremio/core/runtime/action_player.proto @@ -11,10 +11,11 @@ message ActionPlayer { oneof args { stremio.core.models.Player.VideoParams video_params_changed = 1; stremio.core.models.Player.StreamState stream_state_changed = 2; - PlayerItemState time_changed = 3; - bool paused_changed = 4; - google.protobuf.Empty next_video = 5; - google.protobuf.Empty ended = 6; + PlayerItemState seek_action = 3; + PlayerItemState time_changed = 4; + bool paused_changed = 5; + google.protobuf.Empty next_video = 6; + google.protobuf.Empty ended = 7; } message PlayerItemState {