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