nuvio-tizen 1.8.0 → 1.8.1
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 +11 -9
- package/css/style.css +2 -2
- package/index.html +9 -9
- package/js/player.js +1 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -21,15 +21,17 @@ core behaviour, targeting 2017 Samsung TVs (Tizen 3.0, ~Chromium 47).
|
|
|
21
21
|
- **Stream aggregation** across all installed stream addons, each source showing
|
|
22
22
|
**size + languages/description** (from `behaviorHints.videoSize` and the addon's own text,
|
|
23
23
|
e.g. MediaFusion / Torrentio).
|
|
24
|
-
- **
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
24
|
+
- **Player menu** (press **DOWN**): *Configure subtitles* (Language → tracks, Size, Style),
|
|
25
|
+
*Audio track* (when >1), *Select source* (2-line, switches mid-playback keeping position),
|
|
26
|
+
*Playback* (Restart, Rewind 10′/5′, Forward 5′/10′). Transport keys
|
|
27
|
+
(Play/Pause/Stop/FF/Rew) keep working even while the menu is open.
|
|
28
|
+
- **Contextual bar** (press **UP**): Play/Pause · Restart · Previous · Next (Prev/Next for series).
|
|
29
|
+
- **Skip Intro / Recap / Credits** via [TheIntroDB](https://theintrodb.org) — transient buttons
|
|
30
|
+
appear when a segment is reached; Credits offers *Skip → Next* or *Watch Credits*.
|
|
31
|
+
- **Watched tracking**: passing the credits threshold marks an item watched and queues the
|
|
32
|
+
next episode into Continue Watching; **hold OK on a series episode** to toggle watched.
|
|
33
|
+
- **Settings** organised into *Addons*, *Integrations* (TMDB v3 & MDBList API keys),
|
|
34
|
+
*Subtitle Options*, *Display* (poster **portrait/landscape**).
|
|
33
35
|
- **Subtitles from addons**: fetched per title/episode, SRT + VTT parsed and rendered as a
|
|
34
36
|
timed overlay; press **UP** during playback to pick a track (or turn them Off).
|
|
35
37
|
Configurable in Settings: **default language** (auto-loads a matching track),
|
package/css/style.css
CHANGED
|
@@ -146,12 +146,12 @@ html, body {
|
|
|
146
146
|
.search-empty { font-size: 24px; color: #8b93a5; margin-top: 30px; }
|
|
147
147
|
|
|
148
148
|
/* --- Contextual quick-action bar (UP) --- */
|
|
149
|
-
#player-bar { position: absolute; left: 0; right: 0; bottom:
|
|
149
|
+
#player-bar { position: absolute; left: 0; right: 0; bottom: 250px; z-index: 22; text-align: center; }
|
|
150
150
|
#player-bar .pb-btn { display: inline-block; margin: 0 12px; padding: 16px 34px; font-size: 26px; border-radius: 40px; background: rgba(22,27,38,0.95); border: 4px solid transparent; color: #e6e9ef; }
|
|
151
151
|
#player-bar .pb-btn.sel { background: #818cf8; color: #0e1117; border-color: #fff; }
|
|
152
152
|
|
|
153
153
|
/* --- Skip intro/recap/credits prompt --- */
|
|
154
|
-
#skip-prompt { position: absolute; right: 60px; bottom:
|
|
154
|
+
#skip-prompt { position: absolute; right: 60px; bottom: 250px; z-index: 24; text-align: right; }
|
|
155
155
|
#skip-prompt .skip-btn { display: inline-block; margin-left: 12px; padding: 16px 30px; font-size: 26px; font-weight: bold; border-radius: 10px; background: rgba(22,27,38,0.96); border: 4px solid #818cf8; color: #e6e9ef; }
|
|
156
156
|
#skip-prompt .skip-btn.sel { background: #818cf8; color: #0e1117; border-color: #fff; }
|
|
157
157
|
|
package/index.html
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
<meta charset="utf-8">
|
|
5
5
|
<meta name="viewport" content="width=1920, height=1080, user-scalable=no">
|
|
6
6
|
<title>Nuvio</title>
|
|
7
|
-
<link rel="stylesheet" href="css/style.css?v=1.8.
|
|
7
|
+
<link rel="stylesheet" href="css/style.css?v=1.8.1">
|
|
8
8
|
</head>
|
|
9
9
|
<body>
|
|
10
10
|
<!-- AVPlay video plane (Tizen). Sits behind the UI; shown only during playback. -->
|
|
@@ -45,13 +45,13 @@
|
|
|
45
45
|
|
|
46
46
|
<!-- Load order matters: polyfills -> util -> data -> input -> player -> views -> app -->
|
|
47
47
|
<!-- ?v= busts the TV webview cache on every release (keep in sync with package.json) -->
|
|
48
|
-
<script src="js/polyfills.js?v=1.8.
|
|
49
|
-
<script src="js/util.js?v=1.8.
|
|
50
|
-
<script src="js/stremio.js?v=1.8.
|
|
51
|
-
<script src="js/keys.js?v=1.8.
|
|
52
|
-
<script src="js/focus.js?v=1.8.
|
|
53
|
-
<script src="js/player.js?v=1.8.
|
|
54
|
-
<script src="js/views.js?v=1.8.
|
|
55
|
-
<script src="js/app.js?v=1.8.
|
|
48
|
+
<script src="js/polyfills.js?v=1.8.1"></script>
|
|
49
|
+
<script src="js/util.js?v=1.8.1"></script>
|
|
50
|
+
<script src="js/stremio.js?v=1.8.1"></script>
|
|
51
|
+
<script src="js/keys.js?v=1.8.1"></script>
|
|
52
|
+
<script src="js/focus.js?v=1.8.1"></script>
|
|
53
|
+
<script src="js/player.js?v=1.8.1"></script>
|
|
54
|
+
<script src="js/views.js?v=1.8.1"></script>
|
|
55
|
+
<script src="js/app.js?v=1.8.1"></script>
|
|
56
56
|
</body>
|
|
57
57
|
</html>
|
package/js/player.js
CHANGED
|
@@ -715,6 +715,7 @@ var Player = (function () {
|
|
|
715
715
|
}
|
|
716
716
|
|
|
717
717
|
function handleKey(action) {
|
|
718
|
+
if (!_active) { return true; }
|
|
718
719
|
// Dedicated transport keys ALWAYS control playback, even with an overlay open (#9).
|
|
719
720
|
switch (action) {
|
|
720
721
|
case 'PLAY': play_(); if (_barOpen) { renderBar(); } showOSD(false); return true;
|