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