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