Run hooks and register plugins outside angular
[oweals/peertube.git] / CHANGELOG.md
1 # Changelog
2
3 ## v1.3.1
4
5 ### Bug fixes
6
7  * Fix Mastodon remote interactions
8  * Fix missing video download button
9  * Fix error in video upload/update form when scheduling publication
10  * Fix black theme on some pages
11  * Fix video import if auto blacklist is enabled
12   
13
14 ## v1.3.0
15
16 **Since v1.2.0**
17
18 ### IMPORTANT NOTES
19
20  * **nginx** Remove `text/html` from `gzip_types`: https://github.com/Chocobozzz/PeerTube/commit/7eeb6a0ba4028d0e20847b846332dd0b7747c7f8 [@bnjbvr](https://github.com/bnjbvr)
21  * Add `streaming_playlists` directory in configuration file. **You should configure it in your production.yaml**
22  * CSP configuration changed: it's now in a [dedicated section](https://github.com/Chocobozzz/PeerTube/blob/develop/config/production.yaml.example#L110) 
23  
24 ## Maintenance
25
26  * Add GitPod support ([@jankeromnes](https://github.com/jankeromnes)) that could help people to contribute on PeerTube: https://github.com/Chocobozzz/PeerTube/blob/develop/.github/CONTRIBUTING.md#online-development
27  * Add reminder to restart PeerTube in upgrade script ([@ldidry](https://github.com/ldidry))
28  * Add argument to dockerfile to pass options to npm run build ([@NaPs](https://github.com/NaPs))
29  * Add `NOCLIENT` env support to only install server dependencies. Example: `NOCLIENT=true yarn install --pure-lockfile` ([@rigelk](https://github.com/rigelk))
30
31 ### Docker
32  
33  * **Important**: Add host network mode to the reverse proxy section (without this, it could break videos views and P2P: https://github.com/Chocobozzz/PeerTube/issues/1643#issuecomment-464789666)
34  * **Important**: Add a network section to [docker-compose.yml template](https://github.com/Chocobozzz/PeerTube/blob/develop/support/docker/production/docker-compose.yml) 
35 and update your [.env](https://github.com/Chocobozzz/PeerTube/blob/develop/support/docker/production/.env#L8) to fix IP forwarding issue ([@Nutomic](https://github.com/nutomic))
36  * Fix SMTP default configuration ([@Nutomic](https://github.com/nutomic))
37
38 ### Features
39  
40  * Add video playlist support
41    * A user has a default `Watch-later` playlist
42    * A user can create private, unlisted or public playlists
43    * An element in this playlist can start or stop at specific timestamps (you can create some kind of zapping for example)
44    * The difference with a channel is that you cannot subscribe to a playlist, but you can add videos from any other user in your playlist.
45    It's useful to organize your videos, or create a playlist of videos you like and share the link on the web etc
46  * Add quarantine videos (auto blacklist videos on upload) feature :tada: ([@joshmorel](https://github.com/joshmorel))
47  * Add Japanese & Nederlands & Português (Portugal) support
48  * Add experimental HLS support
49    * Better playback
50    * Better bandwidth management (for both client & server)
51    * Needs to store another video file per resolution, so enabling this option multiplies the videos storage by 2 (only new uploaded videos, this is not retroactive)
52    * Requires ffmpeg >= 4
53  * Better instance's followers management:
54    * Add ability to remove an instance's follower
55    * Add ability to forbid all new instance's followers
56    * Add ability to manually approve new instance's followers
57    * Add notification on new instance's follower
58  * Improve UI:
59    * Increase player default height
60    * Reduce big play button border width
61    * Increase thumbnail sizes
62    * Add hover effect on video miniature
63    * Add "my library" section in menu
64    * Add missing icons in some buttons/dropdown
65    * 2 rows per overview section
66    * Increase video thumbnail blur ([@Zig-03](https://github.com/Zig-03))
67    * Improve video miniatures list on mobile
68    * Add animation when opening user notifications
69  * Add ability for admins to disable the tracker (and so the P2P aspect of PeerTube, in order to improve users privacy for example)
70  * Add original publication date attribute to videos, and add ability to filter on it (Andrés Maldonado)
71  * Add video miniature dropdown
72  * Add ability for admins to declare their instance as dedicated to NSFW content
73  * Improve SEO (there is still work to be done)
74  * Login is now case insensitive (if using official web client)
75  * Add NSFW policy & users signup policy & auto blacklist strategy in features table in about page
76  * Improve comment deletion warning
77  * Restore videos list component on history back
78  * Add ability to consult server logs in admin
79  * Allow administrators to change/reset a user's password ([@rigelk](https://github.com/rigelk))
80  * Add a debug page to help admins to fix IP configuration issues
81  * Add ability for admins to limit users videos history size
82  * Add ability for admins to delete old remote videos views (reduce database size)
83  * Optimize video update page load
84  * Less refresh jobs
85  * Cleanup invalid AP rates/comments/shares
86  * Better videos redundancy config error handling
87  * Check emails are enabled if the admin requires email verification ([@joshmorel](https://github.com/joshmorel))
88  * Add `Add /accounts/:username/ratings endpoint` ([@yohanboniface](https://github.com/yohanboniface))
89  * Allow to control API rates limit from configuration ([@yohanboniface](https://github.com/yohanboniface))
90
91 ### Bug fixes
92
93  * Don't notify prior to scheduled update ([@joshmorel](https://github.com/joshmorel))
94  * Fix account description database error
95  * Fix Pleroma follow
96  * Fix greek label
97  * Fix email notification for some users
98  * Fix translation of "Copy magnet URI"
99  * Fix negative seconds by displaying 0 instead [@zacharystenger](https://github.com/zacharystenger)
100  * Fix URL in video import notification
101  * Don't close help popover when clicking on it
102  * Fix `tmp` directory cleanup
103  * Fix custom CSS help
104  * Fix JSONLD context
105  * Fix privacy label display in upload form
106  * Fix my account settings responsiveness
107  * Fix keyboard icon transparency ([@gbip](https://github.com/gbip))
108  * Fix contact admin button overflow
109  * Wait config to be loaded before loading login/signup
110  * Privacy is optional in upload API endpoint
111  * Fix hotkeys help popup overflow
112
113 ***Since v1.3.0-rc.2***
114
115 ### Bug fixes
116
117  * Fix duplicates in playlist add component
118  * Fix crash in files cache
119  * Fix playlist view/update 403
120  * Fix search with bad webfinger handles
121  
122  
123 ## v1.3.0-rc.2
124
125 ### Docker
126
127  * Add a network section to [docker-compose.yml template](https://github.com/Chocobozzz/PeerTube/blob/develop/support/docker/production/docker-compose.yml) 
128 and update your [.env](https://github.com/Chocobozzz/PeerTube/blob/develop/support/docker/production/.env#L8) to fix IP forwarding issue ([@Nutomic](https://github.com/nutomic))
129
130 ### Bug fixes
131
132  * Fix playlist block width when the player is in theater mode
133  * Reset playlist add dropdown in watch page on video change
134  * Fix follow with Mastodon
135  * Fix playlist elements reordering
136  * Fix my videos list pagination
137  * Fix video thumbnails in admin blacklist page
138  * Fix video views that are not considered
139
140
141 ## v1.3.0-rc.1
142
143 ### IMPORTANT NOTES
144
145  * **nginx** Remove `text/html` from `gzip_types`: https://github.com/Chocobozzz/PeerTube/commit/7eeb6a0ba4028d0e20847b846332dd0b7747c7f8 [@bnjbvr](https://github.com/bnjbvr)
146  * Add `streaming_playlists` directory in configuration file. **You should configure it in your production.yaml**
147  * CSP configuration changed: it's now in a [dedicated section](https://github.com/Chocobozzz/PeerTube/blob/develop/config/production.yaml.example#L110) 
148  
149 ## Maintenance
150
151  * Add GitPod support ([@jankeromnes](https://github.com/jankeromnes)) that could help people to contribute on PeerTube: https://github.com/Chocobozzz/PeerTube/blob/develop/.github/CONTRIBUTING.md#online-development
152  * Add reminder to restart PeerTube in upgrade script ([@ldidry](https://github.com/ldidry))
153  * Add argument to dockerfile to pass options to npm run build ([@NaPs](https://github.com/NaPs))
154  * Add `NOCLIENT` env support to only install server dependencies. Example: `NOCLIENT=true yarn install --pure-lockfile` ([@rigelk](https://github.com/rigelk))
155
156 ### Docker
157  
158  * **Important**: Add host network mode to the reverse proxy section (without this, it could break videos views and P2P: https://github.com/Chocobozzz/PeerTube/issues/1643#issuecomment-464789666)
159  * Fix SMTP default configuration ([@Nutomic](https://github.com/nutomic))
160
161 ### Features
162  
163  * Add video playlist support
164    * A user has a default `Watch-later` playlist
165    * A user can create private, unlisted or public playlists
166    * An element in this playlist can start or stop at specific timestamps (you can create some kind of zapping for example)
167    * The difference with a channel is that you cannot subscribe to a playlist, but you can add videos from any other user in your playlist.
168    It's useful to organize your videos, or create a playlist of videos you like and share the link on the web etc
169  * Add quarantine videos (auto blacklist videos on upload) feature :tada: ([@joshmorel](https://github.com/joshmorel))
170  * Add Japanese & Nederlands & Português (Portugal) support
171  * Add experimental HLS support
172    * Better playback
173    * Better bandwidth management (for both client & server)
174    * Needs to store another video file per resolution, so enabling this option multiplies the videos storage by 2 (only new uploaded videos, this is not retroactive)
175    * Requires ffmpeg >= 4
176  * Better instance's followers management:
177    * Add ability to remove an instance's follower
178    * Add ability to forbid all new instance's followers
179    * Add ability to manually approve new instance's followers
180    * Add notification on new instance's follower
181  * Improve UI:
182    * Increase player default height
183    * Reduce big play button border width
184    * Increase thumbnail sizes
185    * Add hover effect on video miniature
186    * Add "my library" section in menu
187    * Add missing icons in some buttons/dropdown
188    * 2 rows per overview section
189    * Increase video thumbnail blur ([@Zig-03](https://github.com/Zig-03))
190    * Improve video miniatures list on mobile
191    * Add animation when opening user notifications
192  * Add ability for admins to disable the tracker (and so the P2P aspect of PeerTube, in order to improve users privacy for example)
193  * Add original publication date attribute to videos, and add ability to filter on it (Andrés Maldonado)
194  * Add video miniature dropdown
195  * Add ability for admins to declare their instance as dedicated to NSFW content
196  * Improve SEO (there is still work to be done)
197  * Login is now case insensitive (if using official web client)
198  * Add NSFW policy & users signup policy & auto blacklist strategy in features table in about page
199  * Improve comment deletion warning
200  * Restore videos list component on history back
201  * Add ability to consult server logs in admin
202  * Allow administrators to change/reset a user's password ([@rigelk](https://github.com/rigelk))
203  * Add a debug page to help admins to fix IP configuration issues
204  * Add ability for admins to limit users videos history size
205  * Add ability for admins to delete old remote videos views (reduce database size)
206  * Optimize video update page load
207  * Less refresh jobs
208  * Cleanup invalid AP rates/comments/shares
209  * Better videos redundancy config error handling
210  * Check emails are enabled if the admin requires email verification ([@joshmorel](https://github.com/joshmorel))
211  * Add `Add /accounts/:username/ratings endpoint` ([@yohanboniface](https://github.com/yohanboniface))
212  * Allow to control API rates limit from configuration ([@yohanboniface](https://github.com/yohanboniface))
213
214 ### Bug fixes
215
216  * Don't notify prior to scheduled update ([@joshmorel](https://github.com/joshmorel))
217  * Fix account description database error
218  * Fix Pleroma follow
219  * Fix greek label
220  * Fix email notification for some users
221  * Fix translation of "Copy magnet URI"
222  * Fix negative seconds by displaying 0 instead [@zacharystenger](https://github.com/zacharystenger)
223  * Fix URL in video import notification
224  * Don't close help popover when clicking on it
225  * Fix `tmp` directory cleanup
226  * Fix custom CSS help
227  * Fix JSONLD context
228  * Fix privacy label display in upload form
229  * Fix my account settings responsiveness
230  * Fix keyboard icon transparency ([@gbip](https://github.com/gbip))
231  * Fix contact admin button overflow
232  * Wait config to be loaded before loading login/signup
233  * Privacy is optional in upload API endpoint
234  * Fix hotkeys help popup overflow
235
236
237 ## v1.2.1
238
239 ### Bug fixes
240
241  * **Important** Fix invalid `From` email header in contact form that could lead to the blacklisting of your SMTP server
242  * Fix too long display name overflow in menu
243  * Fix mention notification when a remote account mention a local account that has the same username than yours
244  * Fix access to muted servers table for moderators
245  * Don't crash notification popup on bug
246  * Fix reset password script that leaks password on invalid value
247
248
249 ## v1.2.0
250
251 ### BREAKING CHANGES
252
253  * **Docker:** `PEERTUBE_TRUST_PROXY` env variable is now an array ([LecygneNoir](https://github.com/LecygneNoir))
254  * **Docker:** Check you have all the storage fields in your `/config/production.yaml` file: https://github.com/Chocobozzz/PeerTube/blob/develop/support/docker/production/config/production.yaml#L34
255  * **nginx:** Add redundancy endpoint in static file. **You should add it in your nginx configuration: https://github.com/Chocobozzz/PeerTube/blob/develop/support/doc/production.md#nginx**
256  * **nginx:** Add socket io endpoint. **You should add it in your nginx configuration: https://github.com/Chocobozzz/PeerTube/blob/develop/support/doc/production.md#nginx**
257  * Moderators can manage users now (add/delete/update/block)
258  * Add `tmp` and `redundancy` directories in configuration file. **You should configure them in your production.yaml**
259
260 ### Maintenance
261
262  * Check free storage before upgrading in upgrade script ([@Nutomic](https://github.com/nutomic))
263  * Explain that PeerTube must be stopped in prune storage script
264  * Add some security directives in the systemd unit configuration file ([@rigelk](https://github.com/rigelk) & [@mkoppmann](https://github.com/mkoppmann))
265  * Update FreeBSD startup script ([@gegeweb](https://github.com/gegeweb))
266
267 ### Docker
268
269  * Patch docker entrypoint to speed up the chown at startup ([LecygneNoir](https://github.com/LecygneNoir))
270
271 ### Features
272
273  * Add Russian, Polish and Italian languages
274  * Add user notifications:
275    * Notification types:
276      * Comment on my video
277      * New video from my subscriptions
278      * New video abuses (for moderators)
279      * Blacklist/Unblacklist on my video
280      * Video import finished (error or success)
281      * Pending video published (after transcoding or a scheduled update)
282      * My account or one of my channel has a new follower
283      * Someone (except muted accounts) mentioned me in comments
284      * A user registered on the instance (for moderators)
285    * Notification actions:
286      * Add a web notification
287      * Send an english email
288  * Add contact form in about page (**enabled by default**)
289  * Add ability to unfederate a local video in blacklist modal (**checkbox checked by default**)
290  * Support additional video extensions if transcoding is enabled (**enabled by default**)
291  * Redirect to the last url on login
292  * Add ability to automatically set the video caption in URL. Example: https://peertube2.cpy.re/videos/watch/9c9de5e8-0a1e-484a-b099-e80766180a6d?subtitle=ru
293  * Automatically enable the last selected caption when watching a video
294  * Add ability to disable, clear and list user videos history
295  * Add a button to help to translate peertube
296  * Add text in the report modal to explain to whom the report will be sent
297  * Open my account menu entries on hover
298  * Explain what features are enabled on the instance in the about page
299  * Add an error message in the forgot password modal if the instance email system is not configured
300  * Add sitemap
301  * Add well known url to change password ([@rigelk](https://github.com/rigelk))
302  * Remove 8GB video upload limit on client side. There may still be such limit depending on the reverse proxy configuration ([@scanlime](https://github.com/scanlime))
303  * Add CSP ([@rigelk](https://github.com/rigelk) & [@Nutomic](https://github.com/nutomic))
304  * Update title and description HTML tags when rendering video HTML page
305  * Add webfinger support for remote follows ([@acid-chicken](https://github.com/acid-chicken))
306  * Add tooltip to explain how the trending algorithm works ([@auberanger](https://github.com/auberanger))
307  * Warn users when they want to delete a channel because they will not be able to create another channel with the same name
308  * Warn users when they leave the video upload/update (on page refresh/tab close)
309  * Set max user name, user display name, channel name and channel display name lengths to 50 characters ([@McFlat](https://github.com/mcflat))
310  * Increase video abuse length to 3000 characters
311  * Add totalLocalVideoFilesSize in the stats endpoint
312
313 ### Bug fixes
314
315  * Fix the addition of captions to a video
316  * Fix federation of some videos
317  * Fix NSFW blur on search
318  * Add error message when trying to upload .ass subtitles
319  * Fix default homepage in the progressive web application
320  * Don't crash on queue error
321  * Fix EXDEV errors if you have multiple mount points
322  * Fix broken audio in transcoding with some videos
323  * Fix crash on getVideoFileStream issue
324  * Fix followers search
325  * Remove trailing `/` in CLI import script ([@HesioZ](https://github.com/HesioZ/))
326  * Use origin video url in canonical tag
327  * Fix captions in HTTP fallback
328  * Automatically refresh remote actors to fix deleted remote actors that are still displayed on some instances
329  * Add missing translations in video embed page
330  * Fix some styling issues in dark mode
331  * Fix transcoding issues with some videos
332  * Fix Mac OS mkv/avi upload
333  * Fix menu overflow on mobile
334  * Fix ownership button icons ([@joshmorel](https://github.com/joshmorel))
335
336
337 ## v1.1.0
338
339 ***Since v1.0.1***
340
341 ### BREAKING CHANGES
342
343  * **Docker:** `PEERTUBE_TRUST_PROXY` env variable is now an array ([LecygneNoir](https://github.com/LecygneNoir))
344
345 ### Maintenance
346
347  * Improve REST API documentation ([@rigelk](https://github.com/rigelk))
348  * Add basic ActivityPub documentation ([@rigelk](https://github.com/rigelk))
349  * Add CLI option to run PeerTube without client ([@rigelk](https://github.com/rigelk))
350  * Add manpage to peertube CLI ([@rigelk](https://github.com/rigelk))
351  * Make backups of files in optimize-old-videos script ([@Nutomic](https://github.com/nutomic))
352  * Allow peertube-import-videos.ts CLI script to run concurrently ([@McFlat](https://github.com/mcflat))
353
354 ### Scripts
355
356  * Use DB information from config/production.yaml in upgrade script ([@ldidry](https://github.com/ldidry))
357  * Add REPL script ([@McFlat](https://github.com/mcflat))
358
359 ### Docker
360
361  * Add search and import settings env settings env variables ([@kaiyou](https://github.com/kaiyou))
362  * Add docker dev image ([@am97](https://github.com/am97))
363  * Improve docker compose template ([@Nutomic](https://github.com/nutomic))
364    * Add postfix image
365    * Redirect HTTP -> HTTPS
366    * Disable Træfik web UI
367
368 ### Features
369  
370  * Automatically resume videos if the user is logged in
371  * Hide automatically the menu when the window is resized ([@BO41](https://github.com/BO41))
372  * Remove confirm modal for JavaScript/CSS injection ([@scanlime](https://github.com/scanlime))
373  * Set bitrate limits for transcoding ([@Nutomic](https://github.com/nutomic))
374  * Add moderation tools in the account page
375  * Add bulk actions in users table (Delete/Ban for now)
376  * Add search filter in admin users table
377  * Add search filter in admin following
378  * Add search filter in admin followers
379  * Add ability to list all local videos
380  * Add ability for users to mute an account or an instance
381  * Add ability for administrators to mute an account or an instance
382  * Rename "News" category to "News & Politics" ([@daker](https://github.com/daker))
383  * Add explicit error message when changing video ownership ([@lucas-dclrcq](https://github.com/lucas-dclrcq))
384  * Improve description of the HTTP video import feature ([@rigelk](https://github.com/rigelk))
385  * Set shorter keyframe interval for transcoding (2 seconds) ([@Nutomic](https://github.com/nutomic))
386  * Add ability to disable webtorrent (as a user) ([@rigelk](https://github.com/rigelk))
387  * Make abuse-delete clearer ([@barbeque](https://github.com/barbeque))
388  * Adding minimum signup age conforming to ceiling GPDR age ([@rigelk](https://github.com/rigelk))
389  * Feature/description support fields length 1000 ([@McFlat](https://github.com/mcflat))
390  * Add background effect to activated menu entry
391  * Improve video upload error handling
392  * Improve message visibility on signup
393  * Auto login user on signup if email verification is disabled
394  * Speed up PeerTube startup (in particular the first one)
395  * Delete invalid or deleted remote videos
396  * Add ability to admin to set email as verified ([@joshmorel](https://github.com/joshmorel))
397  * Add separators in user moderation dropdown
398
399 ### Bug fixes
400
401  * AP mimeType -> mediaType
402  * PeerTube is not in beta anymore
403  * PeerTube is not in alpha anymore :p
404  * Fix optimize old videos script
405  * Check follow constraints when getting a video
406  * Fix application-config initialization in CLI tools ([Yetangitu](https://github.com/Yetangitu))
407  * Fix video pixel format compatibility (using yuv420p) ([@rigelk](https://github.com/rigelk))
408  * Fix video `state` AP context  ([tcitworld](https://github.com/tcitworld))
409  * Fix Linked Signature compatibility
410  * Fix AP collections pagination
411  * Fix too big thumbnails (when using URL import)
412  * Do not host remote AP objects: use redirection instead
413  * Fix video miniature with a long name
414  * Fix video views inconsistencies inside the federation
415  * Fix video embed in Wordpress Gutenberg
416  * Fix video channel videos url when scrolling
417  * Fix player progress bar/seeking when changing resolution
418  * Fix search tab title with no search
419  * Fix YouTube video import with some videos
420
421 ***Since v1.1.0-rc.1***
422
423 ### Bug fixes
424
425  * Fix AP infinite redirection
426  * Fix trending page
427
428
429 ## v1.1.0-rc.1 (since v1.1.0-alpha.2)
430
431 ### Maintenance
432
433  * Improve REST API documentation ([@rigelk](https://github.com/rigelk))
434  * Add basic ActivityPub documentation ([@rigelk](https://github.com/rigelk))
435  * Add CLI option to run PeerTube without client ([@rigelk](https://github.com/rigelk))
436  * Add manpage to peertube CLI ([@rigelk](https://github.com/rigelk))
437  * Make backups of files in optimize-old-videos script ([@Nutomic](https://github.com/nutomic))
438  * Allow peertube-import-videos.ts CLI script to run concurrently ([@McFlat](https://github.com/mcflat))
439
440 ### Docker
441
442  * Improve docker compose template ([@Nutomic](https://github.com/nutomic))
443    * Add postfix image
444    * Redirect HTTP -> HTTPS
445    * Disable Træfik web UI
446  * Add ability to set an array in `PEERTUBE_TRUST_PROXY` ([LecygneNoir](https://github.com/LecygneNoir))
447
448 ### Features
449
450  * Add background effect to activated menu entry
451  * Improve video upload error handling
452  * Improve message visibility on signup
453  * Auto login user on signup if email verification is disabled
454  * Speed up PeerTube startup (in particular the first one)
455  * Delete invalid or deleted remote videos
456  * Add ability to admin to set email as verified ([@joshmorel](https://github.com/joshmorel))
457  * Add separators in user moderation dropdown
458
459 ### Bug fixes
460
461  * Check follow constraints when getting a video
462  * Fix application-config initialization in CLI tools ([Yetangitu](https://github.com/Yetangitu))
463  * Fix video pixel format compatibility (using yuv420p) ([@rigelk](https://github.com/rigelk))
464  * Fix video `state` AP context  ([tcitworld](https://github.com/tcitworld))
465  * Fix Linked Signature compatibility
466  * Fix AP collections pagination
467  * Fix too big thumbnails (when using URL import)
468  * Do not host remote AP objects: use redirection instead
469  * Fix video miniature with a long name
470  * Fix video views inconsistencies inside the federation
471  * Fix video embed in Wordpress Gutenberg
472  * Fix video channel videos url when scrolling
473  * Fix player progress bar/seeking when changing resolution
474  * Fix search tab title with no search
475  * Fix YouTube video import with some videos
476     
477
478 ## v1.1.0-alpha.2 (since v1.1.0-alpha.1)
479
480 ### Security/Maintenance/Federation
481  
482  * Add HTTP Signature in addition to Linked Signature:
483     * It's faster
484     * Will allow us to use RSA Signature 2018 in the future without too much incompatibilities in the peertube federation 
485  
486 ### Features
487
488  * Set shorter keyframe interval for transcoding (2 seconds) ([@Nutomic](https://github.com/nutomic))
489  * Add ability to disable webtorrent (as a user) ([@rigelk](https://github.com/rigelk))
490  * Make abuse-delete clearer ([@barbeque](https://github.com/barbeque))
491  * Adding minimum signup age conforming to ceiling GPDR age ([@rigelk](https://github.com/rigelk))
492  * Feature/description support fields length 1000 ([@McFlat](https://github.com/mcflat))
493
494 ### Bug fixes
495
496  * Scale bitrate linearly with FPS ([@Nutomic](https://github.com/nutomic))
497  * AP mimeType -> mediaType
498  * PeerTube is not in beta anymore
499  * PeerTube is not in alpha anymore :p
500  * Fix optimize old videos script
501
502
503 ## v1.0.1
504
505 ### Security/Maintenance/Federation
506  
507  * Add HTTP Signature in addition to Linked Signature:
508     * It's faster
509     * Will allow us to use RSA Signature 2018 in the future without too much incompatibilities in the peertube federation
510
511
512 ## v1.1.0-alpha.1
513
514 We released this alpha version because some admins/users need some moderation tools we implemented in recent weeks.
515 This release could contain bugs. Don't expect a stable v1.1.0 until December :)
516
517 ### Scripts
518
519  * Use DB information from config/production.yaml in upgrade script ([@ldidry](https://github.com/ldidry))
520  * Add REPL script ([@McFlat](https://github.com/mcflat))
521
522 ### Docker
523
524  * Add search and import settings env settings env variables ([@kaiyou](https://github.com/kaiyou))
525  * Add docker dev image ([@am97](https://github.com/am97))
526
527 ### Features
528  
529  * Automatically resume videos if the user is logged in
530  * Hide automatically the menu when the window is resized ([@BO41](https://github.com/BO41))
531  * Remove confirm modal for JavaScript/CSS injection ([@scanlime](https://github.com/scanlime))
532  * Set bitrate limits for transcoding ([@Nutomic](https://github.com/nutomic))
533  * Add moderation tools in the account page
534  * Add bulk actions in users table (Delete/Ban for now)
535  * Add search filter in admin users table
536  * Add search filter in admin following
537  * Add search filter in admin followers
538  * Add ability to list all local videos
539  * Add ability for users to mute an account or an instance
540  * Add ability for administrators to mute an account or an instance
541  * Rename "News" category to "News & Politics" ([@daker](https://github.com/daker))
542  * Add explicit error message when changing video ownership ([@lucas-dclrcq](https://github.com/lucas-dclrcq))
543  * Improve description of the HTTP video import feature ([@rigelk](https://github.com/rigelk))
544
545
546 ## v1.0.0
547
548 ### SECURITY
549
550  * Add more headers to HTTP signature to avoid actor impersonation by replaying modified signed HTTP requests (thanks Thibaut Girka)
551
552 ### Bug fixes
553
554  * Check video exists before extending expiration
555  * Correctly delete redundancy files
556  * Fix account URI in remote comment modal ([@rigelk](https://github.com/rigelk))
557  * Fix avatar update
558  * Avoid old issue regarding duplicated hosts in database
559
560
561 ## v1.0.0-rc.2
562
563 ### Bug fixes
564
565  * Fix config endpoint
566
567
568 ## v1.0.0-rc.1
569
570 ### Features
571
572  * Allow specification of channel ID in `peertube-upload.js` ([@anoadragon453](https://github.com/anoadragon453))
573  * Show last commit hash alongside server version in footer ([@rigelk](https://github.com/rigelk))
574  * Add comment feeds in watch page
575
576 ### Bug fixes
577
578  * Fix dnt route (yes again, but now we have unit tests for this route :D)
579  * Check video channel name is unique when creating a new one
580  * Fix video fps validator (prevent redundancy/refresh of some old videos)
581  * Allow empty search on client side ([@rigelk](https://github.com/rigelk))
582  * Correctly forward comment deletion
583
584
585 ## v1.0.0-beta.16
586
587 ### BREAKING CHANGES
588
589  * Add prompt to upgrade.sh to install pre-release version ([@Nutomic](https://github.com/nutomic))
590
591 ### Features
592
593  * Add shortcuts icon in menu
594  * Improve overview section titles
595  * Check old password before change ([@BO41](https://github.com/BO41))
596  * Adding frame-by-frame hotkey support in player ([@rigelk](https://github.com/rigelk))
597
598 ### Bug fixes
599
600  * Stop seeding torrents after a failed import
601  * Fix player crashing the web browser
602  * Fix player performance with small devices
603  * Fix some untranslated strings
604  * Fix video files duplicated when fps is null ([@rigelk](https://github.com/rigelk))
605  * Fix video import of some youtube videos
606  * Fix (long) video description when importing by url
607  * Fix Mastodon federation with a comment reply
608  * Correctly delete directories on import
609  * Remove duplicated videos on unfollow/delete redundancy
610  * Fix 404 on manifest
611  * Hide useless error when destroying fake renderer
612  * Display other videos on big screens on the right of the watch page
613  * Fix no other videos displayed on some videos
614  * Fix hidden advanced options in upload form
615  * Fix message space on video upload cancel ([@rigelk](https://github.com/rigelk))
616  * Fix error when updating many video captions
617  * Fix "my account" subtitles
618  * Fix error when clicking on the disabled publish button
619  * Increase timeout on upload endpoint
620  * Fix redundancy with videos already duplicated by another instance(s)
621  * Correctly delete files on failed import
622  
623
624 ## v1.0.0-beta.15
625
626 ### Features
627
628  * Improve subscription button ([@rigelk](https://github.com/rigelk))
629   * Display it for unlogged users
630   * Add RSS feed
631   * Allow remote follow
632  * Allow remote comment ([@rigelk](https://github.com/rigelk))
633  * Support Simplified Chinese ([@SerCom-KC](https://github.com/SerCom-KC))
634
635 ### Bug fixes
636
637  * Fix redundancy with old PeerTube torrents
638  * Fix crash with `/static/dnt-policy/dnt-policy-1.0.txt` route
639  * Fix redundancy totalVideos stats
640  * Reduce video import TTL to 1 hour
641  * Only duplicate public videos
642  
643
644 ## v1.0.0-beta.14
645
646 ### Features
647
648  * Video redundancy system (experimental)
649  * Add peertube script (see [the doc](/support/doc/tools.md#cli-wrapper)) ([@rigelk](https://github.com/rigelk))
650  * Improve download modal ([@rigelk](https://github.com/rigelk))
651  * Add redirect after login ([@BO41](https://github.com/BO41))
652  * Improve message when removing a user
653  * Improve responsive on small screens
654  * Improve performance:
655    * Overview endpoint
656    * SQL requests of watch page endpoints
657    * SQL requests of ActivityPub endpoints
658    * Cache user token
659    * Videos infinite scroll in the web browser
660  * Add warning if one of the storage directory is in the peertube production directory
661  * Auto focus first field on login ([@rigelk](https://github.com/rigelk))
662  * Add chevron hotkeys to change playback rate ([@rigelk](https://github.com/rigelk))
663
664 ### Bug fixes
665  
666  * Fix 24 hours delay to process views
667  * Fix tag search on overview page
668  * Handle actors search beginning with '@'
669  * Fix "no results" on overview page
670  * Fix iOS player playback/subtitles menu
671  * Fix description/comments that break the video watch page
672  * Don't get recommended videos twice
673  * Fix admin access to moderators
674  * Fix nav tab and tag color in dark theme ([@rigelk](https://github.com/rigelk))
675  * Fix help popover overflow ([@rigelk](https://github.com/rigelk))
676  * Fix comment deletion with mastodon (only with new comments)
677
678
679 ## v1.0.0-beta.13
680
681 ### Features
682
683  * Improve keyboard navigation ([@rigelk](https://github.com/rigelk))
684  * Remember theme in local storage ([@rigelk](https://github.com/rigelk))
685  
686 ### Bug fixes
687
688   * Fix upgrade/installation on node 8.12 (bcrypt issue)
689   * Fix video channel deletion
690   * Fix video channel RSS
691   * Fix video views increment
692  
693
694 ## v1.0.0-beta.12
695
696 **If you have not updated to v1.0.0-beta.10, see the v1.0.0-beta.10.pre.1 changelog, in particular how to upgrade**
697
698 ### BREAKING CHANGES
699
700  * Users can now use the name they want for their channel. 
701  We will therefore favour the display of video channel handles/names instead of account in the future.
702
703 ### Documentation
704
705  * Add SECURITY.md document
706  * Add TCP/IP tuning template to prevent buffer bloat/latency ([@scanlime](https://github.com/scanlime))
707  * Add `parse-log` admin tool documentation
708  * Improve README schemas ([@Edznux](https://github.com/edznux))
709
710 ### nginx template
711
712  * Add gzip support ([@scanlime](https://github.com/scanlime))
713  
714 ### Docker template
715  
716  * Add quota to the docker configuration values ([@kaiyou](https://github.com/kaiyou))
717
718 ### Features
719
720  * Add portuguese and swedish languages
721  * Support user subscriptions
722  * Add ability to search videos or channels with their URL/handle (can be opt-out by the admin)
723  * Add "videos overview" page (pick randomly some categories/tags/channels and display their videos)
724  * Add ability to set a name (left part of the handle) to a channel instead of UUID
725  * Users can "give" their videos to other local users (WIP, feedback welcome) ([@grizio](https://github.com/grizio))
726  * Add keyboard shortcuts (press `?` to see them) ([@rigelk](https://github.com/rigelk))
727  * Add ability to set daily video upload quota to users ([@Nutomic](https://github.com/nutomic))
728  * Add user email verification (can be opt-in by the admin) ([@joshmorel](https://github.com/joshmorel))
729  * Improve video watch page style ([@rigelk](https://github.com/rigelk))
730  * Trending page takes into account views from the last x days (defined by the admin in the configuration file)
731  * Add "start at" checkbox in the video share modal
732  * Add instance capabilities table in the signup page ([@rigelk](https://github.com/rigelk))
733  * Improve video abuses display in admin ([@Nutomic](https://github.com/nutomic))
734  * Add "my videos" shortcut in menu ([@LeoMouyna](https://github.com/LeoMouyna))
735  * Support 0.75 and 1.25 playback speeds ([@Glandos](https://github.com/Glandos))
736  * Improve error message on actor name conflict
737  * Improve videos list/search SQL query (split it into 2 queries)
738  * Make left menu show the scrollbar only on hover/focus ([@rigelk](https://github.com/rigelk))
739  * Other videos column in watch page show related tagged videos if possible ([@jorropo](https://github.com/jorropo))
740  * Password change errors more friendly ([@jorropo](https://github.com/jorropo))
741  * Improve labels for video privacies (video upload/update)
742  * Add theming via CSS custom properties ([@rigelk](https://github.com/rigelk))
743  * Add dark theme ([@rigelk](https://github.com/rigelk))
744  * Add input color to cope with browser themes ([@rigelk](https://github.com/rigelk))
745
746 ### Bug fixes
747
748  * Fix player video playback (videos never ends or infinite load after seeking)
749  * Fix video URL import with videos having a small title
750  * Make HSTS opt-in and leave it to the reverse-proxy ([@rigelk](https://github.com/rigelk))
751  * Fix search results on mobile
752  * Do not import live streaming
753  * Fix NSFW filter when the instance decides to hide them and the user decides to list them
754  * Delete highlighted comment too if needed
755  * Fix ffmpeg auto thread admin configuration ([@jorropo](https://github.com/jorropo))
756  * ActivityPub: use height instead of width to represent the video resolution
757  * Fix thumbnail/preview in upload.js script
758  * Fix import-videos.js duplicate detection
759  * Fix occitan language label
760  
761
762 ## v1.0.0-beta.11
763
764 **If you have not updated to v1.0.0-beta.10, see the v1.0.0-beta.10.pre.1 changelog, in particular how to upgrade**
765
766 ### Features
767
768  * Add ability to import videos from a URL (YouTube, Dailymotion, Vimeo, raw file etc) or torrent file/magnet.
769  Should be explicitly enabled by the administrator in the configuration file
770  * Add german, spanish, taiwan (traditional chinese) and occitan languages
771  * Add ability to delete our account
772  * Add ability to ban a user
773  * Add ability to set a moderation comment to an abuse
774  * Add state (pending, accepted, rejected) attribute to an abuse
775  * Add ability to set a reason when blacklisting a video
776  * Add ability to blacklist local videos
777  * Improve abuse and blacklist tables
778  * Add user quota used in users list
779  * Tracker only accept known infohash (avoid people to use your tracker for files unrelated to PeerTube)
780  * Add database pool configuration ([@rigelk](https://github.com/rigelk))
781  * Add audit log ([@Nautigsam](https://github.com/Nautigsam))
782  * Add ffmpeg nice and auto thread ([@jorropo](https://github.com/jorropo))
783  * Upgrade to bootstrap 4
784  * DNT support
785
786 ### Bug fixes
787
788  * Fix videos FPS federation
789  * Cleanup request files on bad request
790  * Handle truncated markdown links
791  * Fix dropdown position in menu
792  * Translate subtitle languages in player
793  * Translate player according the language of the interface
794  * Fix reset my password button ([@joshmorel](https://github.com/joshmorel))
795
796
797 ## v1.0.0-beta.10
798
799 **See the v1.0.0-beta.10.pre.1 changelog, in particular how to upgrade**
800
801 ### Bug fixes (from beta.10.pre.3)
802
803  * Fix caption upload on Mac OS
804
805
806 ## v1.0.0-beta.10.pre.3
807
808 **See the v1.0.0-beta.10.pre.1 changelog, in particular how to upgrade**
809
810 ### Bug fixes (from beta.10.pre.2)
811
812  * Try to fix the infinite creation of Delete actor jobs by deleting kue migration
813  * Cleanup SQL indexes
814  * Try to optimize SQL search query
815  * Try to optimize videos list SQL query
816  * Add more logs and fix logger when having an error
817  * Move subscription helper in the account line in video watch page
818  * Fix responsive on videos search
819  * Refresh orphan actors
820  * Don't send a follow request if the follow was already accepted
821
822
823 ## v1.0.0-beta.10.pre.2
824
825 **See the v1.0.0-beta.10.pre.1 changelog, in particular how to upgrade**
826
827 ### Bug fixes (from beta.10.pre.1)
828
829  * Fix captions/subtitles freeze in player
830  * Fix attribute label width in video watch page
831  * Fix player playback in Chrome
832  * Revert SQL optimization when listing videos: it breaks the connection pool of some instances
833
834
835 ## v1.0.0-beta.10.pre.1
836
837 This version is a pre release because it contains many important changes, and requires manual steps before upgrading.
838
839 **Important:** Before upgrading run the following commands (no need to stop PeerTube) on your PeerTube database (in this example it's *peertube_prod*):
840
841 ```
842 $ sudo -u postgres psql peertube_prod -c 'CREATE EXTENSION IF NOT EXISTS unaccent;'
843 $ sudo -u postgres psql peertube_prod -c 'CREATE EXTENSION IF NOT EXISTS pg_trgm;'
844 ```
845
846 You will need [PostgreSQL Contrib](https://www.postgresql.org/docs/9.6/static/contrib.html).
847
848 ### BREAKING CHANGES
849
850  * Require `unaccent` and `pg_trgm` PostgreSQL extension for the PeerTube database
851  * `category` filter param is replaced by `categoryOneOf`
852  * Switch job queue to [Bull](https://github.com/OptimalBits/bull). **PeerTube will not migrate your old pending jobs in this new queue manager**
853  * Update nginx template (you need to [update manually](https://github.com/Chocobozzz/PeerTube/blob/develop/support/doc/production.md#nginx))
854  * Update default cache size configurations
855  * Update search API route: `/videos/search` becomes `/search/videos`
856  * Needs Redis >= 2.8.18
857
858 ### Features
859
860  * Add ability to change the language of the interface (currently available: english, french, basque, catalan, czech and esperanto)
861  * Subtitles/captions support (.srt and .vtt)
862  * Add advanced search
863  * Add ability to click on category/language/licence/tags in watch page
864  * Improve explanations of P2P & Privacy section in about page
865  * Avoid design latency when the admin set custom CSS
866  * Add ability to update video channel avatar
867  * Limit video resolution depending on the video element size (Nitesh Sawant)
868  * Show "Other videos" on a <1300px viewport ([@Simounet](https://github.com/simounet))
869  * Add QR code to share videos URL ([@DeeJayBro](https://github.com/DeeJayBro))
870  * Add "agree to the terms" checkbox in registration form
871  * Add tracker rate limiter
872  * Add author URL in OEmbed response
873  * Display username instead of email in menu
874  * Clarifying what extensions are accepted for upload ([@rigelk](https://github.com/rigelk))
875  * Thumbnail support for RSS feeds ([@rigelk](https://github.com/rigelk))
876  * Open CORS on API and static resources ([@rezonant](https://github.com/rezonant)
877  * 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
878  * Support Redis socket ([@rigelk](https://github.com/rigelk))
879  * Improve video `start` param to support string times (for example: 2m42s))
880  * Display table next/prev/first/last icons in admin tables
881  * NodeInfo support ([@rigelk](https://github.com/rigelk))
882  * Improve HTTP headers security ([@rigelk](https://github.com/rigelk))
883  * Improve client accessibility (for screen reader users etc)
884  * Optimize SQL requests (in particular the one to list videos)
885  * Optimize images ([@jorropo](https://github.com/jorropo))
886  * Add esperanto, lojban, klingon and kotava (audio/subtitle) languages
887  * Allow uploads of videos <8GB (*experimental*)
888  * Handle FPS > 30 (*experimental*)
889
890 ### Bug fixes
891
892  * Fix avatars/thumbnails update (cache issue)
893  * Fix pagination on admin job table when changing the job state
894  * Fix SQL transaction retryer log
895  * Correctly handle error when remote instance is down
896  * Fix account videos URL when scrolling
897  * Avoid commenting twice by disabling comment submit button when sending the comment
898  * Reset confirm component input when closing it
899  * Fix video speed when video resolutions changes ([@grizio](https://github.com/grizio))
900  * Disable hotkeys modifiers for numbers ([@rigelk](https://github.com/rigelk))
901  * Reset published date on video publish (scheduled or after a transcoding)
902  * Avoid 404 title on the first page load
903  * Fix forgot password message regarding email
904  * Remove scroll to top when closing the menu ([@ebrehault](https://github.com/ebrehault))
905  * Use UUID for channel link in watch page
906
907 ### Docker
908
909  * Add PEERTUBE_SMTP_DISABLE_STARTTLS config env
910
911
912 ## v1.0.0-beta.9
913
914 ### Features
915
916  * Theater/Cinema mode in player
917  * Add ability to wait transcoding before publishing it
918  * Add ability for uploaders to schedule video update
919  * Add time display to see where we seek the video
920  * Add title in player peers info to show total downloaded/uploaded data
921  * Provide magnet URI in player and download modal ([@rigelk](https://github.com/rigelk))
922  * Add warning if the domain name is different from the one of the first start of Peertube
923  * Add resolution to create-transcoding-job script ([@fflorent](https://github.com/fflorent))
924
925 ### Bug fixes
926
927  * Fix dislikes number in video watch page
928  * Fix import when the imported file has the same extension than an already existing file
929  * Fix bad RSS descriptions when filtering videos by account or channel
930  * Fix RSS results limit
931  * Fix glitch when updating player volume
932  * Use local object URLs for feeds
933  * Automatically jump to the highlighted thread
934  * Fix account link width on video view ([@sesn](https://github.com/sesn))
935  * Prevent commenting twice
936  * Blue links color in comments
937  * Fix quota precision in users list
938  * Handle markdown in account/video channel pages
939  * Fix avatar image in channel page
940  * Fix slow HTTP fallback on Firefox
941  * Do not create a user with the same username than another actor name
942  * Reset search on page change
943  * Fix images size limit
944  * Log torrent errors/warnings in the console, instead of disturbing users
945
946
947 ## v1.0.0-beta.8
948
949 ### Features
950
951  * Docker:
952    * Add disable_starttls and transcoding configuration variables
953    * `.env` file to define env variables (instead of defining them in `docker-compose.yml`)
954    * Some improvements that should make the upgrades less painful
955  * Add ability to manually run transcoding jobs (admin with CLI)
956  * Add ability to import a video file (admin with CLI)
957  * Add context menu to the player
958  * Add number of videos published by an account/video channel
959  * Improve player progress bar
960  * Improve Twitter configuration help tooltips
961  * Pick average video file instead of max quality in "Auto" resolution mode
962  * Increase access token lifetime to 1 day
963  * Add video comments RSS
964
965 ### Bug fixes
966
967  * Clicking on "Download" correctly opens a popup to download the video
968  (instead of opening the video in a new tab)
969  * Fix frequent logout
970  * Fix `publishedAt` video attribute when following a new instance
971  * Correctly resumes the video on "PeerTube" link click in embed
972  * Fix markdown links truncation
973  * Fix account/channel pages not updated if we only change the account/channel
974  * Fix player resolution change that plays even if the video was paused
975  * Fix posting view in embed that contains search params
976  * Fix video watch tooltips regarding subscriptions by using the account name
977  instead of the display name
978  * Rename "my settings" to "my account" in menu
979
980
981 ## v1.0.0-beta.7
982
983 ### BREAKING CHANGES
984
985  * Account client URLs are now `/accounts/{username}/` (and not `/accounts/{id}/`)
986
987 ### Documentation
988
989  * Better documentation on how to deploy with Docker: https://github.com/Chocobozzz/PeerTube/blob/develop/support/doc/docker.md
990
991 ### Features
992
993  * Add short description in about page
994  * Add owner account name in video channel page
995  * Improve performance in ActivityPub controllers
996  * Video **support** field inherits video channel **support** field when uploading/updating a video
997  * Resume video when clicking on "PeerTube" link in embed
998
999 ### Bug fixes
1000
1001  * Fix player on Android
1002  * Fix player when Firefox has cookies disabled
1003  * Reload "my videos" after a delete
1004  * Fix missing key configuration when upgrading with Docker
1005  * Fix CC audience in Activity Pub objects/activities
1006
1007
1008 ## v1.0.0-beta.6
1009
1010 ### Features
1011
1012  * Handle concurrent requests in cache middleware
1013  * Add ability to enable registration by IP
1014
1015 ### Bug fixes
1016
1017  * Fix insane SQL request when loading all video attributes
1018
1019
1020 ## v1.0.0-beta.5
1021
1022 ### BREAKING CHANGES
1023
1024  * Update Docker Compose (https://github.com/Chocobozzz/PeerTube/commit/fd5e57bbe2accbdb16b6aa65337c5ef44b5bd8fb)
1025  * Rename client routes:
1026    * `/admin/users/add` to `/admin/users/create`
1027    * `/videos/edit/:uuid` to `/videos/update/:uuid`
1028    * `/admin/users/:id/update` to `/admin/users/update/:id`
1029
1030
1031 ### Features
1032
1033  * Adding basic helpers to guide users for comments/subscribe to accounts
1034  * Add ability to move a video in another channel
1035  * Improve web browser RAM consumption when watching (long) videos
1036  * Support robots.txt in configuration
1037  * Add ability to select the Redis database in configuration
1038
1039
1040 ### Bug fixes
1041
1042  * Fix error message on token expiration
1043  * Increase menu icon size
1044  * Add timeout and TTL to request jobs to fix stuck job
1045  * Fix responsive account about page
1046  * Fix updating description account
1047  * Account/video channel descriptions are not required anymore
1048  * Fix video channel description and support max length (500 characters now)
1049  * Fix "..." for buttons (delete/edit) in admin tables
1050  * Fix overflow in markdown textarea preview
1051  * Add ability to embed videos in a Twitter card
1052  * Use `publishedAt` attribute when sorting videos
1053  * Fix concurrent requests in videos list
1054  * Fix player on iOS
1055
1056
1057 ## v1.0.0-beta.4
1058
1059 ### BREAKING CHANGES
1060
1061  * Hide by default NSFW videos. Update the `instance.default_nsfw_policy` configuration to `blur` to keep the old behaviour
1062  * Move video channels routes:
1063    * `/videos/channels` routes to `/video-channels`
1064    * `/videos/accounts/{accountId}/channels` route to `/accounts/{accountId}/video-channels`
1065  * PeerTube now listen on 127.0.0.1 by default
1066  * Use ISO 639 for language (*en*, *es*, *fr*...)
1067    * Tools (`import-videos`...) need the language ISO639 code instead of a number
1068    * API (`upload`, `update`, `list`...) need/return the language ISO639 code instead of a number
1069
1070 ### Features
1071
1072  * Add `publishedAt` attribute to videos
1073  * Improve player:
1074    * Smooth progress bar
1075    * Settings menu
1076    * Automatic resolution (depending on the user bandwidth)
1077    * Some animations/effects
1078    * More reactive when clicking on play
1079    * Handle autoplay blocking by some web browsers
1080    * Better responsive
1081    * Add ability to link a specific timestamp. Example: https://peertube2.cpy.re/videos/watch/f78a97f8-a142-4ce1-a5bd-154bf9386504?start=58
1082  * Add an id to the body to override current CSS (for custom CSS)
1083  * Add privacy argument to `upload.ts` script
1084  * RSS/Atom/JSON-feed for videos recently-added/trending/account
1085  * Support hostname binding in the configuration
1086  * Add ability to click on an account in the video watch page (link to a search)
1087  * Better responsive on many comment replies
1088  * Move follows in the job queue
1089  * Add ability to choose the NSFW videos policy: hide, blur or display. Could be overrode by the user
1090  * Add video privacy information in *my videos page*
1091  * Use the video name for the torrent file name instead of the UUID
1092  * Handle errors in embed (video not found, server error...)
1093  * Account view (videos uploaded by this account + video channel owned by this account + about pages)
1094  * Video channel view (videos uploaded in this channel + about pages)
1095  * Video channel management (avatar update is still missing)
1096
1097 ### Bug fixes
1098
1099  * Fix "show more" description on video change
1100  * Accept unlisted comments
1101  * Don't start application until all components were initialized
1102  * Fix word-break in video description and video comments
1103  * Don't add a `.` after the URL in the "forgot password" email
1104
1105
1106
1107 ## v1.0.0-beta.3
1108
1109 ### Features
1110
1111  * Add hover background color in menu
1112  * Add info about the initial user quota in the registration form
1113  * Add link to register in the login form
1114  * Prevent brute force login attack
1115
1116 ### Bug fixes
1117
1118  * Fix bad federation with videos with special utf characters in description (again)
1119  * Fix views system behind a reverse proxy
1120
1121
1122 ## v1.0.0-beta.2
1123
1124 ### Features
1125
1126  * More logging in SMTP module
1127  * Add option to disable starttls in SMTP module
1128  * Update STUN servers (using framasoft.org and stunprotocol.org now)
1129  * Min comment length is 1 now (useful for emoji...)
1130  * Better embed video player in small screens
1131  * Reduce display time of title/description/control bar in embed on inactivity
1132  * Add sign languages for videos attribute
1133  * Add autoplay parameter for embed
1134  * Videos search on account username and host too
1135  * Redirect to homepage on empty search
1136
1137 ### Bug fixes
1138
1139  * Fix mentions in comment replies
1140  * Logo/Title redirects to the default route
1141  * Fix bad federation with videos with special utf characters in description
1142  * Fix pagination on mobile
1143  * Use instance name for page titles
1144  * Fix bad id for Create activities (ActivityPub)
1145  * Handle inner actors instead of just handling actor ids (ActivityPub)
1146  * Fallback to torrent file if infohash is incorrect
1147  * Fix admin config errors display/validation
1148  * Add public to Announces (ActivityPub)
1149  * Fix inability to run client when cookies are disabled
1150  * Fix words breaking in videos description
1151  * Graceful exit when import videos script fails
1152  * Fix import videos with long names
1153  * Fix login with a password containing special characters
1154  * Fix player error flickering with an unsupported video format
1155  * Fix comment delete federation
1156  * Fix communication of a PeerTube instance and Mastodon
1157  * Fix custom configuration with number values
1158
1159
1160 ## v1.0.0-beta.1
1161
1162 Nothing new here, but PeerTube is stable enough for being in beta now.
1163
1164
1165 ## v1.0.0-alpha.9
1166
1167 ### BREAKING CHANGES
1168
1169  * Update videos list/search/get API response:
1170    * Removed `resolution` field
1171    * Removed `resolutionLabel` field
1172    * Removed `category` field
1173    * Removed `categoryLabel` field
1174    * Removed `licence` field
1175    * Removed `licenceLabel` field
1176    * Removed `language` field
1177    * Removed `languageLabel` field
1178    * Removed `privacy` field
1179    * Removed `privacyLabel` field
1180    * Added `resolution.id` field
1181    * Added `resolution.label` field
1182    * Added `category.id` field
1183    * Added `category.label` field
1184    * Added `licence.id` field
1185    * Added `licence.label` field
1186    * Added `language.id` field
1187    * Added `language.label` field
1188    * Added `privacy.id` field
1189    * Added `privacy.label` field
1190
1191 ### Bug fixes
1192
1193  * Fix video_share_url duplicate key on failed transcoding job
1194
1195
1196 ## v1.0.0-alpha.8
1197
1198 ### Features
1199
1200  * Add ability to set a short instance description
1201
1202
1203 ## v1.0.0-alpha.7
1204
1205 ### BREAKING CHANGES
1206
1207  * Update videos list/search API response:
1208    * Removed `accountName` field
1209    * Removed `serverHost` field
1210    * Added `account.name` field
1211    * Added `account.displayName` field
1212    * Added `account.host` field
1213    * Added `account.url` field
1214    * Added `account.avatar` field
1215  * Update video abuses API response:
1216    * Removed `reporterUsername` field
1217    * Removed `reporterServerHost` field
1218    * Removed `videoId` field
1219    * Removed `videoUUID` field
1220    * Removed `videoName` field
1221    * Added `reporterAccount` field
1222    * Added `video.id` field
1223    * Added `video.name` field
1224    * Added `video.uuid` field
1225    * Added `video.url` field
1226
1227 ### Features
1228
1229  * Add "Local" in menu that lists only local videos
1230
1231
1232 ## v1.0.0-alpha.4
1233
1234 ### Features
1235
1236  * Add iOS support
1237
1238
1239 ## v1.0.0-alpha.1
1240
1241 ### Features
1242
1243  * Add messages about privacy and P2P
1244  * Add stats route
1245  * Add playback setting
1246
1247
1248 ## v0.0.29-alpha
1249
1250 ### BREAKING CHANGES
1251
1252  * Use only 1 thread for transcoding by default
1253
1254 ### Features
1255
1256  * Add help to JS/CSS custom configuration inputs
1257  * Keep ratio in video thumbnail generation
1258  * Handle video in portrait mode
1259
1260 ### Bug fixes
1261
1262  * Fix complete description on some videos
1263  * Fix job sorting in administration
1264
1265
1266 ## v0.0.28-alpha
1267
1268 ### BREAKING CHANGES
1269
1270  * Enable original file transcoding by default in configuration
1271  * Disable transcoding in other definitions in configuration
1272
1273 ### Features
1274
1275  * Fallback to HTTP if video cannot be loaded
1276  * Limit to 30 FPS in transcoding
1277
1278
1279 ## v0.0.27-alpha
1280
1281 ### Features
1282
1283  * Add ability for admin to inject custom JavaScript/CSS
1284  * Add help tooltip on some fields
1285
1286 ### Bug fixes
1287
1288  * Fix comment reply highlighting
1289
1290
1291 ## v0.0.26-alpha
1292
1293 ### BREAKING CHANGES
1294
1295  * Renamed script `import-youtube.js` to `import-videos.js`
1296  * Renamed `import-video.js` argument `youtube-url` to `target-url`
1297
1298 ### Features
1299
1300  * Add "Support" attribute/button on videos
1301  * Add ability to import from all [supported sites](https://rg3.github.io/youtube-dl/supportedsites.html) of youtube-dl
1302
1303 ### Bug fixes
1304
1305  * Fix custom instance name overflow
1306
1307
1308 ## v0.0.25-alpha
1309
1310 ### Features
1311
1312  * Add ability to link a specific comment
1313
1314 ### Bug fixes
1315
1316  * Fix avatars on video watch page
1317
1318
1319 ## v0.0.24-alpha
1320
1321 ### Features
1322
1323 * Publish comments with *ctrl + enter*
1324
1325 ### Bug fixes
1326
1327 * Don't stuck on active jobs
1328 * Fix deleting a video with comments
1329 * Fix infinite scroll (videos list)