From e0498a33724eca4ceb0653a3fe5e3fd024b6c560 Mon Sep 17 00:00:00 2001 From: Lachezar Lechev Date: Mon, 25 Mar 2024 09:15:39 +0200 Subject: [PATCH 1/3] feat(StreamSource): Add Rar and Zip to StreamClicked Signed-off-by: Lachezar Lechev --- src/env.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/env.rs b/src/env.rs index 99c2d3c..2191b97 100644 --- a/src/env.rs +++ b/src/env.rs @@ -140,6 +140,8 @@ impl WebEnv { StreamSource::Url { .. } => "Url", StreamSource::YouTube { .. } => "YouTube", StreamSource::Torrent { .. } => "Torrent", + StreamSource::Rar { .. } => "Rar", + StreamSource::Zip { .. } => "Zip", StreamSource::External { .. } => "External", StreamSource::PlayerFrame { .. } => "PlayerFrame" } From 0eda5ef947171a72550068ca35f2b9f759410d73 Mon Sep 17 00:00:00 2001 From: Lachezar Lechev Date: Mon, 25 Mar 2024 10:23:14 +0200 Subject: [PATCH 2/3] chore: Update core to branch --- Cargo.lock | 6 +++--- Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6aa037f..26ea1a2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1003,7 +1003,7 @@ dependencies = [ [[package]] name = "stremio-core" version = "0.1.0" -source = "git+https://github.com/Stremio/stremio-core?branch=development#aee54a121078b0ff9f94f2f2c09cfead451993e2" +source = "git+https://github.com/Stremio/stremio-core?branch=feat/stream-rar-and-zip-stream-creation#b862dc8ff08ec6b5d786f069f347b09b20893206" dependencies = [ "anyhow", "base64 0.21.2", @@ -1081,7 +1081,7 @@ dependencies = [ [[package]] name = "stremio-derive" version = "0.1.0" -source = "git+https://github.com/Stremio/stremio-core?branch=development#aee54a121078b0ff9f94f2f2c09cfead451993e2" +source = "git+https://github.com/Stremio/stremio-core?branch=feat/stream-rar-and-zip-stream-creation#b862dc8ff08ec6b5d786f069f347b09b20893206" dependencies = [ "case", "proc-macro-crate", @@ -1115,7 +1115,7 @@ dependencies = [ [[package]] name = "stremio-watched-bitfield" version = "0.1.0" -source = "git+https://github.com/Stremio/stremio-core?branch=development#aee54a121078b0ff9f94f2f2c09cfead451993e2" +source = "git+https://github.com/Stremio/stremio-core?branch=feat/stream-rar-and-zip-stream-creation#b862dc8ff08ec6b5d786f069f347b09b20893206" dependencies = [ "base64 0.13.1", "flate2", diff --git a/Cargo.toml b/Cargo.toml index 9ae3e05..c993114 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ lto = true opt-level = 's' [dependencies] -stremio-core = { git = "https://github.com/Stremio/stremio-core", features = ["derive", "analytics"], branch = "development" } +stremio-core = { git = "https://github.com/Stremio/stremio-core", features = ["derive", "analytics"], branch = "feat/stream-rar-and-zip-stream-creation" } serde = { version = "1.0.*", features = ["derive"] } serde_json = "1.0.*" futures = "0.3.*" From 90049ce27813abc26ba86aea5665519f9d750757 Mon Sep 17 00:00:00 2001 From: Tim Date: Mon, 25 Mar 2024 17:34:27 +0100 Subject: [PATCH 3/3] chore: update core --- Cargo.lock | 6 +++--- Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 26ea1a2..743c3b8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1003,7 +1003,7 @@ dependencies = [ [[package]] name = "stremio-core" version = "0.1.0" -source = "git+https://github.com/Stremio/stremio-core?branch=feat/stream-rar-and-zip-stream-creation#b862dc8ff08ec6b5d786f069f347b09b20893206" +source = "git+https://github.com/Stremio/stremio-core?branch=development#5c98d34592db1efffa3b37ebf91d35e70db5ecee" dependencies = [ "anyhow", "base64 0.21.2", @@ -1081,7 +1081,7 @@ dependencies = [ [[package]] name = "stremio-derive" version = "0.1.0" -source = "git+https://github.com/Stremio/stremio-core?branch=feat/stream-rar-and-zip-stream-creation#b862dc8ff08ec6b5d786f069f347b09b20893206" +source = "git+https://github.com/Stremio/stremio-core?branch=development#5c98d34592db1efffa3b37ebf91d35e70db5ecee" dependencies = [ "case", "proc-macro-crate", @@ -1115,7 +1115,7 @@ dependencies = [ [[package]] name = "stremio-watched-bitfield" version = "0.1.0" -source = "git+https://github.com/Stremio/stremio-core?branch=feat/stream-rar-and-zip-stream-creation#b862dc8ff08ec6b5d786f069f347b09b20893206" +source = "git+https://github.com/Stremio/stremio-core?branch=development#5c98d34592db1efffa3b37ebf91d35e70db5ecee" dependencies = [ "base64 0.13.1", "flate2", diff --git a/Cargo.toml b/Cargo.toml index c993114..9ae3e05 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ lto = true opt-level = 's' [dependencies] -stremio-core = { git = "https://github.com/Stremio/stremio-core", features = ["derive", "analytics"], branch = "feat/stream-rar-and-zip-stream-creation" } +stremio-core = { git = "https://github.com/Stremio/stremio-core", features = ["derive", "analytics"], branch = "development" } serde = { version = "1.0.*", features = ["derive"] } serde_json = "1.0.*" futures = "0.3.*"