ravnur-player-public 3.4.13 → 3.5.10
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 +27 -0
- package/README.md +20 -2
- package/dist/RavnurMediaPlayer.min.js +1 -1
- package/dist/cdn/RavnurMediaPlayer.min.js +1 -1
- package/package.json +8 -2
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
+
|
|
8
|
+
## [3.5.10] - 2026-05-12
|
|
9
|
+
|
|
10
|
+
This release introduces a completely new, polished visual design while keeping
|
|
11
|
+
the overall player structure familiar.
|
|
12
|
+
|
|
13
|
+
### Added
|
|
14
|
+
|
|
15
|
+
- New `showTimeCounter` option to control visibility of the time counter in the progress bar.
|
|
16
|
+
- Caption language notification: when the active captions track changes, a short overlay shows the selected language and a hint to open settings.
|
|
17
|
+
- New captions toggle button.
|
|
18
|
+
- Mobile wrapper for the extensions bar so the layout adapts correctly on small viewports, controlled by the new `hasMobileWrapper` option (defaults to `true`).
|
|
19
|
+
|
|
20
|
+
### Changed
|
|
21
|
+
|
|
22
|
+
- Refreshed visual design across controls, badges, menus, and overlays.
|
|
23
|
+
|
|
24
|
+
### Fixed
|
|
25
|
+
|
|
26
|
+
- Captions improvements and bug fixes.
|
|
27
|
+
- General playback, layout bug fixes.
|
package/README.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
-
|
|
1
|
+
# Ravnur Media Player
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
A flexible, video player supporting HLS, DASH, DRM, live streams, captions, playlists, and more. Full documentation is available at **[ravplayer.ravnur.com](https://ravplayer.ravnur.com/)**.
|
|
4
|
+
|
|
5
|
+
### Quick Links
|
|
6
|
+
|
|
7
|
+
- 🎮 [Playground](https://ravplayer.ravnur.com/) — Experiment with options and sources in real time
|
|
8
|
+
- 🚀 [Installation](https://ravplayer.ravnur.com/getting-started/installation) — Get up and running
|
|
9
|
+
- 📘 [Basic Usage](https://ravplayer.ravnur.com/examples/basic-usage) — A complete walkthrough to get started
|
|
10
|
+
- 📋 [Changelog](./CHANGELOG.md) — Release notes and version history
|
|
11
|
+
|
|
12
|
+
### API Reference
|
|
13
|
+
|
|
14
|
+
- [Options](https://ravplayer.ravnur.com/api/options)
|
|
15
|
+
- [Events](https://ravplayer.ravnur.com/api/events)
|
|
16
|
+
- [Methods](https://ravplayer.ravnur.com/api/methods)
|
|
17
|
+
- [Types](https://ravplayer.ravnur.com/api/types)
|
|
18
|
+
|
|
19
|
+
---
|
|
20
|
+
|
|
21
|
+
Powered by [Ravnur](https://www.ravnur.com/)
|