diff options
author | Chocobozzz <me@florianbigard.com> | 2018-07-25 17:30:40 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-07-25 17:30:40 +0200 |
commit | 039fd8bc01aaf5de0da53766675333d077da446b (patch) | |
tree | 0c86895fce25c0a6bc47ba519944d05fb195b676 | |
parent | d59cba295b7f2ead41e1828c1567e60942476367 (diff) | |
download | PeerTube-039fd8bc01aaf5de0da53766675333d077da446b.tar.gz PeerTube-039fd8bc01aaf5de0da53766675333d077da446b.tar.zst PeerTube-039fd8bc01aaf5de0da53766675333d077da446b.zip |
Update changelog
-rw-r--r-- | CHANGELOG.md | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 14efb09a5..01b86d661 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md | |||
@@ -1,5 +1,78 @@ | |||
1 | # Changelog | 1 | # Changelog |
2 | 2 | ||
3 | ## v1.0.0-beta.10.pre.1 | ||
4 | |||
5 | This version is a pre release because it contains many important changes, and requires manual steps before upgrading. | ||
6 | |||
7 | **Important:** Before upgrading run the following commands (no need to stop PeerTube): | ||
8 | |||
9 | ``` | ||
10 | $ sudo -u postgres psql peertube_prod -c 'CREATE EXTENSION IF NOT EXISTS unaccent;' | ||
11 | $ sudo -u postgres psql peertube_prod -c 'CREATE EXTENSION IF NOT EXISTS pg_trgm;' | ||
12 | ``` | ||
13 | |||
14 | ### BREAKING CHANGES | ||
15 | |||
16 | * Require `unaccent` and `pg_trgm` PostgreSQL extension for the PeerTube database | ||
17 | * `category` filter param is replaced by `categoryOneOf` | ||
18 | * Switch job queue to [Bull](https://github.com/OptimalBits/bull). PeerTube should migrate your old pending jobs in this new queue manager | ||
19 | * Update nginx template | ||
20 | * Update default cache size configurations | ||
21 | |||
22 | ### Features | ||
23 | |||
24 | * Add ability to change the language of the interface (currently available: english, french, basque, catalan, czech and esperanto) | ||
25 | * Subtitles/captions support (.srt and .vtt) | ||
26 | * Add advanced search | ||
27 | * Add ability to click on category/language/licence/tags in watch page | ||
28 | * Improve explanations of P2P & Privacy section in about page | ||
29 | * Avoid design latency when the admin set custom CSS | ||
30 | * Add ability to update video channel avatar | ||
31 | * Limit video resolution depending on the video element size (Nitesh Sawant) | ||
32 | * Show "Other videos" on a <1300px viewport ([@Simounet](https://github.com/simounet)) | ||
33 | * Add QR code to share videos URL ([@DeeJayBro](https://github.com/DeeJayBro)) | ||
34 | * Add "agree to the terms" checkbox in registration form | ||
35 | * Add tracker rate limiter | ||
36 | * Add author URL in OEmbed response | ||
37 | * Display username instead of email in menu | ||
38 | * Clarifying what extensions are accepted for upload ([@rigelk](https://github.com/rigelk)) | ||
39 | * Thumbnail support for RSS feeds ([@rigelk](https://github.com/rigelk)) | ||
40 | * Open CORS on API and static resources ([@rezonant](https://github.com/rezonant) | ||
41 | * B-adapt 1 and B-frames 16 on ffmpeg transcoding: ([@Anton-Latukha](https://github.com/Anton-Latukha)). See https://github.com/Chocobozzz/PeerTube/pull/774 for more information | ||
42 | * Support Redis socket ([@rigelk](https://github.com/rigelk)) | ||
43 | * Improve video `start` param to support string times (for example: 2m42s)) | ||
44 | * Display table next/prev/first/last icons in admin tables | ||
45 | * NodeInfo support ([@rigelk](https://github.com/rigelk)) | ||
46 | * Improve HTTP headers security ([@rigelk](https://github.com/rigelk)) | ||
47 | * Improve client accessibility (for screen reader users etc) | ||
48 | * Optimize SQL requests (in particular the one to list videos) | ||
49 | * Optimize images ([@jorropo](https://github.com/jorropo)) | ||
50 | * Add esperanto, lojban, klingon and kotava (audio/subtitle) languages | ||
51 | * Allow uploads of videos <8GB (*experimental*) | ||
52 | * Handle FPS > 30 (*experimental*) | ||
53 | |||
54 | ### Bug fixes | ||
55 | |||
56 | * Fix avatars/thumbnails update (cache issue) | ||
57 | * Fix pagination on admin job table when changing the job state | ||
58 | * Fix SQL transaction retryer log | ||
59 | * Correctly handle error when remote instance is down | ||
60 | * Fix account videos URL when scrolling | ||
61 | * Avoid commenting twice by disabling comment submit button when sending the comment | ||
62 | * Reset confirm component input when closing it | ||
63 | * Fix video speed when video resolutions changes ([@grizio](https://github.com/grizio)) | ||
64 | * Disable hotkeys modifiers for numbers ([@rigelk](https://github.com/rigelk)) | ||
65 | * Reset published date on video publish (scheduled or after a transcoding) | ||
66 | * Avoid 404 title on the first page load | ||
67 | * Fix forgot password message regarding email | ||
68 | * Remove scroll to top when closing the menu ([@ebrehault](https://github.com/ebrehault)) | ||
69 | * Use UUID for channel link in watch page | ||
70 | |||
71 | ### Docker | ||
72 | |||
73 | * Add PEERTUBE_SMTP_DISABLE_STARTTLS config env | ||
74 | |||
75 | |||
3 | ## v1.0.0-beta.9 | 76 | ## v1.0.0-beta.9 |
4 | 77 | ||
5 | ### Features | 78 | ### Features |