aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md14
-rw-r--r--client/src/hmr.ts2
2 files changed, 14 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 51bf700ca..9bbd6cfe5 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -11,10 +11,14 @@
11 * Add shortcuts icon in menu 11 * Add shortcuts icon in menu
12 * Improve overview section titles 12 * Improve overview section titles
13 * Check old password before change ([@BO41](https://github.com/BO41)) 13 * Check old password before change ([@BO41](https://github.com/BO41))
14 * Adding frame-by-frame hotkey support in player ([@rigelk](https://github.com/rigelk))
14 15
15### Bug fixes 16### Bug fixes
16 17
17 * Fix some translations 18 * Stop seeding torrents after a failed import
19 * Fix player crashing the web browser
20 * Fix player performance with small devices
21 * Fix some untranslated strings
18 * Fix video files duplicated when fps is null ([@rigelk](https://github.com/rigelk)) 22 * Fix video files duplicated when fps is null ([@rigelk](https://github.com/rigelk))
19 * Fix video import of some youtube videos 23 * Fix video import of some youtube videos
20 * Fix (long) video description when importing by url 24 * Fix (long) video description when importing by url
@@ -25,6 +29,14 @@
25 * Hide useless error when destroying fake renderer 29 * Hide useless error when destroying fake renderer
26 * Display other videos on big screens on the right of the watch page 30 * Display other videos on big screens on the right of the watch page
27 * Fix no other videos displayed on some videos 31 * Fix no other videos displayed on some videos
32 * Fix hidden advanced options in upload form
33 * Fix message space on video upload cancel ([@rigelk](https://github.com/rigelk))
34 * Fix error when updating many video captions
35 * Fix "my account" subtitles
36 * Fix error when clicking on the disabled publish button
37 * Increase timeout on upload endpoint
38 * Fix redundancy with videos already duplicated by another instance(s)
39 * Correctly delete files on failed import
28 40
29 41
30## v1.0.0-beta.15 42## v1.0.0-beta.15
diff --git a/client/src/hmr.ts b/client/src/hmr.ts
index d5306a7a2..adfbca7d9 100644
--- a/client/src/hmr.ts
+++ b/client/src/hmr.ts
@@ -9,7 +9,7 @@ export const hmrBootstrap = (module: any, bootstrap: () => Promise<NgModuleRef<a
9 .then(mod => { 9 .then(mod => {
10 ngModule = mod 10 ngModule = mod
11 11
12 const applicationRef = ngModule.injector.get(ApplicationRef); 12 const applicationRef = ngModule.injector.get(ApplicationRef)
13 const componentRef = applicationRef.components[ 0 ] 13 const componentRef = applicationRef.components[ 0 ]
14 // allows to run `ng.profiler.timeChangeDetection();` 14 // allows to run `ng.profiler.timeChangeDetection();`
15 enableDebugTools(componentRef) 15 enableDebugTools(componentRef)