diff options
Diffstat (limited to 'client/src')
5 files changed, 9 insertions, 7 deletions
diff --git a/client/src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html b/client/src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html index 84a793ae4..b7fac176d 100644 --- a/client/src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html +++ b/client/src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html | |||
@@ -100,7 +100,7 @@ | |||
100 | <div class="peertube-select-container"> | 100 | <div class="peertube-select-container"> |
101 | <select id="broadcastMessageLevel" formControlName="level" class="form-control"> | 101 | <select id="broadcastMessageLevel" formControlName="level" class="form-control"> |
102 | <option value="info">info</option> | 102 | <option value="info">info</option> |
103 | <option value="warning">warning</option> | 103 | <option value="warn">warning</option> |
104 | <option value="error">error</option> | 104 | <option value="error">error</option> |
105 | </select> | 105 | </select> |
106 | </div> | 106 | </div> |
diff --git a/client/src/app/shared/shared-actor-image-edit/actor-banner-edit.component.ts b/client/src/app/shared/shared-actor-image-edit/actor-banner-edit.component.ts index 8c12d3c4c..08372d8ad 100644 --- a/client/src/app/shared/shared-actor-image-edit/actor-banner-edit.component.ts +++ b/client/src/app/shared/shared-actor-image-edit/actor-banner-edit.component.ts | |||
@@ -42,7 +42,7 @@ export class ActorBannerEditComponent implements OnInit { | |||
42 | this.bannerExtensions = config.banner.file.extensions.join(', ') | 42 | this.bannerExtensions = config.banner.file.extensions.join(', ') |
43 | 43 | ||
44 | // tslint:disable:max-line-length | 44 | // tslint:disable:max-line-length |
45 | this.bannerFormat = $localize`ratio 6/1, recommended size: 1600x266, max size: ${getBytes(this.maxBannerSize)}, extensions: ${this.bannerExtensions}` | 45 | this.bannerFormat = $localize`ratio 6/1, recommended size: 1920x317, max size: ${getBytes(this.maxBannerSize)}, extensions: ${this.bannerExtensions}` |
46 | }) | 46 | }) |
47 | } | 47 | } |
48 | 48 | ||
diff --git a/client/src/assets/player/stats/stats-card.ts b/client/src/assets/player/stats/stats-card.ts index d9f0d2fe9..a93f59506 100644 --- a/client/src/assets/player/stats/stats-card.ts +++ b/client/src/assets/player/stats/stats-card.ts | |||
@@ -89,9 +89,9 @@ class StatsCard extends Component { | |||
89 | this.container.style.display = 'block' | 89 | this.container.style.display = 'block' |
90 | this.updateInterval = setInterval(async () => { | 90 | this.updateInterval = setInterval(async () => { |
91 | try { | 91 | try { |
92 | const options = this.mode === 'webtorrent' | 92 | const options = this.mode === 'p2p-media-loader' |
93 | ? await this.buildWebTorrentOptions() | 93 | ? await this.buildHLSOptions() |
94 | : await this.buildHLSOptions() | 94 | : await this.buildWebTorrentOptions() // Default |
95 | 95 | ||
96 | this.list.innerHTML = this.getListTemplate(options) | 96 | this.list.innerHTML = this.getListTemplate(options) |
97 | } catch (err) { | 97 | } catch (err) { |
@@ -212,7 +212,7 @@ class StatsCard extends Component { | |||
212 | : undefined | 212 | : undefined |
213 | 213 | ||
214 | return ` | 214 | return ` |
215 | ${this.buildElement(player.localize('Player mode'), this.options_.mode)} | 215 | ${this.buildElement(player.localize('Player mode'), this.mode || 'HTTP')} |
216 | 216 | ||
217 | ${this.buildElement(player.localize('Video UUID'), this.options_.videoUUID)} | 217 | ${this.buildElement(player.localize('Video UUID'), this.options_.videoUUID)} |
218 | 218 | ||
diff --git a/client/src/assets/player/webtorrent/webtorrent-plugin.ts b/client/src/assets/player/webtorrent/webtorrent-plugin.ts index 6f5fbe4c9..e27a16390 100644 --- a/client/src/assets/player/webtorrent/webtorrent-plugin.ts +++ b/client/src/assets/player/webtorrent/webtorrent-plugin.ts | |||
@@ -557,7 +557,8 @@ class WebTorrentPlugin extends Plugin { | |||
557 | private pickAverageVideoFile () { | 557 | private pickAverageVideoFile () { |
558 | if (this.videoFiles.length === 1) return this.videoFiles[0] | 558 | if (this.videoFiles.length === 1) return this.videoFiles[0] |
559 | 559 | ||
560 | return this.videoFiles[Math.floor(this.videoFiles.length / 2)] | 560 | const files = this.videoFiles.filter(f => f.resolution.id !== 0) |
561 | return files[Math.floor(files.length / 2)] | ||
561 | } | 562 | } |
562 | 563 | ||
563 | private stopTorrent (torrent: WebTorrent.Torrent) { | 564 | private stopTorrent (torrent: WebTorrent.Torrent) { |
diff --git a/client/src/sass/player/context-menu.scss b/client/src/sass/player/context-menu.scss index 1738f486d..1653dd2c4 100644 --- a/client/src/sass/player/context-menu.scss +++ b/client/src/sass/player/context-menu.scss | |||
@@ -12,6 +12,7 @@ $context-menu-width: 350px; | |||
12 | padding: 8px 0; | 12 | padding: 8px 0; |
13 | border-radius: 4px; | 13 | border-radius: 4px; |
14 | width: $context-menu-width; | 14 | width: $context-menu-width; |
15 | z-index: 105; // On top of the progress bar | ||
15 | 16 | ||
16 | .vjs-menu-content { | 17 | .vjs-menu-content { |
17 | opacity: $primary-foreground-opacity; | 18 | opacity: $primary-foreground-opacity; |