]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - CHANGELOG.md
Update CREDITS
[github/Chocobozzz/PeerTube.git] / CHANGELOG.md
CommitLineData
e33b53ab
C
1# Changelog
2
a4829f0f
C
3## v1.0.0-beta.11
4
5**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**
6
7### Features
8
3256a4a6 9 * Add ability to import videos from a URL (YouTube, Dailymotion, Vimeo, raw file etc) or torrent file/magnet.
a4829f0f
C
10 Should be explicitly enabled by the administrator in the configuration file
11 * Add german, spanish, taiwan (traditional chinese) and occitan languages
12 * Add ability to delete our account
13 * Add ability to ban a user
14 * Add ability to set a moderation comment to an abuse
15 * Add state (pending, accepted, rejected) attribute to an abuse
16 * Add ability to set a reason when blacklisting a video
17 * Add ability to blacklist local videos
18 * Improve abuse and blacklist tables
19 * Add user quota used in users list
20 * Tracker only accept known infohash (avoid people to use your tracker for files unrelated to PeerTube)
21 * Add database pool configuration ([@rigelk](https://github.com/rigelk))
22 * Add audit log ([@Nautigsam](https://github.com/Nautigsam))
3256a4a6 23 * Add ffmpeg nice and auto thread ([@jorropo](https://github.com/jorropo))
a4829f0f
C
24 * Upgrade to bootstrap 4
25 * DNT support
26
27### Bug fixes
3256a4a6 28
a4829f0f
C
29 * Fix videos FPS federation
30 * Cleanup request files on bad request
31 * Handle truncated markdown links
32 * Fix dropdown position in menu
33 * Translate subtitle languages in player
34 * Translate player according the language of the interface
35 * Fix reset my password button ([@joshmorel](https://github.com/joshmorel))
36
37
d3736b8d
C
38## v1.0.0-beta.10
39
40**See the v1.0.0-beta.10.pre.1 changelog, in particular how to upgrade**
41
42### Bug fixes (from beta.10.pre.3)
43
44 * Fix caption upload on Mac OS
45
46
cc6373e6
C
47## v1.0.0-beta.10.pre.3
48
49**See the v1.0.0-beta.10.pre.1 changelog, in particular how to upgrade**
50
51### Bug fixes (from beta.10.pre.2)
52
53 * Try to fix the infinite creation of Delete actor jobs by deleting kue migration
54 * Cleanup SQL indexes
55 * Try to optimize SQL search query
56 * Try to optimize videos list SQL query
57 * Add more logs and fix logger when having an error
58 * Move subscription helper in the account line in video watch page
59 * Fix responsive on videos search
60 * Refresh orphan actors
3256a4a6 61 * Don't send a follow request if the follow was already accepted
cc6373e6
C
62
63
2da00d2a
C
64## v1.0.0-beta.10.pre.2
65
66**See the v1.0.0-beta.10.pre.1 changelog, in particular how to upgrade**
67
cc6373e6 68### Bug fixes (from beta.10.pre.1)
2da00d2a
C
69
70 * Fix captions/subtitles freeze in player
71 * Fix attribute label width in video watch page
72 * Fix player playback in Chrome
73 * Revert SQL optimization when listing videos: it breaks the connection pool of some instances
74
75
039fd8bc
C
76## v1.0.0-beta.10.pre.1
77
78This version is a pre release because it contains many important changes, and requires manual steps before upgrading.
79
6af6cf83 80**Important:** Before upgrading run the following commands (no need to stop PeerTube) on your PeerTube database (in this example it's *peertube_prod*):
039fd8bc
C
81
82```
83$ sudo -u postgres psql peertube_prod -c 'CREATE EXTENSION IF NOT EXISTS unaccent;'
84$ sudo -u postgres psql peertube_prod -c 'CREATE EXTENSION IF NOT EXISTS pg_trgm;'
85```
0933bb4a
C
86
87You will need [PostgreSQL Contrib](https://www.postgresql.org/docs/9.6/static/contrib.html).
3256a4a6 88
039fd8bc
C
89### BREAKING CHANGES
90
91 * Require `unaccent` and `pg_trgm` PostgreSQL extension for the PeerTube database
92 * `category` filter param is replaced by `categoryOneOf`
0933bb4a
C
93 * Switch job queue to [Bull](https://github.com/OptimalBits/bull). **PeerTube will not migrate your old pending jobs in this new queue manager**
94 * Update nginx template (you need to [update manually](https://github.com/Chocobozzz/PeerTube/blob/develop/support/doc/production.md#nginx))
039fd8bc 95 * Update default cache size configurations
6104adc3 96 * Update search API route: `/videos/search` becomes `/search/videos`
47c951b7 97 * Needs Redis >= 2.8.18
3256a4a6 98
039fd8bc
C
99### Features
100
101 * Add ability to change the language of the interface (currently available: english, french, basque, catalan, czech and esperanto)
102 * Subtitles/captions support (.srt and .vtt)
103 * Add advanced search
104 * Add ability to click on category/language/licence/tags in watch page
105 * Improve explanations of P2P & Privacy section in about page
106 * Avoid design latency when the admin set custom CSS
107 * Add ability to update video channel avatar
108 * Limit video resolution depending on the video element size (Nitesh Sawant)
109 * Show "Other videos" on a <1300px viewport ([@Simounet](https://github.com/simounet))
110 * Add QR code to share videos URL ([@DeeJayBro](https://github.com/DeeJayBro))
111 * Add "agree to the terms" checkbox in registration form
112 * Add tracker rate limiter
113 * Add author URL in OEmbed response
114 * Display username instead of email in menu
115 * Clarifying what extensions are accepted for upload ([@rigelk](https://github.com/rigelk))
116 * Thumbnail support for RSS feeds ([@rigelk](https://github.com/rigelk))
117 * Open CORS on API and static resources ([@rezonant](https://github.com/rezonant)
118 * 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
119 * Support Redis socket ([@rigelk](https://github.com/rigelk))
120 * Improve video `start` param to support string times (for example: 2m42s))
121 * Display table next/prev/first/last icons in admin tables
122 * NodeInfo support ([@rigelk](https://github.com/rigelk))
123 * Improve HTTP headers security ([@rigelk](https://github.com/rigelk))
124 * Improve client accessibility (for screen reader users etc)
125 * Optimize SQL requests (in particular the one to list videos)
126 * Optimize images ([@jorropo](https://github.com/jorropo))
127 * Add esperanto, lojban, klingon and kotava (audio/subtitle) languages
128 * Allow uploads of videos <8GB (*experimental*)
129 * Handle FPS > 30 (*experimental*)
130
131### Bug fixes
132
133 * Fix avatars/thumbnails update (cache issue)
134 * Fix pagination on admin job table when changing the job state
135 * Fix SQL transaction retryer log
136 * Correctly handle error when remote instance is down
137 * Fix account videos URL when scrolling
138 * Avoid commenting twice by disabling comment submit button when sending the comment
139 * Reset confirm component input when closing it
140 * Fix video speed when video resolutions changes ([@grizio](https://github.com/grizio))
141 * Disable hotkeys modifiers for numbers ([@rigelk](https://github.com/rigelk))
142 * Reset published date on video publish (scheduled or after a transcoding)
143 * Avoid 404 title on the first page load
144 * Fix forgot password message regarding email
145 * Remove scroll to top when closing the menu ([@ebrehault](https://github.com/ebrehault))
146 * Use UUID for channel link in watch page
147
148### Docker
149
150 * Add PEERTUBE_SMTP_DISABLE_STARTTLS config env
3256a4a6 151
039fd8bc 152
7ba442d4
C
153## v1.0.0-beta.9
154
155### Features
156
157 * Theater/Cinema mode in player
158 * Add ability to wait transcoding before publishing it
159 * Add ability for uploaders to schedule video update
160 * Add time display to see where we seek the video
161 * Add title in player peers info to show total downloaded/uploaded data
162 * Provide magnet URI in player and download modal ([@rigelk](https://github.com/rigelk))
11fa7d39 163 * Add warning if the domain name is different from the one of the first start of Peertube
7ba442d4
C
164 * Add resolution to create-transcoding-job script ([@fflorent](https://github.com/fflorent))
165
166### Bug fixes
167
168 * Fix dislikes number in video watch page
169 * Fix import when the imported file has the same extension than an already existing file
170 * Fix bad RSS descriptions when filtering videos by account or channel
171 * Fix RSS results limit
172 * Fix glitch when updating player volume
173 * Use local object URLs for feeds
174 * Automatically jump to the highlighted thread
175 * Fix account link width on video view ([@sesn](https://github.com/sesn))
176 * Prevent commenting twice
177 * Blue links color in comments
178 * Fix quota precision in users list
179 * Handle markdown in account/video channel pages
180 * Fix avatar image in channel page
181 * Fix slow HTTP fallback on Firefox
182 * Do not create a user with the same username than another actor name
183 * Reset search on page change
184 * Fix images size limit
185 * Log torrent errors/warnings in the console, instead of disturbing users
186
187
f3c65a51
C
188## v1.0.0-beta.8
189
190### Features
191
192 * Docker:
193 * Add disable_starttls and transcoding configuration variables
194 * `.env` file to define env variables (instead of defining them in `docker-compose.yml`)
195 * Some improvements that should make the upgrades less painful
196 * Add ability to manually run transcoding jobs (admin with CLI)
197 * Add ability to import a video file (admin with CLI)
198 * Add context menu to the player
199 * Add number of videos published by an account/video channel
200 * Improve player progress bar
201 * Improve Twitter configuration help tooltips
202 * Pick average video file instead of max quality in "Auto" resolution mode
203 * Increase access token lifetime to 1 day
204 * Add video comments RSS
205
206### Bug fixes
207
208 * Clicking on "Download" correctly opens a popup to download the video
209 (instead of opening the video in a new tab)
210 * Fix frequent logout
211 * Fix `publishedAt` video attribute when following a new instance
212 * Correctly resumes the video on "PeerTube" link click in embed
213 * Fix markdown links truncation
214 * Fix account/channel pages not updated if we only change the account/channel
215 * Fix player resolution change that plays even if the video was paused
216 * Fix posting view in embed that contains search params
217 * Fix video watch tooltips regarding subscriptions by using the account name
218 instead of the display name
219 * Rename "my settings" to "my account" in menu
220
221
77a87fec
C
222## v1.0.0-beta.7
223
224### BREAKING CHANGES
225
226 * Account client URLs are now `/accounts/{username}/` (and not `/accounts/{id}/`)
227
228### Documentation
229
230 * Better documentation on how to deploy with Docker: https://github.com/Chocobozzz/PeerTube/blob/develop/support/doc/docker.md
231
232### Features
233
234 * Add short description in about page
235 * Add owner account name in video channel page
236 * Improve performance in ActivityPub controllers
237 * Video **support** field inherits video channel **support** field when uploading/updating a video
238 * Resume video when clicking on "PeerTube" link in embed
239
240### Bug fixes
241
242 * Fix player on Android
243 * Fix player when Firefox has cookies disabled
244 * Reload "my videos" after a delete
245 * Fix missing key configuration when upgrading with Docker
246 * Fix CC audience in Activity Pub objects/activities
247
248
265fb1bc
C
249## v1.0.0-beta.6
250
251### Features
252
253 * Handle concurrent requests in cache middleware
254 * Add ability to enable registration by IP
255
256### Bug fixes
257
258 * Fix insane SQL request when loading all video attributes
259
260
67477ee4
C
261## v1.0.0-beta.5
262
263### BREAKING CHANGES
264
265 * Update Docker Compose (https://github.com/Chocobozzz/PeerTube/commit/fd5e57bbe2accbdb16b6aa65337c5ef44b5bd8fb)
266 * Rename client routes:
267 * `/admin/users/add` to `/admin/users/create`
268 * `/videos/edit/:uuid` to `/videos/update/:uuid`
269 * `/admin/users/:id/update` to `/admin/users/update/:id`
270
271
272### Features
273
274 * Adding basic helpers to guide users for comments/subscribe to accounts
275 * Add ability to move a video in another channel
276 * Improve web browser RAM consumption when watching (long) videos
277 * Support robots.txt in configuration
278 * Add ability to select the Redis database in configuration
279
280
281### Bug fixes
282
283 * Fix error message on token expiration
284 * Increase menu icon size
285 * Add timeout and TTL to request jobs to fix stuck job
286 * Fix responsive account about page
287 * Fix updating description account
288 * Account/video channel descriptions are not required anymore
289 * Fix video channel description and support max length (500 characters now)
290 * Fix "..." for buttons (delete/edit) in admin tables
291 * Fix overflow in markdown textarea preview
292 * Add ability to embed videos in a Twitter card
293 * Use `publishedAt` attribute when sorting videos
294 * Fix concurrent requests in videos list
295 * Fix player on iOS
296
297
9309c3df
C
298## v1.0.0-beta.4
299
300### BREAKING CHANGES
301
302 * Hide by default NSFW videos. Update the `instance.default_nsfw_policy` configuration to `blur` to keep the old behaviour
48dce1c9 303 * Move video channels routes:
cc918ac3 304 * `/videos/channels` routes to `/video-channels`
48dce1c9 305 * `/videos/accounts/{accountId}/channels` route to `/accounts/{accountId}/video-channels`
82e392f8 306 * PeerTube now listen on 127.0.0.1 by default
9309c3df 307 * Use ISO 639 for language (*en*, *es*, *fr*...)
3186046d
C
308 * Tools (`import-videos`...) need the language ISO639 code instead of a number
309 * API (`upload`, `update`, `list`...) need/return the language ISO639 code instead of a number
9309c3df
C
310
311### Features
312
313 * Add `publishedAt` attribute to videos
314 * Improve player:
3186046d
C
315 * Smooth progress bar
316 * Settings menu
317 * Automatic resolution (depending on the user bandwidth)
318 * Some animations/effects
319 * More reactive when clicking on play
320 * Handle autoplay blocking by some web browsers
321 * Better responsive
322 * Add ability to link a specific timestamp. Example: https://peertube2.cpy.re/videos/watch/f78a97f8-a142-4ce1-a5bd-154bf9386504?start=58
9309c3df
C
323 * Add an id to the body to override current CSS (for custom CSS)
324 * Add privacy argument to `upload.ts` script
325 * RSS/Atom/JSON-feed for videos recently-added/trending/account
326 * Support hostname binding in the configuration
327 * Add ability to click on an account in the video watch page (link to a search)
328 * Better responsive on many comment replies
329 * Move follows in the job queue
330 * Add ability to choose the NSFW videos policy: hide, blur or display. Could be overrode by the user
331 * Add video privacy information in *my videos page*
332 * Use the video name for the torrent file name instead of the UUID
333 * Handle errors in embed (video not found, server error...)
2297b239
C
334 * Account view (videos uploaded by this account + video channel owned by this account + about pages)
335 * Video channel view (videos uploaded in this channel + about pages)
f6dcad4f 336 * Video channel management (avatar update is still missing)
9309c3df
C
337
338### Bug fixes
339
340 * Fix "show more" description on video change
341 * Accept unlisted comments
342 * Don't start application until all components were initialized
343 * Fix word-break in video description and video comments
344 * Don't add a `.` after the URL in the "forgot password" email
345
346
347
8e03c5f4 348## v1.0.0-beta.3
d8c2e379
C
349
350### Features
351
352 * Add hover background color in menu
353 * Add info about the initial user quota in the registration form
354 * Add link to register in the login form
355 * Prevent brute force login attack
356
357### Bug fixes
358
359 * Fix bad federation with videos with special utf characters in description (again)
360 * Fix views system behind a reverse proxy
361
362
05b49c1d
C
363## v1.0.0-beta.2
364
365### Features
366
367 * More logging in SMTP module
368 * Add option to disable starttls in SMTP module
369 * Update STUN servers (using framasoft.org and stunprotocol.org now)
370 * Min comment length is 1 now (useful for emoji...)
371 * Better embed video player in small screens
372 * Reduce display time of title/description/control bar in embed on inactivity
373 * Add sign languages for videos attribute
374 * Add autoplay parameter for embed
375 * Videos search on account username and host too
376 * Redirect to homepage on empty search
377
378### Bug fixes
379
380 * Fix mentions in comment replies
381 * Logo/Title redirects to the default route
382 * Fix bad federation with videos with special utf characters in description
383 * Fix pagination on mobile
384 * Use instance name for page titles
385 * Fix bad id for Create activities (ActivityPub)
386 * Handle inner actors instead of just handling actor ids (ActivityPub)
387 * Fallback to torrent file if infohash is incorrect
388 * Fix admin config errors display/validation
389 * Add public to Announces (ActivityPub)
390 * Fix inability to run client when cookies are disabled
391 * Fix words breaking in videos description
392 * Graceful exit when import videos script fails
393 * Fix import videos with long names
394 * Fix login with a password containing special characters
395 * Fix player error flickering with an unsupported video format
396 * Fix comment delete federation
397 * Fix communication of a PeerTube instance and Mastodon
398 * Fix custom configuration with number values
399
d8c2e379 400
164e6c87
C
401## v1.0.0-beta.1
402
3256a4a6 403Nothing new here, but PeerTube is stable enough for being in beta now.
164e6c87
C
404
405
09700934
C
406## v1.0.0-alpha.9
407
408### BREAKING CHANGES
409
a7977280 410 * Update videos list/search/get API response:
09700934
C
411 * Removed `resolution` field
412 * Removed `resolutionLabel` field
413 * Removed `category` field
414 * Removed `categoryLabel` field
415 * Removed `licence` field
416 * Removed `licenceLabel` field
417 * Removed `language` field
418 * Removed `languageLabel` field
419 * Removed `privacy` field
420 * Removed `privacyLabel` field
421 * Added `resolution.id` field
422 * Added `resolution.label` field
423 * Added `category.id` field
424 * Added `category.label` field
425 * Added `licence.id` field
426 * Added `licence.label` field
427 * Added `language.id` field
428 * Added `language.label` field
429 * Added `privacy.id` field
430 * Added `privacy.label` field
431
a7977280
C
432### Bug fixes
433
434 * Fix video_share_url duplicate key on failed transcoding job
435
09700934 436
cd139178
C
437## v1.0.0-alpha.8
438
439### Features
440
3256a4a6 441 * Add ability to set a short instance description
cd139178
C
442
443
19a3b914
C
444## v1.0.0-alpha.7
445
446### BREAKING CHANGES
447
448 * Update videos list/search API response:
449 * Removed `accountName` field
450 * Removed `serverHost` field
451 * Added `account.name` field
452 * Added `account.displayName` field
453 * Added `account.host` field
454 * Added `account.url` field
455 * Added `account.avatar` field
456 * Update video abuses API response:
457 * Removed `reporterUsername` field
458 * Removed `reporterServerHost` field
459 * Removed `videoId` field
460 * Removed `videoUUID` field
461 * Removed `videoName` field
462 * Added `reporterAccount` field
463 * Added `video.id` field
464 * Added `video.name` field
465 * Added `video.uuid` field
466 * Added `video.url` field
467
066e94c5
C
468### Features
469
a7977280 470 * Add "Local" in menu that lists only local videos
066e94c5 471
19a3b914 472
774ec2a9
C
473## v1.0.0-alpha.4
474
475### Features
476
477 * Add iOS support
478
479
99915ae3 480## v1.0.0-alpha.1
82828fb4
C
481
482### Features
483
484 * Add messages about privacy and P2P
485 * Add stats route
486 * Add playback setting
487
488
20b40b19
C
489## v0.0.29-alpha
490
491### BREAKING CHANGES
492
493 * Use only 1 thread for transcoding by default
494
495### Features
496
497 * Add help to JS/CSS custom configuration inputs
498 * Keep ratio in video thumbnail generation
499 * Handle video in portrait mode
500
501### Bug fixes
502
503 * Fix complete description on some videos
504 * Fix job sorting in administration
505
506
73c69591
C
507## v0.0.28-alpha
508
509### BREAKING CHANGES
510
511 * Enable original file transcoding by default in configuration
512 * Disable transcoding in other definitions in configuration
513
514### Features
515
516 * Fallback to HTTP if video cannot be loaded
517 * Limit to 30 FPS in transcoding
518
519
86ec3e53
C
520## v0.0.27-alpha
521
78967fca
C
522### Features
523
524 * Add ability for admin to inject custom JavaScript/CSS
ab998f7b 525 * Add help tooltip on some fields
78967fca 526
86ec3e53
C
527### Bug fixes
528
529 * Fix comment reply highlighting
530
b6a4fd6b 531
61b3e146
C
532## v0.0.26-alpha
533
534### BREAKING CHANGES
535
536 * Renamed script `import-youtube.js` to `import-videos.js`
537 * Renamed `import-video.js` argument `youtube-url` to `target-url`
538
539### Features
540
541 * Add "Support" attribute/button on videos
542 * Add ability to import from all [supported sites](https://rg3.github.io/youtube-dl/supportedsites.html) of youtube-dl
543
544### Bug fixes
545
546 * Fix custom instance name overflow
547
548
b6a4fd6b
C
549## v0.0.25-alpha
550
1263fc4e
C
551### Features
552
3256a4a6 553 * Add ability to link a specific comment
1263fc4e 554
b6a4fd6b
C
555### Bug fixes
556
557 * Fix avatars on video watch page
558
559
e33b53ab
C
560## v0.0.24-alpha
561
562### Features
563
564* Publish comments with *ctrl + enter*
565
566### Bug fixes
567
568* Don't stuck on active jobs
569* Fix deleting a video with comments
570* Fix infinite scroll (videos list)