]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - CHANGELOG.md
6ad0be7335ee99dbbfa66f2a26e211d10316ff80
[github/Chocobozzz/PeerTube.git] / CHANGELOG.md
1 # Changelog
2
3 ## v2.1.0-rc.1
4
5 ### IMPORTANT NOTES
6
7 * **/!\ VERY IMPORTANT /!\\** You need to execute manually a script (can be executed after your upgrade, while your PeerTube instance is running) to create HLS video torrents:
8 * `cd /var/www/peertube/peertube-latest && sudo -u peertube NODE_CONFIG_DIR=/var/www/peertube/config NODE_ENV=production node dist/scripts/migrations/peertube-2.1.js`
9 * **/!\ VERY IMPORTANT /!\\** In the next PeerTube release (v2.2.0), we'll add a unique index on actors usernames to fix some federation bugs.
10 Please check now if you have conflicts using:
11 * Go inside your database using `psql` and run `select "preferredUsername" from actor where "serverId" is null group by "preferredUsername" having count(*) > 0`
12 * If you have some results, it seems you have duplicate channels/accounts.
13 For every entry, you'll have to change the preferredUsername of the entry you want (so they are unique).
14 The updated actors could have some federations issues
15 * We now use Buster for the docker image, so the image name changed:
16 * `production-stretch` becomes `production-buster`
17 * `v2.x.x-stretch` becomes `v2.x.x-buster`
18 * Users cannot create more than 20 channels now
19 * We added a warning if the `videos` directory is the same than the `redundancy` one in your configuration file: it can create some bugs
20
21 ### Documentation
22
23 We added some sections in the documentation website:
24
25 * S3 remote storage: https://docs.joinpeertube.org/#/admin-remote-storage
26 * Instances redundancy: https://docs.joinpeertube.org/#/admin-following-instances
27 * Moderate your instance: https://docs.joinpeertube.org/#/admin-moderation
28 * Customize your instance (install plugins & themes): https://docs.joinpeertube.org/#/admin-customize-instance
29 * PeerTube logs (standard log/audit log): https://docs.joinpeertube.org/#/admin-logs
30 * Mute accounts/instances: https://docs.joinpeertube.org/#/use-mute
31 * Controlled player embed API: https://docs.joinpeertube.org/#/api-em
32
33 ### Docker
34
35 * Sticking to one env-var management system ([@Leopere](https://github.com/Leopere)) (See https://github.com/Chocobozzz/PeerTube/pull/2247)
36 * Simplify Dockerfile and slim Docker image ([@Nutomic](https://github.com/nutomic))
37 * Add HLS support in Docker container by using the latest Debian stable (Buster) image
38
39 ### Plugins/Themes API
40
41 * Add checkbox and textarea as possible input types for settings ([@rigelk](https://github.com/rigelk))
42 * Add `isLoggedIn` helper to client plugins ([@rigelk](https://github.com/rigelk))
43 * Add client plugin hooks:
44 * `action:video-watch.player.loaded` with player instance
45 * `action:video-watch.video.loaded` with a videojs instance
46 * `action:signup.register.init` ([@rigelk](https://github.com/rigelk))
47 * `filter:api.signup.registration.create.params` ([@rigelk](https://github.com/rigelk))
48 * `filter:internal.video-watch.player.build-options.params`
49 * `filter:internal.video-watch.player.build-options.result`
50 * `filter:internal.common.svg-icons.get-content.params`
51 * `filter:internal.common.svg-icons.get-content.result`
52 * Add server plugins hooks:
53 * `action:api.user.blocked`
54 * `action:api.user.unblocked`
55 * `action:api.user.registered`
56 * `action:api.user.created`
57 * `action:api.user.deleted`
58 * `action:api.user.updated`
59 * `action:api.user.oauth2-got-token`
60 * Accept `.` `_` and `0-9` characters in plugin names
61
62 ### Maintenance
63
64 * PeerTube moved translations from Zanata to Weblate. Here is the new translations website URL: https://weblate.framasoft.org/projects/peertube/
65 * We now provide a JavaScript library to control a PeerTube embed: https://www.npmjs.com/package/@peertube/embed-api
66 * Add ability to generate HLS videos using `create-transcoding-job` script (see [the documentation](https://docs.joinpeertube.org/#/maintain-tools?id=create-transcoding-jobjs))
67 * Update nginx template: (you need to [update manually](https://github.com/Chocobozzz/PeerTube/blob/develop/support/doc/production.md#nginx))
68 * Add streaming playlists endpoint
69 * Add `client_body_temp_path` hint
70 * Relax TLS/SSL ciphers hardening to allow Android 4.4.2 to use the PeerTube instance API
71 * Add `maxFileSize`, `maxFiles` and `anonymizeIP` log options in configuration file
72
73 ### Features
74
75 * :tada: Add *internal* video privacy mode. *Internal* videos are only available to other logged in users of your instance, and are not federated
76 * :tada: Add hyperlink video timestamps in comments & video descriptions ([@Lesterpig](https://github.com/lesterpig) & [@rigelk](https://github.com/rigelk))
77 * :tada: Comments improvements:
78 * Support basic markdown
79 * Soft delete video comments instead of destroying them ([@alcalyn](https://github.com/alcalyn))
80 * Add commentator name alongside fid for video comments ([@rigelk](https://github.com/rigelk))
81 * Add a cancel button in comment form ([@rigelk](https://github.com/rigelk))
82 * Show number of comments under a video in watch page ([@rigelk](https://github.com/rigelk))
83 * Add user moderation dropdown ([@rigelk](https://github.com/rigelk))
84 * Add ability to sort comments by *total replies* or *created date* ([@rigelk](https://github.com/rigelk))
85 * Add *total replies from video author* indicator ([@rigelk](https://github.com/rigelk))
86 * Comment name emphasis for video author ([@rigelk](https://github.com/rigelk))
87 * Add "Watch later" button in video miniature overlay ([@rigelk](https://github.com/rigelk))
88 * Add ability to transcode videos in an audio only video container ([@Yetangitu](https://github.com/Yetangitu))
89 * Add playlist search input in *add to playlist* dropdown ([@rigelk](https://github.com/rigelk))
90 * Add search bars for a user's videos and playlist library ([@rigelk](https://github.com/rigelk))
91 * Support playlists in share modal
92 * Better UI for a better world:
93 * Add play/pause bezels to the video player ([@rigelk](https://github.com/rigelk))
94 * Use icons instead of buttons in watch page (like/dislike, support...) ([@rigelk](https://github.com/rigelk))
95 * Improve *PeerTube* section in About page and add links to the documentation
96 * Improve comment tree in Watch page
97 * Improve dropdown box shadow ([@rigelk](https://github.com/rigelk))
98 * Add channel avatar to watch view ([@rigelk](https://github.com/rigelk))
99 * Improve likes-dislikes bar usability
100 * Alter titles section header style ([@rigelk](https://github.com/rigelk))
101 * Enhance jobs list display on smaller screens ([@alcalyn](https://github.com/alcalyn))
102 * Performances improvements:
103 * Lazy load categories, licences, languages and video/playlist privacies in the client
104 * Only update remote actor avatar if the filename changed
105 * Optimize transcoding by using the lowest resolution as input file
106 * Speedup embed first paint
107 * Small videos list SQL query optimization
108 * Optimize local videos list SQL query
109 * Cache `peertube` instance actor SQL result
110 * Cache HLS/WebTorrent InfoHash SQL result
111 * Improve search filters: ([@rigelk](https://github.com/rigelk))
112 * Add ability to sort results
113 * Improve tags filter inputs
114 * Add a button to reset filters
115 * Improve autoplay: ([@rigelk](https://github.com/rigelk))
116 * Autoplay next video switch for both user and visitors
117 * Add *up next* screen on autoplay
118 * Autoplay next video support for playlists
119 * Add *next* video button to the player
120 * Add loop setting when watching a playlist
121 * Add ability to search a video directly by its UUID
122 * Case insensitive tags search
123 * Add ability to disable WebTorrent (and only enable HLS) (**experimental and breaks federation with PeerTube instances < 2.1**)
124 * Don't seed if the client is on a cellular network in the HLS player
125 * Load HLS player in embed by default if enabled
126 * Admin panels:
127 * Add ability to sort by *state*, *score* and *redundancy allowed* columns in following/followers admin table
128 * Add ability to filter per job type in admin
129 * Add *Audit logs* section in admin Logs panel
130 * Improve Media-RSS support ([@rigelk](https://github.com/rigelk))
131 * Explicit the tag limit in video form ([@bikepunk](https://github.com/bikepunk))
132 * Add a warning when uploading videos using root
133 * Clearer video quota label in user settings
134 * Pause the video when the user opens a modal
135 * Handle basic HTML in account descriptions
136 * Support `m4v` videos
137 * Improve 4k resolution bitrate
138 * Add missing hotkeys documentation in the watch page
139 * Add a button to copy the channel handle ([@rigelk](https://github.com/rigelk))
140 * Add server config to the nodeinfo metadata ([@rigelk](https://github.com/rigelk))
141 * Improve notification popup interactivity ([@rigelk](https://github.com/rigelk))
142
143 ### Bug fixes
144
145 * Don't notify if the account in on a muted instance
146 * Don't leak other notified addresses in notification emails
147 * Allow the embed iframe to open links
148 * Add missing button roles for the language chooser and keyboard shortcut menu items [@MarcoZehe](https://github.com/MarcoZehe)
149 * Fix overflow when creating a channel
150 * Fix "copy magnet URI" in player
151 * Fix text overflow in menu
152 * Fix player focus
153 * Only display accepted followers/followings instances in about page
154 * Fix brackets truncation in video description
155 * Fix channel playlist miniatures overflow
156 * Fix background color on some screens
157 * Fix captions upload issue depending on the caption name
158 * Fix file download when the video is private
159 * Fix dropdown on video miniature for unlogged users
160 * Fix video support field in update form
161 * Fix video import having a long thumbnail url (Facebook for example)
162
163
164 ## v2.0.0
165
166 **Since v1.4.1**
167
168 ### IMPORTANT NOTES
169
170 * Removed old JSON LD signature implementation. There will be some **federation incompatibilities** with forwarded activities sent
171 by PeerTube instances < v2.0.0
172 * Replaced configuration key `email.object` with `email.subject`: https://github.com/Chocobozzz/PeerTube/commit/916937d7daf386e4e2d37b2ca22db07b644b02df
173
174 ### Plugins/Themes API
175
176 * Add plugin hook on registration `filter:api.user.signup.allowed.result`
177
178 ### Docker
179
180 * Fix traefik version docker compose (**you need to update your `docker-compose.yml` file**: https://github.com/Chocobozzz/PeerTube/commit/f1b38883922fd59b36f093e44a5091e090d20862)
181
182 ### Maintenance
183
184 * Add `--tmpdir`, `--first`, `--last` and `--verbose [level]` parameters to peertube-import-videos script ([@Yetangitu](https://github.com/Yetangitu))
185 * Improve REST API documentation ([@frankstrater](https://github.com/frankstrater))
186 * Improve plugin management documentation
187
188 ### Features
189
190 * Better instance admin responsibility:
191 * Add ability to set more information about your instance. This will be used in the future on https://joinpeertube.org to help people find
192 the appropriate PeerTube instance on which they can register:
193 * Main **Categories**
194 * **Languages** you/your moderators speak
195 * **Code of Conduct**
196 * **Moderation information** (who moderates your instance, NSFW policy etc)
197 * Who is **behind the instance** (a single person? non-profit?)
198 * Why did the admin **create this instance**
199 * How long the admin plan to **maintain the instance**
200 * How the administrator **will finance** the PeerTube server
201 * **Hardware** information
202 * Add these information in the about page and in the signup page
203 * Add a welcome modal at first admin login with some explanations of PeerTube and some useful links
204 * Add warning modal when administrators enable or enabled signup but did not fill some important instance information
205 (for now the instance **name**, **terms**, **administrator** and **maintenance lifetime** information)
206 * Add ability to automatically follow back other instances
207 * Add ability to automatically follow [the public registry](https://instances.joinpeertube.org/) instances
208 * Add *Most liked videos* page ([@alcalyn](https://github.com/alcalyn))
209 * Add a drag&drop delay on playlist videos to allow user scroll on small screens ([@alcalyn](https://github.com/alcalyn))
210 * Allow to toggle video publication date to display absolute date ([@alcalyn](https://github.com/alcalyn))
211 * Add statistics in about page ([@alcalyn](https://github.com/alcalyn))
212 * Improve the *feature table* in about page
213 * Add contributors in about page
214 * Clearer warning of IP address leaking on embedded videos ([@robinkooli](https://github.com/robinkooli))
215 * Case insensitive search on video tags
216 * Add video name in "video publish notification"
217 * Add ability to autoplay next recommended video (opt in) ([@LoveIsGrief](https://github.com/LoveIsGrief))
218 * Add link behind the subscribe via RSS button ([@frankstrater](https://github.com/frankstrater))
219 * Support text/plain caption files
220 * Speedup theme injection
221 * Add ability to enable HLS in the admin panel
222
223 ### Bug fixes
224
225 * Fix audio upload
226 * Handle video reports from mastodon
227 * Fix videos redundancy exceeding the limit
228 * Fix search when user defined video languages in their preferences
229 * Don't quick transcode with the wrong pixel format
230 * Hide videos abuses of muted accounts
231 * Fix account avatar widths
232 * Fix default `commentsEnabled` and `downloadEnabled` values on video upload/import ([@frankstrater](https://github.com/frankstrater))
233 * Disable auto complete of email field when editing another user information in admin panel ([@Knackie](https://github.com/Knackie))
234 * Fix federation issues with some actors (that have long descriptions, or missing optional AP fields)
235 * Remove down redundancy endpoints in HLS player
236 * Fix user notifications with multiple opened tabs
237 * Replace "overview" by "discover" in webpage titles
238 * Clearer IP debug message in admin panel
239 * Fix checkbox styles when using a theme
240 * Don't redirect on verify account page after login
241 * Fix player captions menu after choosing a subtitle
242 * Fix CLI scripts with URLs ending with a `/`
243 * Fix `--since` and `--until` timezone in `peertube-import-videos` script
244 * Avoid circular error in logger
245 * Fix start/stop of first element when loading a playlist
246
247 ***Since v2.0.0-rc.1***
248
249 ### Features
250
251 * Improve welcome/warning modals
252 * Add ability to enable HLS in the admin panel
253
254 ### Bug fixes
255
256 * Fix auto index follow
257 * Fix CLI scripts with URLs ending with a `/`
258 * Fix `--since` and `--until` timezone in `peertube-import-videos` script ([@fflorent](https://github.com/fflorent))
259 * Avoid circular error in logger
260 * Fix start/stop of first element when loading a playlist
261
262
263 ## v2.0.0-rc.1
264
265 ### IMPORTANT NOTES
266
267 * Removed old JSON LD signature implementation. There will be some **federation incompatibilities** with forwarded activities sent
268 by PeerTube instances < v2.0.0
269 * Replaced configuration key `email.object` with `email.subject`: https://github.com/Chocobozzz/PeerTube/commit/916937d7daf386e4e2d37b2ca22db07b644b02df
270
271 ### Plugins/Themes API
272
273 * Add plugin hook on registration `filter:api.user.signup.allowed.result`
274
275 ### Docker
276
277 * Fix traefik version docker compose (**you need to update your `docker-compose.yml` file**: https://github.com/Chocobozzz/PeerTube/commit/f1b38883922fd59b36f093e44a5091e090d20862)
278
279 ### Maintenance
280
281 * Add `--tmpdir`, `--first`, `--last` and `--verbose [level]` parameters to peertube-import-videos script ([@Yetangitu](https://github.com/Yetangitu))
282 * Improve REST API documentation ([@frankstrater](https://github.com/frankstrater))
283 * Improve plugin management documentation
284
285 ### Features
286
287 * Better instance admin responsibility:
288 * Add ability to set more information about your instance. This will be used in the future on https://joinpeertube.org to help people find
289 the appropriate PeerTube instance on which they can register:
290 * Main **Categories**
291 * **Languages** you/your moderators speak
292 * **Code of Conduct**
293 * **Moderation information** (who moderates your instance, NSFW policy etc)
294 * Who is **behind the instance** (a single person? non-profit?)
295 * Why did the admin **create this instance**
296 * How long the admin plan to **maintain the instance**
297 * How the administrator **will finance** the PeerTube server
298 * **Hardware** information
299 * Add these information in the about page and in the signup page
300 * Add a welcome modal at first admin login with some explanations of PeerTube and some useful links
301 * Add warning modal when administrators enable or enabled signup but did not fill some important instance information
302 (for now the instance **name**, **terms**, **administrator** and **maintenance lifetime** information)
303 * Add ability to automatically follow back other instances
304 * Add ability to automatically follow [the public registry](https://instances.joinpeertube.org/) instances
305 * Add *Most liked videos* page ([@alcalyn](https://github.com/alcalyn))
306 * Add a drag&drop delay on playlist videos to allow user scroll on small screens ([@alcalyn](https://github.com/alcalyn))
307 * Allow to toggle video publication date to display absolute date ([@alcalyn](https://github.com/alcalyn))
308 * Add statistics in about page ([@alcalyn](https://github.com/alcalyn))
309 * Improve the *feature table* in about page
310 * Add contributors in about page
311 * Clearer warning of IP address leaking on embedded videos ([@robinkooli](https://github.com/robinkooli))
312 * Case insensitive search on video tags
313 * Add video name in "video publish notification"
314 * Add ability to autoplay next recommended video (opt in) ([@LoveIsGrief](https://github.com/LoveIsGrief))
315 * Add link behind the subscribe via RSS button ([@frankstrater](https://github.com/frankstrater))
316 * Support text/plain caption files
317 * Speedup theme injection
318
319 ### Bug fixes
320
321 * Fix audio upload
322 * Handle video reports from mastodon
323 * Fix videos redundancy exceeding the limit
324 * Fix search when user defined video languages in their preferences
325 * Don't quick transcode with the wrong pixel format
326 * Hide videos abuses of muted accounts
327 * Fix account avatar widths
328 * Fix default `commentsEnabled` and `downloadEnabled` values on video upload/import ([@frankstrater](https://github.com/frankstrater))
329 * Disable auto complete of email field when editing another user information in admin panel ([@Knackie](https://github.com/Knackie))
330 * Fix federation issues with some actors (that have long descriptions, or missing optional AP fields)
331 * Remove down redundancy endpoints in HLS player
332 * Fix user notifications with multiple opened tabs
333 * Replace "overview" by "discover" in webpage titles
334 * Clearer IP debug message in admin panel
335 * Fix checkbox styles when using a theme
336 * Don't redirect on verify account page after login
337 * Fix player captions menu after choosing a subtitle
338
339
340 ## v1.4.1
341
342 ### Bug fixes
343
344 * Fix too fast redundancy eviction
345 * Fix broken auto blacklist page
346 * Rename signup steps
347 * Fix menu x overflow
348
349
350 ## v1.4.0
351
352 **Since v1.3.1**
353
354 ### IMPORTANT NOTES
355
356 * **Important** Add `plugins` directory in configuration file. **You should configure it in your production.yaml**
357 * **Important:** Deprecate NodeJS 8 (support ends on [December 2019](https://github.com/nodejs/Release#release-schedule)). Please upgrade to NodeJS 10.
358 * **Important:** Updated nginx template (you need to [update manually](https://github.com/Chocobozzz/PeerTube/blob/develop/support/doc/production.md#nginx))
359 * Fix long server responses on dual stack servers: https://github.com/Chocobozzz/PeerTube/commit/fd2ddcae8ff4eb10bf7168ac3c8801f06b37627f
360 * Improve images HTTP cache: https://github.com/Chocobozzz/PeerTube/commit/c928e1364fbdff87f27fd982710b95426a250491
361 * **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)
362 from their admin panel, and then users can choose this theme in their settings
363 * Changed the playlist REST API to fix various issues. See https://github.com/Chocobozzz/PeerTube/pull/1998 for more information
364 * Removed magnet URI support in download modal since most of the BitTorrent clients do not understand the `xs` parameter
365 * Renamed `Overview` page to `Discover`
366
367 ### Security
368
369 * Moderators can only create and update regular users (thanks GGC-Project)
370
371 ### Maintenance
372
373 * Create a dedicated `package.json` for CLI tools to reduce server dependencies size
374 * Add ability to set root password by environment at first start ([@darnuria](https://github.com/darnuria))
375 * Removed unused `uuid` actor field (we already have a unique identifier that is the `preferredUsername`)
376 * Add ability to disable PeerTube log rotation ([@NassimBounouas](https://github.com/NassimBounouas))
377 * Speedup font display ([@BO41](https://github.com/BO41))
378 * Improve static files HTTP cache
379 * Add `--since` and `--until` parameters to import videos script to easily sync external channels ([@fflorent](https://github.com/fflorent))
380 * Optimize `/watch/:uuid` endpoint
381 * Optimize Sequelize (SQL ORM) queries generation (consumes less CPU)
382 * Prune script is faster and can prune avatar files
383
384 ### Features
385
386 * :tada: Support Finnish, Greek and Scottish Gaelic languages
387 * :tada: Add basic plugins and themes support (**beta**): https://docs.joinpeertube.org/#/contribute-plugins
388 * Install plugins or themes from the administration panel
389 * Choose a default theme for your instance
390 * Users can choose the theme they want among the list of themes their administrator installed
391 * :tada: Add ability to upload audio files: PeerTube will merge the audio file and the thumbnail to create a video
392 * Multi step registration:
393 * Add ability for new users to create their default channel
394 * Guess the account username/channel username according to their display name
395 * Add explanations about what the purpose of a username/channel name is, and what a channel is
396 * Improve account video channels page:
397 * Set it as the default page for the account page in order to avoid confusion between the account homepage and the video channel homepage
398 * Display channels in rows with some of their videos
399 * Support more URL parameters in embeds: `muted`, `loop`, `peertubeLink`
400 * Redesign share modal and add customizations:
401 * Start/stop at a specific timestamp
402 * Automatically play/mute/loop the video
403 * Set a specific subtitle by default
404 * Group subscriptions and recently added videos in chronological order
405 * Add ability for users to change their email address
406 * Add ability to update the support field of all channel videos when we update the channel support field
407 * Add a language filter in user preferences to display only videos in specific languages
408 * Add instance follows list in a dedicated tab in the "About" page
409 * Add ability to set to private a public/unlisted video or video playlist
410 * Transcode in the `tmp` directory for s3fs compatibility ([@libertysoft3](https://github.com/libertysoft3))
411 * Add a button to copy account username ([@NassimBounouas](https://github.com/NassimBounouas))
412 * Redirect to "Local videos" page when going to the `peertube` account page
413 * Rearrange search filter options ([@realityfabric](https://github.com/realityfabric))
414 * Close modal after clicking on download ([@LeoMouyna](https://github.com/LeoMouyna))
415 * Add ability for admins to customize emails object prefix and body signature ([@yohanboniface](https://github.com/yohanboniface))
416 * Support 4K transcoding
417 * Add link of the follower profile in administration ([@NassimBounouas](https://github.com/NassimBounouas))
418 * Add subject field in contact form ([@NassimBounouas](https://github.com/NassimBounouas))
419 * Add rate limit to registration and API endpoints
420 * Add "video quota used" sortable column in user admin list ([@darnuria](https://github.com/darnuria))
421 * Automatically update the playlist thumbnail according to the video at the first position (if the user did not set a specific thumbnail)
422 * Automatically remove dead followings
423 * Federate comment deletion if the comment was deleted by the video owner
424
425 ### Bug fixes
426
427 * Fix transcoding information in features table ([LiPek](https://github.com/LiPeK))
428 * Fix tools auth with remote instances
429 * Fix various issues in upload/import scripts
430 * Fix redundancy exceeded quota
431 * Fix login with email ([@NassimBounouas](https://github.com/NassimBounouas))
432 * Fix quota display in features table
433 * Fix transcoding help placement
434 * Fix invisible videos in playlists
435 * Fix HLS transcoding in lower resolutions
436 * Fix various federation issues
437 * Fix mute badge labels
438 * Fix broken follow notification when the actor is deleted
439 * Fix overflow and playlist block width in the watch page
440 * Fix search results overflow on mobile
441 * Fix infinite scroll on big screens
442 * Fix start time on some HLS videos
443 * Fix socket notification with multiple user tabs
444 * Fix redundancy if the instance has already the file on disk
445 * Fix image and plugin CSP
446 * Fix video rows overflow
447 * Dismiss modals on pop state
448 * Go back when cancel NSFW modal
449
450
451 ***Since v1.4.0-rc.1***
452
453 ### Features
454
455 * Add Finnish language support
456
457 ### Bug fixes
458
459 * Fix broken front end on Firefox ESR (60)
460 * Fix prune storage script when using a same directory for multiple storage keys
461 * Relax plugin `package.json` validation
462 * Replace "overview" by "discover" in client titles
463 * Change configuration: `email.object` becomes `email.subject`
464 * Fix user creation by moderators
465 * Fix video playlist element removal
466 * Fix plugin card background color with dark theme
467 * Fix lazy static route with unknown avatars (404 instead of 500)
468 * Fix socket notification with multiple user tabs
469 * Fix redundancy if the instance has already the file on disk
470 * Fix image and plugin CSP
471 * Fix video rows overflow
472 * Dismiss modals on pop state
473 * Go back when cancel NSFW modal
474
475
476 ## v1.4.0-rc.1
477
478 ### IMPORTANT NOTES
479
480 * **Important** Add `plugins` directory in configuration file. **You should configure it in your production.yaml**
481 * **Important:** Deprecate NodeJS 8 (support ends on [December 2019](https://github.com/nodejs/Release#release-schedule)). Please upgrade to NodeJS 10.
482 * **Important:** Updated nginx template (you need to [update manually](https://github.com/Chocobozzz/PeerTube/blob/develop/support/doc/production.md#nginx))
483 * Fix long server responses on dual stack servers: https://github.com/Chocobozzz/PeerTube/commit/fd2ddcae8ff4eb10bf7168ac3c8801f06b37627f
484 * Improve images HTTP cache: https://github.com/Chocobozzz/PeerTube/commit/c928e1364fbdff87f27fd982710b95426a250491
485 * **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)
486 from their admin panel, and then users can choose this theme in their settings
487 * Changed the playlist REST API to fix various issues. See https://github.com/Chocobozzz/PeerTube/pull/1998 for more information
488 * Removed magnet URI support in download modal since most of the BitTorrent clients do not understand the `xs` parameter
489 * Renamed `Overview` page to `Discover`
490
491 ### Maintenance
492
493 * Create a dedicated `package.json` for CLI tools to reduce server dependencies size
494 * Add ability to set root password by environment at first start ([@darnuria](https://github.com/darnuria))
495 * Removed unused `uuid` actor field (we already have a unique identifier that is the `preferredUsername`)
496 * Add ability to disable PeerTube log rotation ([@NassimBounouas](https://github.com/NassimBounouas))
497 * Speedup font display ([@BO41](https://github.com/BO41))
498 * Improve static files HTTP cache
499 * Add `--since` and `--until` parameters to import videos script to easily sync external channels ([@fflorent](https://github.com/fflorent))
500 * Optimize `/watch/:uuid` endpoint
501 * Optimize Sequelize (SQL ORM) queries generation (consumes less CPU)
502 * Prune script is faster and can prune avatar files
503
504 ### Features
505
506 * :tada: Support Greek and Scottish Gaelic languages
507 * :tada: Add basic plugins and themes support (**beta**): https://docs.joinpeertube.org/#/contribute-plugins
508 * Install plugins or themes from the administration panel
509 * Choose a default theme for your instance
510 * Users can choose the theme they want among the list of themes their administrator installed
511 * :tada: Add ability to upload audio files: PeerTube will merge the audio file and the thumbnail to create a video
512 * Multi step registration:
513 * Add ability for new users to create their default channel
514 * Guess the account username/channel username according to their display name
515 * Add explanations about what the purpose of a username/channel name is, and what a channel is
516 * Improve account video channels page:
517 * Set it as the default page for the account page in order to avoid confusion between the account homepage and the video channel homepage
518 * Display channels in rows with some of their videos
519 * Support more URL parameters in embeds: `muted`, `loop`, `peertubeLink`
520 * Redesign share modal and add customizations:
521 * Start/stop at a specific timestamp
522 * Automatically play/mute/loop the video
523 * Set a specific subtitle by default
524 * Group subscriptions and recently added videos in chronological order
525 * Add ability for users to change their email address
526 * Add ability to update the support field of all channel videos when we update the channel support field
527 * Add a language filter in user preferences to display only videos in specific languages
528 * Add instance follows list in a dedicated tab in the "About" page
529 * Add ability to set to private a public/unlisted video or video playlist
530 * Transcode in the `tmp` directory for s3fs compatibility ([@libertysoft3](https://github.com/libertysoft3))
531 * Add a button to copy account username ([@NassimBounouas](https://github.com/NassimBounouas))
532 * Redirect to "Local videos" page when going to the `peertube` account page
533 * Rearrange search filter options ([@realityfabric](https://github.com/realityfabric))
534 * Close modal after clicking on download ([@LeoMouyna](https://github.com/LeoMouyna))
535 * Add ability for admins to customize emails object prefix and body signature ([@yohanboniface](https://github.com/yohanboniface))
536 * Support 4K transcoding
537 * Add link of the follower profile in administration ([@NassimBounouas](https://github.com/NassimBounouas))
538 * Add subject field in contact form ([@NassimBounouas](https://github.com/NassimBounouas))
539 * Add rate limit to registration and API endpoints
540 * Add "video quota used" sortable column in user admin list ([@darnuria](https://github.com/darnuria))
541 * Automatically update the playlist thumbnail according to the video at the first position (if the user did not set a specific thumbnail)
542 * Automatically remove dead followings
543 * Federate comment deletion if the comment was deleted by the video owner
544
545 ### Bug fixes
546
547 * Fix transcoding information in features table ([LiPek](https://github.com/LiPeK))
548 * Fix tools auth with remote instances
549 * Fix various issues in upload/import scripts
550 * Fix redundancy exceeded quota
551 * Fix login with email ([@NassimBounouas](https://github.com/NassimBounouas))
552 * Fix quota display in features table
553 * Fix transcoding help placement
554 * Fix invisible videos in playlists
555 * Fix HLS transcoding in lower resolutions
556 * Fix various federation issues
557 * Fix mute badge labels
558 * Fix broken follow notification when the actor is deleted
559 * Fix overflow and playlist block width in the watch page
560 * Fix search results overflow on mobile
561 * Fix infinite scroll on big screens
562 * Fix start time on some HLS videos
563
564
565 ## v1.3.1
566
567 ### Bug fixes
568
569 * Fix Mastodon remote interactions
570 * Fix missing video download button
571 * Fix error in video upload/update form when scheduling publication
572 * Fix black theme on some pages
573 * Fix video import if auto blacklist is enabled
574
575
576 ## v1.3.0
577
578 **Since v1.2.0**
579
580 ### IMPORTANT NOTES
581
582 * **nginx** Remove `text/html` from `gzip_types`: https://github.com/Chocobozzz/PeerTube/commit/7eeb6a0ba4028d0e20847b846332dd0b7747c7f8 [@bnjbvr](https://github.com/bnjbvr)
583 * Add `streaming_playlists` directory in configuration file. **You should configure it in your production.yaml**
584 * CSP configuration changed: it's now in a [dedicated section](https://github.com/Chocobozzz/PeerTube/blob/develop/config/production.yaml.example#L110)
585
586 ### Maintenance
587
588 * 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
589 * Add reminder to restart PeerTube in upgrade script ([@ldidry](https://github.com/ldidry))
590 * Add argument to dockerfile to pass options to npm run build ([@NaPs](https://github.com/NaPs))
591 * Add `NOCLIENT` env support to only install server dependencies. Example: `NOCLIENT=true yarn install --pure-lockfile` ([@rigelk](https://github.com/rigelk))
592
593 ### Docker
594
595 * **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)
596 * **Important**: Add a network section to [docker-compose.yml template](https://github.com/Chocobozzz/PeerTube/blob/develop/support/docker/production/docker-compose.yml)
597 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))
598 * Fix SMTP default configuration ([@Nutomic](https://github.com/nutomic))
599
600 ### Features
601
602 * Add video playlist support
603 * A user has a default `Watch-later` playlist
604 * A user can create private, unlisted or public playlists
605 * An element in this playlist can start or stop at specific timestamps (you can create some kind of zapping for example)
606 * 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.
607 It's useful to organize your videos, or create a playlist of videos you like and share the link on the web etc
608 * Add quarantine videos (auto blacklist videos on upload) feature :tada: ([@joshmorel](https://github.com/joshmorel))
609 * Add Japanese & Nederlands & Português (Portugal) support
610 * Add experimental HLS support
611 * Better playback
612 * Better bandwidth management (for both client & server)
613 * 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)
614 * Requires ffmpeg >= 4
615 * Better instance's followers management:
616 * Add ability to remove an instance's follower
617 * Add ability to forbid all new instance's followers
618 * Add ability to manually approve new instance's followers
619 * Add notification on new instance's follower
620 * Improve UI:
621 * Increase player default height
622 * Reduce big play button border width
623 * Increase thumbnail sizes
624 * Add hover effect on video miniature
625 * Add "my library" section in menu
626 * Add missing icons in some buttons/dropdown
627 * 2 rows per overview section
628 * Increase video thumbnail blur ([@Zig-03](https://github.com/Zig-03))
629 * Improve video miniatures list on mobile
630 * Add animation when opening user notifications
631 * Add ability for admins to disable the tracker (and so the P2P aspect of PeerTube, in order to improve users privacy for example)
632 * Add original publication date attribute to videos, and add ability to filter on it (Andrés Maldonado)
633 * Add video miniature dropdown
634 * Add ability for admins to declare their instance as dedicated to NSFW content
635 * Improve SEO (there is still work to be done)
636 * Login is now case insensitive (if using official web client)
637 * Add NSFW policy & users signup policy & auto blacklist strategy in features table in about page
638 * Improve comment deletion warning
639 * Restore videos list component on history back
640 * Add ability to consult server logs in admin
641 * Allow administrators to change/reset a user's password ([@rigelk](https://github.com/rigelk))
642 * Add a debug page to help admins to fix IP configuration issues
643 * Add ability for admins to limit users videos history size
644 * Add ability for admins to delete old remote videos views (reduce database size)
645 * Optimize video update page load
646 * Less refresh jobs
647 * Cleanup invalid AP rates/comments/shares
648 * Better videos redundancy config error handling
649 * Check emails are enabled if the admin requires email verification ([@joshmorel](https://github.com/joshmorel))
650 * Add `Add /accounts/:username/ratings endpoint` ([@yohanboniface](https://github.com/yohanboniface))
651 * Allow to control API rates limit from configuration ([@yohanboniface](https://github.com/yohanboniface))
652
653 ### Bug fixes
654
655 * Don't notify prior to scheduled update ([@joshmorel](https://github.com/joshmorel))
656 * Fix account description database error
657 * Fix Pleroma follow
658 * Fix greek label
659 * Fix email notification for some users
660 * Fix translation of "Copy magnet URI"
661 * Fix negative seconds by displaying 0 instead [@zacharystenger](https://github.com/zacharystenger)
662 * Fix URL in video import notification
663 * Don't close help popover when clicking on it
664 * Fix `tmp` directory cleanup
665 * Fix custom CSS help
666 * Fix JSONLD context
667 * Fix privacy label display in upload form
668 * Fix my account settings responsiveness
669 * Fix keyboard icon transparency ([@gbip](https://github.com/gbip))
670 * Fix contact admin button overflow
671 * Wait config to be loaded before loading login/signup
672 * Privacy is optional in upload API endpoint
673 * Fix hotkeys help popup overflow
674
675 ***Since v1.3.0-rc.2***
676
677 ### Bug fixes
678
679 * Fix duplicates in playlist add component
680 * Fix crash in files cache
681 * Fix playlist view/update 403
682 * Fix search with bad webfinger handles
683
684
685 ## v1.3.0-rc.2
686
687 ### Docker
688
689 * Add a network section to [docker-compose.yml template](https://github.com/Chocobozzz/PeerTube/blob/develop/support/docker/production/docker-compose.yml)
690 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))
691
692 ### Bug fixes
693
694 * Fix playlist block width when the player is in theater mode
695 * Reset playlist add dropdown in watch page on video change
696 * Fix follow with Mastodon
697 * Fix playlist elements reordering
698 * Fix my videos list pagination
699 * Fix video thumbnails in admin blacklist page
700 * Fix video views that are not considered
701
702
703 ## v1.3.0-rc.1
704
705 ### IMPORTANT NOTES
706
707 * **nginx** Remove `text/html` from `gzip_types`: https://github.com/Chocobozzz/PeerTube/commit/7eeb6a0ba4028d0e20847b846332dd0b7747c7f8 [@bnjbvr](https://github.com/bnjbvr)
708 * Add `streaming_playlists` directory in configuration file. **You should configure it in your production.yaml**
709 * CSP configuration changed: it's now in a [dedicated section](https://github.com/Chocobozzz/PeerTube/blob/develop/config/production.yaml.example#L110)
710
711 ## Maintenance
712
713 * 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
714 * Add reminder to restart PeerTube in upgrade script ([@ldidry](https://github.com/ldidry))
715 * Add argument to dockerfile to pass options to npm run build ([@NaPs](https://github.com/NaPs))
716 * Add `NOCLIENT` env support to only install server dependencies. Example: `NOCLIENT=true yarn install --pure-lockfile` ([@rigelk](https://github.com/rigelk))
717
718 ### Docker
719
720 * **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)
721 * Fix SMTP default configuration ([@Nutomic](https://github.com/nutomic))
722
723 ### Features
724
725 * Add video playlist support
726 * A user has a default `Watch-later` playlist
727 * A user can create private, unlisted or public playlists
728 * An element in this playlist can start or stop at specific timestamps (you can create some kind of zapping for example)
729 * 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.
730 It's useful to organize your videos, or create a playlist of videos you like and share the link on the web etc
731 * Add quarantine videos (auto blacklist videos on upload) feature :tada: ([@joshmorel](https://github.com/joshmorel))
732 * Add Japanese & Nederlands & Português (Portugal) support
733 * Add experimental HLS support
734 * Better playback
735 * Better bandwidth management (for both client & server)
736 * 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)
737 * Requires ffmpeg >= 4
738 * Better instance's followers management:
739 * Add ability to remove an instance's follower
740 * Add ability to forbid all new instance's followers
741 * Add ability to manually approve new instance's followers
742 * Add notification on new instance's follower
743 * Improve UI:
744 * Increase player default height
745 * Reduce big play button border width
746 * Increase thumbnail sizes
747 * Add hover effect on video miniature
748 * Add "my library" section in menu
749 * Add missing icons in some buttons/dropdown
750 * 2 rows per overview section
751 * Increase video thumbnail blur ([@Zig-03](https://github.com/Zig-03))
752 * Improve video miniatures list on mobile
753 * Add animation when opening user notifications
754 * Add ability for admins to disable the tracker (and so the P2P aspect of PeerTube, in order to improve users privacy for example)
755 * Add original publication date attribute to videos, and add ability to filter on it (Andrés Maldonado)
756 * Add video miniature dropdown
757 * Add ability for admins to declare their instance as dedicated to NSFW content
758 * Improve SEO (there is still work to be done)
759 * Login is now case insensitive (if using official web client)
760 * Add NSFW policy & users signup policy & auto blacklist strategy in features table in about page
761 * Improve comment deletion warning
762 * Restore videos list component on history back
763 * Add ability to consult server logs in admin
764 * Allow administrators to change/reset a user's password ([@rigelk](https://github.com/rigelk))
765 * Add a debug page to help admins to fix IP configuration issues
766 * Add ability for admins to limit users videos history size
767 * Add ability for admins to delete old remote videos views (reduce database size)
768 * Optimize video update page load
769 * Less refresh jobs
770 * Cleanup invalid AP rates/comments/shares
771 * Better videos redundancy config error handling
772 * Check emails are enabled if the admin requires email verification ([@joshmorel](https://github.com/joshmorel))
773 * Add `Add /accounts/:username/ratings endpoint` ([@yohanboniface](https://github.com/yohanboniface))
774 * Allow to control API rates limit from configuration ([@yohanboniface](https://github.com/yohanboniface))
775
776 ### Bug fixes
777
778 * Don't notify prior to scheduled update ([@joshmorel](https://github.com/joshmorel))
779 * Fix account description database error
780 * Fix Pleroma follow
781 * Fix greek label
782 * Fix email notification for some users
783 * Fix translation of "Copy magnet URI"
784 * Fix negative seconds by displaying 0 instead [@zacharystenger](https://github.com/zacharystenger)
785 * Fix URL in video import notification
786 * Don't close help popover when clicking on it
787 * Fix `tmp` directory cleanup
788 * Fix custom CSS help
789 * Fix JSONLD context
790 * Fix privacy label display in upload form
791 * Fix my account settings responsiveness
792 * Fix keyboard icon transparency ([@gbip](https://github.com/gbip))
793 * Fix contact admin button overflow
794 * Wait config to be loaded before loading login/signup
795 * Privacy is optional in upload API endpoint
796 * Fix hotkeys help popup overflow
797
798
799 ## v1.2.1
800
801 ### Bug fixes
802
803 * **Important** Fix invalid `From` email header in contact form that could lead to the blacklisting of your SMTP server
804 * Fix too long display name overflow in menu
805 * Fix mention notification when a remote account mention a local account that has the same username than yours
806 * Fix access to muted servers table for moderators
807 * Don't crash notification popup on bug
808 * Fix reset password script that leaks password on invalid value
809
810
811 ## v1.2.0
812
813 ### BREAKING CHANGES
814
815 * **Docker:** `PEERTUBE_TRUST_PROXY` env variable is now an array ([LecygneNoir](https://github.com/LecygneNoir))
816 * **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
817 * **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**
818 * **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**
819 * Moderators can manage users now (add/delete/update/block)
820 * Add `tmp` and `redundancy` directories in configuration file. **You should configure them in your production.yaml**
821
822 ### Maintenance
823
824 * Check free storage before upgrading in upgrade script ([@Nutomic](https://github.com/nutomic))
825 * Explain that PeerTube must be stopped in prune storage script
826 * Add some security directives in the systemd unit configuration file ([@rigelk](https://github.com/rigelk) & [@mkoppmann](https://github.com/mkoppmann))
827 * Update FreeBSD startup script ([@gegeweb](https://github.com/gegeweb))
828
829 ### Docker
830
831 * Patch docker entrypoint to speed up the chown at startup ([LecygneNoir](https://github.com/LecygneNoir))
832
833 ### Features
834
835 * Add Russian, Polish and Italian languages
836 * Add user notifications:
837 * Notification types:
838 * Comment on my video
839 * New video from my subscriptions
840 * New video abuses (for moderators)
841 * Blacklist/Unblacklist on my video
842 * Video import finished (error or success)
843 * Pending video published (after transcoding or a scheduled update)
844 * My account or one of my channel has a new follower
845 * Someone (except muted accounts) mentioned me in comments
846 * A user registered on the instance (for moderators)
847 * Notification actions:
848 * Add a web notification
849 * Send an english email
850 * Add contact form in about page (**enabled by default**)
851 * Add ability to unfederate a local video in blacklist modal (**checkbox checked by default**)
852 * Support additional video extensions if transcoding is enabled (**enabled by default**)
853 * Redirect to the last url on login
854 * Add ability to automatically set the video caption in URL. Example: https://peertube2.cpy.re/videos/watch/9c9de5e8-0a1e-484a-b099-e80766180a6d?subtitle=ru
855 * Automatically enable the last selected caption when watching a video
856 * Add ability to disable, clear and list user videos history
857 * Add a button to help to translate peertube
858 * Add text in the report modal to explain to whom the report will be sent
859 * Open my account menu entries on hover
860 * Explain what features are enabled on the instance in the about page
861 * Add an error message in the forgot password modal if the instance email system is not configured
862 * Add sitemap
863 * Add well known url to change password ([@rigelk](https://github.com/rigelk))
864 * 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))
865 * Add CSP ([@rigelk](https://github.com/rigelk) & [@Nutomic](https://github.com/nutomic))
866 * Update title and description HTML tags when rendering video HTML page
867 * Add webfinger support for remote follows ([@acid-chicken](https://github.com/acid-chicken))
868 * Add tooltip to explain how the trending algorithm works ([@auberanger](https://github.com/auberanger))
869 * Warn users when they want to delete a channel because they will not be able to create another channel with the same name
870 * Warn users when they leave the video upload/update (on page refresh/tab close)
871 * Set max user name, user display name, channel name and channel display name lengths to 50 characters ([@McFlat](https://github.com/mcflat))
872 * Increase video abuse length to 3000 characters
873 * Add totalLocalVideoFilesSize in the stats endpoint
874
875 ### Bug fixes
876
877 * Fix the addition of captions to a video
878 * Fix federation of some videos
879 * Fix NSFW blur on search
880 * Add error message when trying to upload .ass subtitles
881 * Fix default homepage in the progressive web application
882 * Don't crash on queue error
883 * Fix EXDEV errors if you have multiple mount points
884 * Fix broken audio in transcoding with some videos
885 * Fix crash on getVideoFileStream issue
886 * Fix followers search
887 * Remove trailing `/` in CLI import script ([@HesioZ](https://github.com/HesioZ/))
888 * Use origin video url in canonical tag
889 * Fix captions in HTTP fallback
890 * Automatically refresh remote actors to fix deleted remote actors that are still displayed on some instances
891 * Add missing translations in video embed page
892 * Fix some styling issues in dark mode
893 * Fix transcoding issues with some videos
894 * Fix Mac OS mkv/avi upload
895 * Fix menu overflow on mobile
896 * Fix ownership button icons ([@joshmorel](https://github.com/joshmorel))
897
898
899 ## v1.1.0
900
901 ***Since v1.0.1***
902
903 ### BREAKING CHANGES
904
905 * **Docker:** `PEERTUBE_TRUST_PROXY` env variable is now an array ([LecygneNoir](https://github.com/LecygneNoir))
906
907 ### Maintenance
908
909 * Improve REST API documentation ([@rigelk](https://github.com/rigelk))
910 * Add basic ActivityPub documentation ([@rigelk](https://github.com/rigelk))
911 * Add CLI option to run PeerTube without client ([@rigelk](https://github.com/rigelk))
912 * Add manpage to peertube CLI ([@rigelk](https://github.com/rigelk))
913 * Make backups of files in optimize-old-videos script ([@Nutomic](https://github.com/nutomic))
914 * Allow peertube-import-videos.ts CLI script to run concurrently ([@McFlat](https://github.com/mcflat))
915
916 ### Scripts
917
918 * Use DB information from config/production.yaml in upgrade script ([@ldidry](https://github.com/ldidry))
919 * Add REPL script ([@McFlat](https://github.com/mcflat))
920
921 ### Docker
922
923 * Add search and import settings env settings env variables ([@kaiyou](https://github.com/kaiyou))
924 * Add docker dev image ([@am97](https://github.com/am97))
925 * Improve docker compose template ([@Nutomic](https://github.com/nutomic))
926 * Add postfix image
927 * Redirect HTTP -> HTTPS
928 * Disable Træfik web UI
929
930 ### Features
931
932 * Automatically resume videos if the user is logged in
933 * Hide automatically the menu when the window is resized ([@BO41](https://github.com/BO41))
934 * Remove confirm modal for JavaScript/CSS injection ([@scanlime](https://github.com/scanlime))
935 * Set bitrate limits for transcoding ([@Nutomic](https://github.com/nutomic))
936 * Add moderation tools in the account page
937 * Add bulk actions in users table (Delete/Ban for now)
938 * Add search filter in admin users table
939 * Add search filter in admin following
940 * Add search filter in admin followers
941 * Add ability to list all local videos
942 * Add ability for users to mute an account or an instance
943 * Add ability for administrators to mute an account or an instance
944 * Rename "News" category to "News & Politics" ([@daker](https://github.com/daker))
945 * Add explicit error message when changing video ownership ([@lucas-dclrcq](https://github.com/lucas-dclrcq))
946 * Improve description of the HTTP video import feature ([@rigelk](https://github.com/rigelk))
947 * Set shorter keyframe interval for transcoding (2 seconds) ([@Nutomic](https://github.com/nutomic))
948 * Add ability to disable webtorrent (as a user) ([@rigelk](https://github.com/rigelk))
949 * Make abuse-delete clearer ([@barbeque](https://github.com/barbeque))
950 * Adding minimum signup age conforming to ceiling GPDR age ([@rigelk](https://github.com/rigelk))
951 * Feature/description support fields length 1000 ([@McFlat](https://github.com/mcflat))
952 * Add background effect to activated menu entry
953 * Improve video upload error handling
954 * Improve message visibility on signup
955 * Auto login user on signup if email verification is disabled
956 * Speed up PeerTube startup (in particular the first one)
957 * Delete invalid or deleted remote videos
958 * Add ability to admin to set email as verified ([@joshmorel](https://github.com/joshmorel))
959 * Add separators in user moderation dropdown
960
961 ### Bug fixes
962
963 * AP mimeType -> mediaType
964 * PeerTube is not in beta anymore
965 * PeerTube is not in alpha anymore :p
966 * Fix optimize old videos script
967 * Check follow constraints when getting a video
968 * Fix application-config initialization in CLI tools ([@Yetangitu](https://github.com/Yetangitu))
969 * Fix video pixel format compatibility (using yuv420p) ([@rigelk](https://github.com/rigelk))
970 * Fix video `state` AP context ([tcitworld](https://github.com/tcitworld))
971 * Fix Linked Signature compatibility
972 * Fix AP collections pagination
973 * Fix too big thumbnails (when using URL import)
974 * Do not host remote AP objects: use redirection instead
975 * Fix video miniature with a long name
976 * Fix video views inconsistencies inside the federation
977 * Fix video embed in Wordpress Gutenberg
978 * Fix video channel videos url when scrolling
979 * Fix player progress bar/seeking when changing resolution
980 * Fix search tab title with no search
981 * Fix YouTube video import with some videos
982
983 ***Since v1.1.0-rc.1***
984
985 ### Bug fixes
986
987 * Fix AP infinite redirection
988 * Fix trending page
989
990
991 ## v1.1.0-rc.1 (since v1.1.0-alpha.2)
992
993 ### Maintenance
994
995 * Improve REST API documentation ([@rigelk](https://github.com/rigelk))
996 * Add basic ActivityPub documentation ([@rigelk](https://github.com/rigelk))
997 * Add CLI option to run PeerTube without client ([@rigelk](https://github.com/rigelk))
998 * Add manpage to peertube CLI ([@rigelk](https://github.com/rigelk))
999 * Make backups of files in optimize-old-videos script ([@Nutomic](https://github.com/nutomic))
1000 * Allow peertube-import-videos.ts CLI script to run concurrently ([@McFlat](https://github.com/mcflat))
1001
1002 ### Docker
1003
1004 * Improve docker compose template ([@Nutomic](https://github.com/nutomic))
1005 * Add postfix image
1006 * Redirect HTTP -> HTTPS
1007 * Disable Træfik web UI
1008 * Add ability to set an array in `PEERTUBE_TRUST_PROXY` ([LecygneNoir](https://github.com/LecygneNoir))
1009
1010 ### Features
1011
1012 * Add background effect to activated menu entry
1013 * Improve video upload error handling
1014 * Improve message visibility on signup
1015 * Auto login user on signup if email verification is disabled
1016 * Speed up PeerTube startup (in particular the first one)
1017 * Delete invalid or deleted remote videos
1018 * Add ability to admin to set email as verified ([@joshmorel](https://github.com/joshmorel))
1019 * Add separators in user moderation dropdown
1020
1021 ### Bug fixes
1022
1023 * Check follow constraints when getting a video
1024 * Fix application-config initialization in CLI tools ([@Yetangitu](https://github.com/Yetangitu))
1025 * Fix video pixel format compatibility (using yuv420p) ([@rigelk](https://github.com/rigelk))
1026 * Fix video `state` AP context ([tcitworld](https://github.com/tcitworld))
1027 * Fix Linked Signature compatibility
1028 * Fix AP collections pagination
1029 * Fix too big thumbnails (when using URL import)
1030 * Do not host remote AP objects: use redirection instead
1031 * Fix video miniature with a long name
1032 * Fix video views inconsistencies inside the federation
1033 * Fix video embed in Wordpress Gutenberg
1034 * Fix video channel videos url when scrolling
1035 * Fix player progress bar/seeking when changing resolution
1036 * Fix search tab title with no search
1037 * Fix YouTube video import with some videos
1038
1039
1040 ## v1.1.0-alpha.2 (since v1.1.0-alpha.1)
1041
1042 ### Security/Maintenance/Federation
1043
1044 * Add HTTP Signature in addition to Linked Signature:
1045 * It's faster
1046 * Will allow us to use RSA Signature 2018 in the future without too much incompatibilities in the peertube federation
1047
1048 ### Features
1049
1050 * Set shorter keyframe interval for transcoding (2 seconds) ([@Nutomic](https://github.com/nutomic))
1051 * Add ability to disable webtorrent (as a user) ([@rigelk](https://github.com/rigelk))
1052 * Make abuse-delete clearer ([@barbeque](https://github.com/barbeque))
1053 * Adding minimum signup age conforming to ceiling GPDR age ([@rigelk](https://github.com/rigelk))
1054 * Feature/description support fields length 1000 ([@McFlat](https://github.com/mcflat))
1055
1056 ### Bug fixes
1057
1058 * Scale bitrate linearly with FPS ([@Nutomic](https://github.com/nutomic))
1059 * AP mimeType -> mediaType
1060 * PeerTube is not in beta anymore
1061 * PeerTube is not in alpha anymore :p
1062 * Fix optimize old videos script
1063
1064
1065 ## v1.0.1
1066
1067 ### Security/Maintenance/Federation
1068
1069 * Add HTTP Signature in addition to Linked Signature:
1070 * It's faster
1071 * Will allow us to use RSA Signature 2018 in the future without too much incompatibilities in the peertube federation
1072
1073
1074 ## v1.1.0-alpha.1
1075
1076 We released this alpha version because some admins/users need some moderation tools we implemented in recent weeks.
1077 This release could contain bugs. Don't expect a stable v1.1.0 until December :)
1078
1079 ### Scripts
1080
1081 * Use DB information from config/production.yaml in upgrade script ([@ldidry](https://github.com/ldidry))
1082 * Add REPL script ([@McFlat](https://github.com/mcflat))
1083
1084 ### Docker
1085
1086 * Add search and import settings env settings env variables ([@kaiyou](https://github.com/kaiyou))
1087 * Add docker dev image ([@am97](https://github.com/am97))
1088
1089 ### Features
1090
1091 * Automatically resume videos if the user is logged in
1092 * Hide automatically the menu when the window is resized ([@BO41](https://github.com/BO41))
1093 * Remove confirm modal for JavaScript/CSS injection ([@scanlime](https://github.com/scanlime))
1094 * Set bitrate limits for transcoding ([@Nutomic](https://github.com/nutomic))
1095 * Add moderation tools in the account page
1096 * Add bulk actions in users table (Delete/Ban for now)
1097 * Add search filter in admin users table
1098 * Add search filter in admin following
1099 * Add search filter in admin followers
1100 * Add ability to list all local videos
1101 * Add ability for users to mute an account or an instance
1102 * Add ability for administrators to mute an account or an instance
1103 * Rename "News" category to "News & Politics" ([@daker](https://github.com/daker))
1104 * Add explicit error message when changing video ownership ([@lucas-dclrcq](https://github.com/lucas-dclrcq))
1105 * Improve description of the HTTP video import feature ([@rigelk](https://github.com/rigelk))
1106
1107
1108 ## v1.0.0
1109
1110 ### SECURITY
1111
1112 * Add more headers to HTTP signature to avoid actor impersonation by replaying modified signed HTTP requests (thanks Thibaut Girka)
1113
1114 ### Bug fixes
1115
1116 * Check video exists before extending expiration
1117 * Correctly delete redundancy files
1118 * Fix account URI in remote comment modal ([@rigelk](https://github.com/rigelk))
1119 * Fix avatar update
1120 * Avoid old issue regarding duplicated hosts in database
1121
1122
1123 ## v1.0.0-rc.2
1124
1125 ### Bug fixes
1126
1127 * Fix config endpoint
1128
1129
1130 ## v1.0.0-rc.1
1131
1132 ### Features
1133
1134 * Allow specification of channel ID in `peertube-upload.js` ([@anoadragon453](https://github.com/anoadragon453))
1135 * Show last commit hash alongside server version in footer ([@rigelk](https://github.com/rigelk))
1136 * Add comment feeds in watch page
1137
1138 ### Bug fixes
1139
1140 * Fix dnt route (yes again, but now we have unit tests for this route :D)
1141 * Check video channel name is unique when creating a new one
1142 * Fix video fps validator (prevent redundancy/refresh of some old videos)
1143 * Allow empty search on client side ([@rigelk](https://github.com/rigelk))
1144 * Correctly forward comment deletion
1145
1146
1147 ## v1.0.0-beta.16
1148
1149 ### BREAKING CHANGES
1150
1151 * Add prompt to upgrade.sh to install pre-release version ([@Nutomic](https://github.com/nutomic))
1152
1153 ### Features
1154
1155 * Add shortcuts icon in menu
1156 * Improve overview section titles
1157 * Check old password before change ([@BO41](https://github.com/BO41))
1158 * Adding frame-by-frame hotkey support in player ([@rigelk](https://github.com/rigelk))
1159
1160 ### Bug fixes
1161
1162 * Stop seeding torrents after a failed import
1163 * Fix player crashing the web browser
1164 * Fix player performance with small devices
1165 * Fix some untranslated strings
1166 * Fix video files duplicated when fps is null ([@rigelk](https://github.com/rigelk))
1167 * Fix video import of some youtube videos
1168 * Fix (long) video description when importing by url
1169 * Fix Mastodon federation with a comment reply
1170 * Correctly delete directories on import
1171 * Remove duplicated videos on unfollow/delete redundancy
1172 * Fix 404 on manifest
1173 * Hide useless error when destroying fake renderer
1174 * Display other videos on big screens on the right of the watch page
1175 * Fix no other videos displayed on some videos
1176 * Fix hidden advanced options in upload form
1177 * Fix message space on video upload cancel ([@rigelk](https://github.com/rigelk))
1178 * Fix error when updating many video captions
1179 * Fix "my account" subtitles
1180 * Fix error when clicking on the disabled publish button
1181 * Increase timeout on upload endpoint
1182 * Fix redundancy with videos already duplicated by another instance(s)
1183 * Correctly delete files on failed import
1184
1185
1186 ## v1.0.0-beta.15
1187
1188 ### Features
1189
1190 * Improve subscription button ([@rigelk](https://github.com/rigelk))
1191 * Display it for unlogged users
1192 * Add RSS feed
1193 * Allow remote follow
1194 * Allow remote comment ([@rigelk](https://github.com/rigelk))
1195 * Support Simplified Chinese ([@SerCom-KC](https://github.com/SerCom-KC))
1196
1197 ### Bug fixes
1198
1199 * Fix redundancy with old PeerTube torrents
1200 * Fix crash with `/static/dnt-policy/dnt-policy-1.0.txt` route
1201 * Fix redundancy totalVideos stats
1202 * Reduce video import TTL to 1 hour
1203 * Only duplicate public videos
1204
1205
1206 ## v1.0.0-beta.14
1207
1208 ### Features
1209
1210 * Video redundancy system (experimental)
1211 * Add peertube script (see [the doc](/support/doc/tools.md#cli-wrapper)) ([@rigelk](https://github.com/rigelk))
1212 * Improve download modal ([@rigelk](https://github.com/rigelk))
1213 * Add redirect after login ([@BO41](https://github.com/BO41))
1214 * Improve message when removing a user
1215 * Improve responsive on small screens
1216 * Improve performance:
1217 * Overview endpoint
1218 * SQL requests of watch page endpoints
1219 * SQL requests of ActivityPub endpoints
1220 * Cache user token
1221 * Videos infinite scroll in the web browser
1222 * Add warning if one of the storage directory is in the peertube production directory
1223 * Auto focus first field on login ([@rigelk](https://github.com/rigelk))
1224 * Add chevron hotkeys to change playback rate ([@rigelk](https://github.com/rigelk))
1225
1226 ### Bug fixes
1227
1228 * Fix 24 hours delay to process views
1229 * Fix tag search on overview page
1230 * Handle actors search beginning with '@'
1231 * Fix "no results" on overview page
1232 * Fix iOS player playback/subtitles menu
1233 * Fix description/comments that break the video watch page
1234 * Don't get recommended videos twice
1235 * Fix admin access to moderators
1236 * Fix nav tab and tag color in dark theme ([@rigelk](https://github.com/rigelk))
1237 * Fix help popover overflow ([@rigelk](https://github.com/rigelk))
1238 * Fix comment deletion with mastodon (only with new comments)
1239
1240
1241 ## v1.0.0-beta.13
1242
1243 ### Features
1244
1245 * Improve keyboard navigation ([@rigelk](https://github.com/rigelk))
1246 * Remember theme in local storage ([@rigelk](https://github.com/rigelk))
1247
1248 ### Bug fixes
1249
1250 * Fix upgrade/installation on node 8.12 (bcrypt issue)
1251 * Fix video channel deletion
1252 * Fix video channel RSS
1253 * Fix video views increment
1254
1255
1256 ## v1.0.0-beta.12
1257
1258 **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**
1259
1260 ### BREAKING CHANGES
1261
1262 * Users can now use the name they want for their channel.
1263 We will therefore favour the display of video channel handles/names instead of account in the future.
1264
1265 ### Documentation
1266
1267 * Add SECURITY.md document
1268 * Add TCP/IP tuning template to prevent buffer bloat/latency ([@scanlime](https://github.com/scanlime))
1269 * Add `parse-log` admin tool documentation
1270 * Improve README schemas ([@Edznux](https://github.com/edznux))
1271
1272 ### nginx template
1273
1274 * Add gzip support ([@scanlime](https://github.com/scanlime))
1275
1276 ### Docker template
1277
1278 * Add quota to the docker configuration values ([@kaiyou](https://github.com/kaiyou))
1279
1280 ### Features
1281
1282 * Add portuguese and swedish languages
1283 * Support user subscriptions
1284 * Add ability to search videos or channels with their URL/handle (can be opt-out by the admin)
1285 * Add "videos overview" page (pick randomly some categories/tags/channels and display their videos)
1286 * Add ability to set a name (left part of the handle) to a channel instead of UUID
1287 * Users can "give" their videos to other local users (WIP, feedback welcome) ([@grizio](https://github.com/grizio))
1288 * Add keyboard shortcuts (press `?` to see them) ([@rigelk](https://github.com/rigelk))
1289 * Add ability to set daily video upload quota to users ([@Nutomic](https://github.com/nutomic))
1290 * Add user email verification (can be opt-in by the admin) ([@joshmorel](https://github.com/joshmorel))
1291 * Improve video watch page style ([@rigelk](https://github.com/rigelk))
1292 * Trending page takes into account views from the last x days (defined by the admin in the configuration file)
1293 * Add "start at" checkbox in the video share modal
1294 * Add instance capabilities table in the signup page ([@rigelk](https://github.com/rigelk))
1295 * Improve video abuses display in admin ([@Nutomic](https://github.com/nutomic))
1296 * Add "my videos" shortcut in menu ([@LeoMouyna](https://github.com/LeoMouyna))
1297 * Support 0.75 and 1.25 playback speeds ([@Glandos](https://github.com/Glandos))
1298 * Improve error message on actor name conflict
1299 * Improve videos list/search SQL query (split it into 2 queries)
1300 * Make left menu show the scrollbar only on hover/focus ([@rigelk](https://github.com/rigelk))
1301 * Other videos column in watch page show related tagged videos if possible ([@jorropo](https://github.com/jorropo))
1302 * Password change errors more friendly ([@jorropo](https://github.com/jorropo))
1303 * Improve labels for video privacies (video upload/update)
1304 * Add theming via CSS custom properties ([@rigelk](https://github.com/rigelk))
1305 * Add dark theme ([@rigelk](https://github.com/rigelk))
1306 * Add input color to cope with browser themes ([@rigelk](https://github.com/rigelk))
1307
1308 ### Bug fixes
1309
1310 * Fix player video playback (videos never ends or infinite load after seeking)
1311 * Fix video URL import with videos having a small title
1312 * Make HSTS opt-in and leave it to the reverse-proxy ([@rigelk](https://github.com/rigelk))
1313 * Fix search results on mobile
1314 * Do not import live streaming
1315 * Fix NSFW filter when the instance decides to hide them and the user decides to list them
1316 * Delete highlighted comment too if needed
1317 * Fix ffmpeg auto thread admin configuration ([@jorropo](https://github.com/jorropo))
1318 * ActivityPub: use height instead of width to represent the video resolution
1319 * Fix thumbnail/preview in upload.js script
1320 * Fix import-videos.js duplicate detection
1321 * Fix occitan language label
1322
1323
1324 ## v1.0.0-beta.11
1325
1326 **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**
1327
1328 ### Features
1329
1330 * Add ability to import videos from a URL (YouTube, Dailymotion, Vimeo, raw file etc) or torrent file/magnet.
1331 Should be explicitly enabled by the administrator in the configuration file
1332 * Add german, spanish, taiwan (traditional chinese) and occitan languages
1333 * Add ability to delete our account
1334 * Add ability to ban a user
1335 * Add ability to set a moderation comment to an abuse
1336 * Add state (pending, accepted, rejected) attribute to an abuse
1337 * Add ability to set a reason when blacklisting a video
1338 * Add ability to blacklist local videos
1339 * Improve abuse and blacklist tables
1340 * Add user quota used in users list
1341 * Tracker only accept known infohash (avoid people to use your tracker for files unrelated to PeerTube)
1342 * Add database pool configuration ([@rigelk](https://github.com/rigelk))
1343 * Add audit log ([@Nautigsam](https://github.com/Nautigsam))
1344 * Add ffmpeg nice and auto thread ([@jorropo](https://github.com/jorropo))
1345 * Upgrade to bootstrap 4
1346 * DNT support
1347
1348 ### Bug fixes
1349
1350 * Fix videos FPS federation
1351 * Cleanup request files on bad request
1352 * Handle truncated markdown links
1353 * Fix dropdown position in menu
1354 * Translate subtitle languages in player
1355 * Translate player according the language of the interface
1356 * Fix reset my password button ([@joshmorel](https://github.com/joshmorel))
1357
1358
1359 ## v1.0.0-beta.10
1360
1361 **See the v1.0.0-beta.10.pre.1 changelog, in particular how to upgrade**
1362
1363 ### Bug fixes (from beta.10.pre.3)
1364
1365 * Fix caption upload on Mac OS
1366
1367
1368 ## v1.0.0-beta.10.pre.3
1369
1370 **See the v1.0.0-beta.10.pre.1 changelog, in particular how to upgrade**
1371
1372 ### Bug fixes (from beta.10.pre.2)
1373
1374 * Try to fix the infinite creation of Delete actor jobs by deleting kue migration
1375 * Cleanup SQL indexes
1376 * Try to optimize SQL search query
1377 * Try to optimize videos list SQL query
1378 * Add more logs and fix logger when having an error
1379 * Move subscription helper in the account line in video watch page
1380 * Fix responsive on videos search
1381 * Refresh orphan actors
1382 * Don't send a follow request if the follow was already accepted
1383
1384
1385 ## v1.0.0-beta.10.pre.2
1386
1387 **See the v1.0.0-beta.10.pre.1 changelog, in particular how to upgrade**
1388
1389 ### Bug fixes (from beta.10.pre.1)
1390
1391 * Fix captions/subtitles freeze in player
1392 * Fix attribute label width in video watch page
1393 * Fix player playback in Chrome
1394 * Revert SQL optimization when listing videos: it breaks the connection pool of some instances
1395
1396
1397 ## v1.0.0-beta.10.pre.1
1398
1399 This version is a pre release because it contains many important changes, and requires manual steps before upgrading.
1400
1401 **Important:** Before upgrading run the following commands (no need to stop PeerTube) on your PeerTube database (in this example it's *peertube_prod*):
1402
1403 ```
1404 $ sudo -u postgres psql peertube_prod -c 'CREATE EXTENSION IF NOT EXISTS unaccent;'
1405 $ sudo -u postgres psql peertube_prod -c 'CREATE EXTENSION IF NOT EXISTS pg_trgm;'
1406 ```
1407
1408 You will need [PostgreSQL Contrib](https://www.postgresql.org/docs/9.6/static/contrib.html).
1409
1410 ### BREAKING CHANGES
1411
1412 * Require `unaccent` and `pg_trgm` PostgreSQL extension for the PeerTube database
1413 * `category` filter param is replaced by `categoryOneOf`
1414 * Switch job queue to [Bull](https://github.com/OptimalBits/bull). **PeerTube will not migrate your old pending jobs in this new queue manager**
1415 * Update nginx template (you need to [update manually](https://github.com/Chocobozzz/PeerTube/blob/develop/support/doc/production.md#nginx))
1416 * Update default cache size configurations
1417 * Update search API route: `/videos/search` becomes `/search/videos`
1418 * Needs Redis >= 2.8.18
1419
1420 ### Features
1421
1422 * Add ability to change the language of the interface (currently available: english, french, basque, catalan, czech and esperanto)
1423 * Subtitles/captions support (.srt and .vtt)
1424 * Add advanced search
1425 * Add ability to click on category/language/licence/tags in watch page
1426 * Improve explanations of P2P & Privacy section in about page
1427 * Avoid design latency when the admin set custom CSS
1428 * Add ability to update video channel avatar
1429 * Limit video resolution depending on the video element size (Nitesh Sawant)
1430 * Show "Other videos" on a <1300px viewport ([@Simounet](https://github.com/simounet))
1431 * Add QR code to share videos URL ([@DeeJayBro](https://github.com/DeeJayBro))
1432 * Add "agree to the terms" checkbox in registration form
1433 * Add tracker rate limiter
1434 * Add author URL in OEmbed response
1435 * Display username instead of email in menu
1436 * Clarifying what extensions are accepted for upload ([@rigelk](https://github.com/rigelk))
1437 * Thumbnail support for RSS feeds ([@rigelk](https://github.com/rigelk))
1438 * Open CORS on API and static resources ([@rezonant](https://github.com/rezonant)
1439 * 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
1440 * Support Redis socket ([@rigelk](https://github.com/rigelk))
1441 * Improve video `start` param to support string times (for example: 2m42s))
1442 * Display table next/prev/first/last icons in admin tables
1443 * NodeInfo support ([@rigelk](https://github.com/rigelk))
1444 * Improve HTTP headers security ([@rigelk](https://github.com/rigelk))
1445 * Improve client accessibility (for screen reader users etc)
1446 * Optimize SQL requests (in particular the one to list videos)
1447 * Optimize images ([@jorropo](https://github.com/jorropo))
1448 * Add esperanto, lojban, klingon and kotava (audio/subtitle) languages
1449 * Allow uploads of videos <8GB (*experimental*)
1450 * Handle FPS > 30 (*experimental*)
1451
1452 ### Bug fixes
1453
1454 * Fix avatars/thumbnails update (cache issue)
1455 * Fix pagination on admin job table when changing the job state
1456 * Fix SQL transaction retryer log
1457 * Correctly handle error when remote instance is down
1458 * Fix account videos URL when scrolling
1459 * Avoid commenting twice by disabling comment submit button when sending the comment
1460 * Reset confirm component input when closing it
1461 * Fix video speed when video resolutions changes ([@grizio](https://github.com/grizio))
1462 * Disable hotkeys modifiers for numbers ([@rigelk](https://github.com/rigelk))
1463 * Reset published date on video publish (scheduled or after a transcoding)
1464 * Avoid 404 title on the first page load
1465 * Fix forgot password message regarding email
1466 * Remove scroll to top when closing the menu ([@ebrehault](https://github.com/ebrehault))
1467 * Use UUID for channel link in watch page
1468
1469 ### Docker
1470
1471 * Add PEERTUBE_SMTP_DISABLE_STARTTLS config env
1472
1473
1474 ## v1.0.0-beta.9
1475
1476 ### Features
1477
1478 * Theater/Cinema mode in player
1479 * Add ability to wait transcoding before publishing it
1480 * Add ability for uploaders to schedule video update
1481 * Add time display to see where we seek the video
1482 * Add title in player peers info to show total downloaded/uploaded data
1483 * Provide magnet URI in player and download modal ([@rigelk](https://github.com/rigelk))
1484 * Add warning if the domain name is different from the one of the first start of Peertube
1485 * Add resolution to create-transcoding-job script ([@fflorent](https://github.com/fflorent))
1486
1487 ### Bug fixes
1488
1489 * Fix dislikes number in video watch page
1490 * Fix import when the imported file has the same extension than an already existing file
1491 * Fix bad RSS descriptions when filtering videos by account or channel
1492 * Fix RSS results limit
1493 * Fix glitch when updating player volume
1494 * Use local object URLs for feeds
1495 * Automatically jump to the highlighted thread
1496 * Fix account link width on video view ([@sesn](https://github.com/sesn))
1497 * Prevent commenting twice
1498 * Blue links color in comments
1499 * Fix quota precision in users list
1500 * Handle markdown in account/video channel pages
1501 * Fix avatar image in channel page
1502 * Fix slow HTTP fallback on Firefox
1503 * Do not create a user with the same username than another actor name
1504 * Reset search on page change
1505 * Fix images size limit
1506 * Log torrent errors/warnings in the console, instead of disturbing users
1507
1508
1509 ## v1.0.0-beta.8
1510
1511 ### Features
1512
1513 * Docker:
1514 * Add disable_starttls and transcoding configuration variables
1515 * `.env` file to define env variables (instead of defining them in `docker-compose.yml`)
1516 * Some improvements that should make the upgrades less painful
1517 * Add ability to manually run transcoding jobs (admin with CLI)
1518 * Add ability to import a video file (admin with CLI)
1519 * Add context menu to the player
1520 * Add number of videos published by an account/video channel
1521 * Improve player progress bar
1522 * Improve Twitter configuration help tooltips
1523 * Pick average video file instead of max quality in "Auto" resolution mode
1524 * Increase access token lifetime to 1 day
1525 * Add video comments RSS
1526
1527 ### Bug fixes
1528
1529 * Clicking on "Download" correctly opens a popup to download the video
1530 (instead of opening the video in a new tab)
1531 * Fix frequent logout
1532 * Fix `publishedAt` video attribute when following a new instance
1533 * Correctly resumes the video on "PeerTube" link click in embed
1534 * Fix markdown links truncation
1535 * Fix account/channel pages not updated if we only change the account/channel
1536 * Fix player resolution change that plays even if the video was paused
1537 * Fix posting view in embed that contains search params
1538 * Fix video watch tooltips regarding subscriptions by using the account name
1539 instead of the display name
1540 * Rename "my settings" to "my account" in menu
1541
1542
1543 ## v1.0.0-beta.7
1544
1545 ### BREAKING CHANGES
1546
1547 * Account client URLs are now `/accounts/{username}/` (and not `/accounts/{id}/`)
1548
1549 ### Documentation
1550
1551 * Better documentation on how to deploy with Docker: https://github.com/Chocobozzz/PeerTube/blob/develop/support/doc/docker.md
1552
1553 ### Features
1554
1555 * Add short description in about page
1556 * Add owner account name in video channel page
1557 * Improve performance in ActivityPub controllers
1558 * Video **support** field inherits video channel **support** field when uploading/updating a video
1559 * Resume video when clicking on "PeerTube" link in embed
1560
1561 ### Bug fixes
1562
1563 * Fix player on Android
1564 * Fix player when Firefox has cookies disabled
1565 * Reload "my videos" after a delete
1566 * Fix missing key configuration when upgrading with Docker
1567 * Fix CC audience in Activity Pub objects/activities
1568
1569
1570 ## v1.0.0-beta.6
1571
1572 ### Features
1573
1574 * Handle concurrent requests in cache middleware
1575 * Add ability to enable registration by IP
1576
1577 ### Bug fixes
1578
1579 * Fix insane SQL request when loading all video attributes
1580
1581
1582 ## v1.0.0-beta.5
1583
1584 ### BREAKING CHANGES
1585
1586 * Update Docker Compose (https://github.com/Chocobozzz/PeerTube/commit/fd5e57bbe2accbdb16b6aa65337c5ef44b5bd8fb)
1587 * Rename client routes:
1588 * `/admin/users/add` to `/admin/users/create`
1589 * `/videos/edit/:uuid` to `/videos/update/:uuid`
1590 * `/admin/users/:id/update` to `/admin/users/update/:id`
1591
1592
1593 ### Features
1594
1595 * Adding basic helpers to guide users for comments/subscribe to accounts
1596 * Add ability to move a video in another channel
1597 * Improve web browser RAM consumption when watching (long) videos
1598 * Support robots.txt in configuration
1599 * Add ability to select the Redis database in configuration
1600
1601
1602 ### Bug fixes
1603
1604 * Fix error message on token expiration
1605 * Increase menu icon size
1606 * Add timeout and TTL to request jobs to fix stuck job
1607 * Fix responsive account about page
1608 * Fix updating description account
1609 * Account/video channel descriptions are not required anymore
1610 * Fix video channel description and support max length (500 characters now)
1611 * Fix "..." for buttons (delete/edit) in admin tables
1612 * Fix overflow in markdown textarea preview
1613 * Add ability to embed videos in a Twitter card
1614 * Use `publishedAt` attribute when sorting videos
1615 * Fix concurrent requests in videos list
1616 * Fix player on iOS
1617
1618
1619 ## v1.0.0-beta.4
1620
1621 ### BREAKING CHANGES
1622
1623 * Hide by default NSFW videos. Update the `instance.default_nsfw_policy` configuration to `blur` to keep the old behaviour
1624 * Move video channels routes:
1625 * `/videos/channels` routes to `/video-channels`
1626 * `/videos/accounts/{accountId}/channels` route to `/accounts/{accountId}/video-channels`
1627 * PeerTube now listen on 127.0.0.1 by default
1628 * Use ISO 639 for language (*en*, *es*, *fr*...)
1629 * Tools (`import-videos`...) need the language ISO639 code instead of a number
1630 * API (`upload`, `update`, `list`...) need/return the language ISO639 code instead of a number
1631
1632 ### Features
1633
1634 * Add `publishedAt` attribute to videos
1635 * Improve player:
1636 * Smooth progress bar
1637 * Settings menu
1638 * Automatic resolution (depending on the user bandwidth)
1639 * Some animations/effects
1640 * More reactive when clicking on play
1641 * Handle autoplay blocking by some web browsers
1642 * Better responsive
1643 * Add ability to link a specific timestamp. Example: https://peertube2.cpy.re/videos/watch/f78a97f8-a142-4ce1-a5bd-154bf9386504?start=58
1644 * Add an id to the body to override current CSS (for custom CSS)
1645 * Add privacy argument to `upload.ts` script
1646 * RSS/Atom/JSON-feed for videos recently-added/trending/account
1647 * Support hostname binding in the configuration
1648 * Add ability to click on an account in the video watch page (link to a search)
1649 * Better responsive on many comment replies
1650 * Move follows in the job queue
1651 * Add ability to choose the NSFW videos policy: hide, blur or display. Could be overrode by the user
1652 * Add video privacy information in *my videos page*
1653 * Use the video name for the torrent file name instead of the UUID
1654 * Handle errors in embed (video not found, server error...)
1655 * Account view (videos uploaded by this account + video channel owned by this account + about pages)
1656 * Video channel view (videos uploaded in this channel + about pages)
1657 * Video channel management (avatar update is still missing)
1658
1659 ### Bug fixes
1660
1661 * Fix "show more" description on video change
1662 * Accept unlisted comments
1663 * Don't start application until all components were initialized
1664 * Fix word-break in video description and video comments
1665 * Don't add a `.` after the URL in the "forgot password" email
1666
1667
1668
1669 ## v1.0.0-beta.3
1670
1671 ### Features
1672
1673 * Add hover background color in menu
1674 * Add info about the initial user quota in the registration form
1675 * Add link to register in the login form
1676 * Prevent brute force login attack
1677
1678 ### Bug fixes
1679
1680 * Fix bad federation with videos with special utf characters in description (again)
1681 * Fix views system behind a reverse proxy
1682
1683
1684 ## v1.0.0-beta.2
1685
1686 ### Features
1687
1688 * More logging in SMTP module
1689 * Add option to disable starttls in SMTP module
1690 * Update STUN servers (using framasoft.org and stunprotocol.org now)
1691 * Min comment length is 1 now (useful for emoji...)
1692 * Better embed video player in small screens
1693 * Reduce display time of title/description/control bar in embed on inactivity
1694 * Add sign languages for videos attribute
1695 * Add autoplay parameter for embed
1696 * Videos search on account username and host too
1697 * Redirect to homepage on empty search
1698
1699 ### Bug fixes
1700
1701 * Fix mentions in comment replies
1702 * Logo/Title redirects to the default route
1703 * Fix bad federation with videos with special utf characters in description
1704 * Fix pagination on mobile
1705 * Use instance name for page titles
1706 * Fix bad id for Create activities (ActivityPub)
1707 * Handle inner actors instead of just handling actor ids (ActivityPub)
1708 * Fallback to torrent file if infohash is incorrect
1709 * Fix admin config errors display/validation
1710 * Add public to Announces (ActivityPub)
1711 * Fix inability to run client when cookies are disabled
1712 * Fix words breaking in videos description
1713 * Graceful exit when import videos script fails
1714 * Fix import videos with long names
1715 * Fix login with a password containing special characters
1716 * Fix player error flickering with an unsupported video format
1717 * Fix comment delete federation
1718 * Fix communication of a PeerTube instance and Mastodon
1719 * Fix custom configuration with number values
1720
1721
1722 ## v1.0.0-beta.1
1723
1724 Nothing new here, but PeerTube is stable enough for being in beta now.
1725
1726
1727 ## v1.0.0-alpha.9
1728
1729 ### BREAKING CHANGES
1730
1731 * Update videos list/search/get API response:
1732 * Removed `resolution` field
1733 * Removed `resolutionLabel` field
1734 * Removed `category` field
1735 * Removed `categoryLabel` field
1736 * Removed `licence` field
1737 * Removed `licenceLabel` field
1738 * Removed `language` field
1739 * Removed `languageLabel` field
1740 * Removed `privacy` field
1741 * Removed `privacyLabel` field
1742 * Added `resolution.id` field
1743 * Added `resolution.label` field
1744 * Added `category.id` field
1745 * Added `category.label` field
1746 * Added `licence.id` field
1747 * Added `licence.label` field
1748 * Added `language.id` field
1749 * Added `language.label` field
1750 * Added `privacy.id` field
1751 * Added `privacy.label` field
1752
1753 ### Bug fixes
1754
1755 * Fix video_share_url duplicate key on failed transcoding job
1756
1757
1758 ## v1.0.0-alpha.8
1759
1760 ### Features
1761
1762 * Add ability to set a short instance description
1763
1764
1765 ## v1.0.0-alpha.7
1766
1767 ### BREAKING CHANGES
1768
1769 * Update videos list/search API response:
1770 * Removed `accountName` field
1771 * Removed `serverHost` field
1772 * Added `account.name` field
1773 * Added `account.displayName` field
1774 * Added `account.host` field
1775 * Added `account.url` field
1776 * Added `account.avatar` field
1777 * Update video abuses API response:
1778 * Removed `reporterUsername` field
1779 * Removed `reporterServerHost` field
1780 * Removed `videoId` field
1781 * Removed `videoUUID` field
1782 * Removed `videoName` field
1783 * Added `reporterAccount` field
1784 * Added `video.id` field
1785 * Added `video.name` field
1786 * Added `video.uuid` field
1787 * Added `video.url` field
1788
1789 ### Features
1790
1791 * Add "Local" in menu that lists only local videos
1792
1793
1794 ## v1.0.0-alpha.4
1795
1796 ### Features
1797
1798 * Add iOS support
1799
1800
1801 ## v1.0.0-alpha.1
1802
1803 ### Features
1804
1805 * Add messages about privacy and P2P
1806 * Add stats route
1807 * Add playback setting
1808
1809
1810 ## v0.0.29-alpha
1811
1812 ### BREAKING CHANGES
1813
1814 * Use only 1 thread for transcoding by default
1815
1816 ### Features
1817
1818 * Add help to JS/CSS custom configuration inputs
1819 * Keep ratio in video thumbnail generation
1820 * Handle video in portrait mode
1821
1822 ### Bug fixes
1823
1824 * Fix complete description on some videos
1825 * Fix job sorting in administration
1826
1827
1828 ## v0.0.28-alpha
1829
1830 ### BREAKING CHANGES
1831
1832 * Enable original file transcoding by default in configuration
1833 * Disable transcoding in other definitions in configuration
1834
1835 ### Features
1836
1837 * Fallback to HTTP if video cannot be loaded
1838 * Limit to 30 FPS in transcoding
1839
1840
1841 ## v0.0.27-alpha
1842
1843 ### Features
1844
1845 * Add ability for admin to inject custom JavaScript/CSS
1846 * Add help tooltip on some fields
1847
1848 ### Bug fixes
1849
1850 * Fix comment reply highlighting
1851
1852
1853 ## v0.0.26-alpha
1854
1855 ### BREAKING CHANGES
1856
1857 * Renamed script `import-youtube.js` to `import-videos.js`
1858 * Renamed `import-video.js` argument `youtube-url` to `target-url`
1859
1860 ### Features
1861
1862 * Add "Support" attribute/button on videos
1863 * Add ability to import from all [supported sites](https://rg3.github.io/youtube-dl/supportedsites.html) of youtube-dl
1864
1865 ### Bug fixes
1866
1867 * Fix custom instance name overflow
1868
1869
1870 ## v0.0.25-alpha
1871
1872 ### Features
1873
1874 * Add ability to link a specific comment
1875
1876 ### Bug fixes
1877
1878 * Fix avatars on video watch page
1879
1880
1881 ## v0.0.24-alpha
1882
1883 ### Features
1884
1885 * Publish comments with *ctrl + enter*
1886
1887 ### Bug fixes
1888
1889 * Don't stuck on active jobs
1890 * Fix deleting a video with comments
1891 * Fix infinite scroll (videos list)