videojs-hls-boomstream 1.2.57 → 1.2.61
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/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,16 @@
|
|
|
1
1
|
# Changelog of ```videojs-hls-boomstream```
|
|
2
|
+
## 1.2.61
|
|
3
|
+
FIX: Исправлено отображение лишних warning'ов при использовании api плейлиста
|
|
4
|
+
|
|
5
|
+
## 1.2.60
|
|
6
|
+
FIX: Исправлена ошибка в quality-plugin для одиночного видео / стрима
|
|
7
|
+
|
|
8
|
+
## 1.2.59
|
|
9
|
+
FIX: Исправлена работа плейлиста совместно с quality плагином
|
|
10
|
+
|
|
11
|
+
## 1.2.58
|
|
12
|
+
FIX: Исправлен запуск плеера с помощью setSourceConfig
|
|
13
|
+
|
|
2
14
|
## 1.2.57
|
|
3
15
|
FIX: Добавлен метод setSourceConfig в объект плеера (необходимо для работы приложения boomstream)
|
|
4
16
|
|
package/README.md
CHANGED
|
@@ -200,7 +200,7 @@ interface bPlaylist {
|
|
|
200
200
|
disableAutoplay(): void;
|
|
201
201
|
getCurrentAutoplayConfig(): AutoplayConfig;
|
|
202
202
|
getCurrentPlaylist(): BMSPlaylistType;
|
|
203
|
-
|
|
203
|
+
getCurrentMedia(): BMSPlaylistItem;
|
|
204
204
|
}
|
|
205
205
|
```
|
|
206
206
|
**bPlaylist** uses the following types:
|
|
@@ -281,7 +281,7 @@ Below will be a description of the playlist methods:
|
|
|
281
281
|
- ```disableAutoplay(): void;``` - disables autoplay if it was enabled or do nothing.
|
|
282
282
|
- ```getCurrentAutoplayConfig(): AutoplayConfig;``` - returns current autoplay config (type is described above).
|
|
283
283
|
- ```getCurrentPlaylist(): BMSPlaylistType;``` - returns **copy** of current playlist (type is described above).
|
|
284
|
-
- ```
|
|
284
|
+
- ```getCurrentMedia(): BMSPlaylistItem;``` - returns **copy** of current media (type is described above).
|
|
285
285
|
## License
|
|
286
286
|
|
|
287
287
|
MIT. Copyright (c) support@boomstream.com
|