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