Skip to content

Commit

Permalink
feat(stremio-core-protobuf): Player - SeekAction
Browse files Browse the repository at this point in the history
Signed-off-by: Lachezar Lechev <lachezar@ambire.com>
  • Loading branch information
elpiel committed Nov 18, 2024
1 parent e80b435 commit acf402a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit acf402a

Please sign in to comment.