stremio-official-addons 1.5.5 → 1.5.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +74 -11
- package/index.json +38 -15
- package/official-addons-v2/README.md +3 -0
- package/official-addons-v2/package.json +2 -1
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -8,31 +8,94 @@ All the stremio official add-ons, in `AddonCollection.load()` format
|
|
|
8
8
|
The `index.js` file is meant to be generated from the output of `AddonCollection.save()`
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
##
|
|
11
|
+
## Changing the official add-ons
|
|
12
12
|
|
|
13
|
-
To
|
|
13
|
+
To change what's contained in this module, you have to change [`scripts/gen.js`](./scripts/gen.js) for **version 1** and [`official-addons-v2/scripts/build.js`](./official-addons-v2/scripts/build.js) for **version 2**.
|
|
14
14
|
|
|
15
|
+
Besides changing this module, you have to update all it's dependant packages, most notably:
|
|
15
16
|
|
|
16
|
-
|
|
17
|
+
* stremio-api-workers: this is the **most important one**, since it will affect `addonsofficialcollection.json` and therefore the addonCollection API, and therefore all running apps should respect it ([`stremio-official-addons@1`][v1-npm-link] package)
|
|
17
18
|
|
|
18
|
-
|
|
19
|
+
* stremio: the desktop/web app ([`stremio-official-addons@1` package][v1-npm-link])
|
|
19
20
|
|
|
20
|
-
|
|
21
|
+
* stremio-rn: the react native app ([`stremio-official-addons@1` package][v1-npm-link])
|
|
22
|
+
|
|
23
|
+
* stremio-web: the new desktop/web app ([`@stremio/stremio-official-addons@2` package][v2-npm-link])
|
|
24
|
+
|
|
25
|
+
* stremio-core: the core for most applications including web, android tv, android, etc. ([`stremio-official-addons@2` crate][v2-crates-io-link])
|
|
26
|
+
|
|
27
|
+
* stremio-api-legacy-shim: this one does not *depend on* this module, and does not include it, but it contains a separate list of official add-ons in `addons/official.js` that is respected by all apps using the legacy endpoints **ARCHIVED**
|
|
28
|
+
|
|
29
|
+
# Release new version
|
|
30
|
+
|
|
31
|
+
## Version 1.XX.XX
|
|
32
|
+
To release a new version for v1 **npm** package you need to:
|
|
33
|
+
|
|
34
|
+
1. Bump [`package.json`](./package.json)
|
|
35
|
+
|
|
36
|
+
1.1. Make sure to update [`package-lock.json`](./package-lock.json):
|
|
37
|
+
|
|
38
|
+
`npm i --package-lock-only`
|
|
39
|
+
|
|
40
|
+
2. Make a new tag
|
|
41
|
+
|
|
42
|
+
`git tag -a v1.XX.XX -m "Tag for releases v1.XX.XX"`
|
|
43
|
+
|
|
44
|
+
3. Push it to the repo
|
|
45
|
+
|
|
46
|
+
`git push -u origin v1.XX.XX`
|
|
21
47
|
|
|
22
|
-
|
|
48
|
+
4. Create a [new release](https://github.com/Stremio/stremio-official-addons/releases) using the version as a title, e.g. `v1.5.6` and automatically generate changes from previous tag.
|
|
23
49
|
|
|
24
|
-
|
|
50
|
+
5. The [`publish` workflow](./.github/workflows/publish.yml) will run the `v1` job and will:
|
|
51
|
+
1. Build [`stremio-official-addons@1`][v1-npm-link] package
|
|
52
|
+
2. Publish the [package on npm][v1-npm-link]
|
|
25
53
|
|
|
26
|
-
|
|
54
|
+
## Version 2.XX.XX
|
|
27
55
|
|
|
28
|
-
|
|
56
|
+
To release a new version for v2 **npm** and **crate** packages you need to:
|
|
57
|
+
1. Bump [`official-addons-v2/package.json`](./official-addons-v2/package.json)
|
|
29
58
|
|
|
30
|
-
|
|
59
|
+
1.1. Make sure to update [`package-lock.json`](./package-lock.json):
|
|
60
|
+
|
|
61
|
+
`npm i --package-lock-only`
|
|
62
|
+
|
|
63
|
+
2. Bump [`official-addons-v2/Cargo.toml`](./official-addons-v2/Cargo.toml)
|
|
64
|
+
|
|
65
|
+
2.1. Make sure to update [`Cargo.lock`](./Cargo.lock):
|
|
66
|
+
|
|
67
|
+
`cargo update -p stremio-official-addons`
|
|
68
|
+
|
|
69
|
+
3. Make a new tag
|
|
70
|
+
|
|
71
|
+
`git tag -a v2.XX.XX -m "Tag for releases v2.XX.XX"`
|
|
72
|
+
|
|
73
|
+
4. Push it to the repo
|
|
74
|
+
|
|
75
|
+
`git push -u origin v2.XX.XX`
|
|
76
|
+
|
|
77
|
+
5. Create a [new release](https://github.com/Stremio/stremio-official-addons/releases) using the version as a title, e.g. `v2.0.12` and automatically generate changes from previous tag.
|
|
78
|
+
|
|
79
|
+
6. The [`publish` workflow](./.github/workflows/publish.yml) will run the `v2` job and will:
|
|
80
|
+
1. Build [`@stremio/stremio-official-addons@2`][v2-npm-link] package
|
|
81
|
+
2. Publish the [package on npm][v2-npm-link]
|
|
82
|
+
3. Publish the [crate on crates.io][v2-crates-io-link]
|
|
83
|
+
|
|
84
|
+
# License
|
|
85
|
+
|
|
86
|
+
Both packages are licensed under the MIT license:
|
|
87
|
+
- [`stremio-official-addons` v1 MIT license](./LICENSE.md)
|
|
88
|
+
- [`stremio-official-addons` v2 MIT license](./official-addons-v2/LICENSE.md)
|
|
89
|
+
|
|
90
|
+
### Contribution
|
|
91
|
+
|
|
92
|
+
Unless you explicitly state otherwise, any contribution intentionally submitted
|
|
93
|
+
for inclusion in the project by you, shall be licensed as MIT,
|
|
94
|
+
without any additional terms or conditions.
|
|
31
95
|
|
|
32
96
|
[v1-npm-link]: https://www.npmjs.com/package/stremio-official-addons
|
|
33
97
|
[stremio-official-addons downloads badge]: https://img.shields.io/npm/dm/stremio-official-addons?label=stremio-official-addons%20downloads&link=https%3A%2F%2Fwww.npmjs.com%2Fpackage%2Fstremio-official-addons
|
|
34
98
|
|
|
35
|
-
|
|
36
99
|
[stremio-official-addons version badge]: https://img.shields.io/npm/v/stremio-official-addons?label=stremio-official-addons&link=https%3A%2F%2Fwww.npmjs.com%2Fpackage%2Fstremio-official-addons
|
|
37
100
|
|
|
38
101
|
[v2-npm-link]: https://www.npmjs.com/package/@stremio/stremio-official-addons
|
package/index.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
{
|
|
3
3
|
"manifest": {
|
|
4
4
|
"id": "com.linvo.cinemeta",
|
|
5
|
-
"version": "3.0.
|
|
5
|
+
"version": "3.0.12",
|
|
6
6
|
"description": "The official addon for movie and series catalogs",
|
|
7
7
|
"name": "Cinemeta",
|
|
8
8
|
"resources": [
|
|
@@ -211,6 +211,7 @@
|
|
|
211
211
|
"type": "movie",
|
|
212
212
|
"id": "year",
|
|
213
213
|
"genres": [
|
|
214
|
+
"2025",
|
|
214
215
|
"2024",
|
|
215
216
|
"2023",
|
|
216
217
|
"2022",
|
|
@@ -321,6 +322,7 @@
|
|
|
321
322
|
{
|
|
322
323
|
"name": "genre",
|
|
323
324
|
"options": [
|
|
325
|
+
"2025",
|
|
324
326
|
"2024",
|
|
325
327
|
"2023",
|
|
326
328
|
"2022",
|
|
@@ -446,6 +448,7 @@
|
|
|
446
448
|
"type": "series",
|
|
447
449
|
"id": "year",
|
|
448
450
|
"genres": [
|
|
451
|
+
"2025",
|
|
449
452
|
"2024",
|
|
450
453
|
"2023",
|
|
451
454
|
"2022",
|
|
@@ -516,6 +519,7 @@
|
|
|
516
519
|
{
|
|
517
520
|
"name": "genre",
|
|
518
521
|
"options": [
|
|
522
|
+
"2025",
|
|
519
523
|
"2024",
|
|
520
524
|
"2023",
|
|
521
525
|
"2022",
|
|
@@ -738,13 +742,30 @@
|
|
|
738
742
|
"lastVideosIds"
|
|
739
743
|
],
|
|
740
744
|
"name": "Last videos"
|
|
745
|
+
},
|
|
746
|
+
{
|
|
747
|
+
"type": "series",
|
|
748
|
+
"id": "calendar-videos",
|
|
749
|
+
"extra": [
|
|
750
|
+
{
|
|
751
|
+
"name": "calendarVideosIds",
|
|
752
|
+
"isRequired": true,
|
|
753
|
+
"optionsLimit": 100
|
|
754
|
+
}
|
|
755
|
+
],
|
|
756
|
+
"extraSupported": [
|
|
757
|
+
"calendarVideosIds"
|
|
758
|
+
],
|
|
759
|
+
"extraRequired": [
|
|
760
|
+
"calendarVideosIds"
|
|
761
|
+
],
|
|
762
|
+
"name": "Calendar videos"
|
|
741
763
|
}
|
|
742
764
|
],
|
|
743
765
|
"behaviorHints": {
|
|
744
766
|
"newEpisodeNotifications": true
|
|
745
767
|
}
|
|
746
768
|
},
|
|
747
|
-
"transportName": "http",
|
|
748
769
|
"transportUrl": "https://v3-cinemeta.strem.io/manifest.json",
|
|
749
770
|
"flags": {
|
|
750
771
|
"official": true,
|
|
@@ -813,10 +834,10 @@
|
|
|
813
834
|
}
|
|
814
835
|
]
|
|
815
836
|
},
|
|
816
|
-
"transportName": "http",
|
|
817
837
|
"transportUrl": "https://v3-channels.strem.io/manifest.json",
|
|
818
838
|
"flags": {
|
|
819
|
-
"official": true
|
|
839
|
+
"official": true,
|
|
840
|
+
"protected": false
|
|
820
841
|
}
|
|
821
842
|
},
|
|
822
843
|
{
|
|
@@ -838,10 +859,10 @@
|
|
|
838
859
|
"tt"
|
|
839
860
|
]
|
|
840
861
|
},
|
|
841
|
-
"transportName": "http",
|
|
842
862
|
"transportUrl": "https://watchhub.strem.io/manifest.json",
|
|
843
863
|
"flags": {
|
|
844
|
-
"official": true
|
|
864
|
+
"official": true,
|
|
865
|
+
"protected": false
|
|
845
866
|
}
|
|
846
867
|
},
|
|
847
868
|
{
|
|
@@ -876,10 +897,10 @@
|
|
|
876
897
|
"tt"
|
|
877
898
|
]
|
|
878
899
|
},
|
|
879
|
-
"transportName": "http",
|
|
880
900
|
"transportUrl": "https://caching.stremio.net/publicdomainmovies.now.sh/manifest.json",
|
|
881
901
|
"flags": {
|
|
882
|
-
"official": true
|
|
902
|
+
"official": true,
|
|
903
|
+
"protected": false
|
|
883
904
|
}
|
|
884
905
|
},
|
|
885
906
|
{
|
|
@@ -901,10 +922,10 @@
|
|
|
901
922
|
],
|
|
902
923
|
"logo": "http://www.strem.io/images/addons/opensubtitles-logo.png"
|
|
903
924
|
},
|
|
904
|
-
"transportName": "http",
|
|
905
925
|
"transportUrl": "https://opensubtitles-v3.strem.io/manifest.json",
|
|
906
926
|
"flags": {
|
|
907
|
-
"official": true
|
|
927
|
+
"official": true,
|
|
928
|
+
"protected": false
|
|
908
929
|
}
|
|
909
930
|
},
|
|
910
931
|
{
|
|
@@ -922,12 +943,15 @@
|
|
|
922
943
|
"movie",
|
|
923
944
|
"other"
|
|
924
945
|
],
|
|
925
|
-
"catalogs": []
|
|
946
|
+
"catalogs": [],
|
|
947
|
+
"behaviorHints": {
|
|
948
|
+
"adult": false
|
|
949
|
+
}
|
|
926
950
|
},
|
|
927
|
-
"transportName": "legacy",
|
|
928
951
|
"transportUrl": "https://opensubtitles.strem.io/stremio/v1",
|
|
929
952
|
"flags": {
|
|
930
|
-
"official": true
|
|
953
|
+
"official": true,
|
|
954
|
+
"protected": false
|
|
931
955
|
}
|
|
932
956
|
},
|
|
933
957
|
{
|
|
@@ -965,11 +989,10 @@
|
|
|
965
989
|
],
|
|
966
990
|
"catalogs": []
|
|
967
991
|
},
|
|
968
|
-
"transportName": "http",
|
|
969
992
|
"transportUrl": "http://127.0.0.1:11470/local-addon/manifest.json",
|
|
970
993
|
"flags": {
|
|
971
994
|
"official": true,
|
|
972
995
|
"protected": true
|
|
973
996
|
}
|
|
974
997
|
}
|
|
975
|
-
]
|
|
998
|
+
]
|
|
@@ -18,6 +18,9 @@ To change what's contained in this module, you have to change `scripts/build.js`
|
|
|
18
18
|
|
|
19
19
|
Besides changing this module, you have to update all it's dependant packages.
|
|
20
20
|
|
|
21
|
+
# License
|
|
22
|
+
|
|
23
|
+
This project is licensed under the [MIT license](./LICENSE.md).
|
|
21
24
|
|
|
22
25
|
[v2-npm-link]: https://www.npmjs.com/package/@stremio/stremio-official-addons
|
|
23
26
|
[downloads badge]: https://img.shields.io/npm/dm/%40stremio/stremio-official-addons?label=%40stremio%2Fstremio-official-addons%20downloads&link=https%3A%2F%2Fwww.npmjs.com%2Fpackage%2F%40stremio%2Fstremio-official-addons
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "stremio-official-addons",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.7",
|
|
4
4
|
"description": "All the stremio official add-ons, in AddonCollection.load() format",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -20,9 +20,10 @@
|
|
|
20
20
|
"bugs": {
|
|
21
21
|
"url": "https://github.com/Stremio/stremio-official-addons/issues"
|
|
22
22
|
},
|
|
23
|
-
"homepage": "https://
|
|
23
|
+
"homepage": "https://stremio.com",
|
|
24
24
|
"devDependencies": {
|
|
25
|
-
"stremio-addon-client": "^1.5.2"
|
|
25
|
+
"stremio-addon-client": "^1.5.2",
|
|
26
|
+
"stremio-local-addon": "https://git@github.com/Stremio/stremio-local-addon#79cd88c32aa26270af8b662fa7bd92b657f6e14f"
|
|
26
27
|
},
|
|
27
28
|
"workspaces": [
|
|
28
29
|
".",
|