diff options
author | Chocobozzz <me@florianbigard.com> | 2018-10-01 11:24:41 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-10-01 11:24:41 +0200 |
commit | 2a27c451f78922107c3f056e7506be8a79b31e03 (patch) | |
tree | 212003b0fa2d0fc36a1203eeb501a36566d9b4eb | |
parent | e37c85e933b320173c271fd1f6471679b759bc39 (diff) | |
download | PeerTube-2a27c451f78922107c3f056e7506be8a79b31e03.tar.gz PeerTube-2a27c451f78922107c3f056e7506be8a79b31e03.tar.zst PeerTube-2a27c451f78922107c3f056e7506be8a79b31e03.zip |
Update changelog
-rw-r--r-- | CHANGELOG.md | 14 | ||||
-rw-r--r-- | client/src/hmr.ts | 2 |
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) |