aboutsummaryrefslogtreecommitdiffhomepage
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2021-06-30 11:13:20 +0200
committerChocobozzz <me@florianbigard.com>2021-06-30 11:13:20 +0200
commit50cebb54beb2f5bb02ebf9b804dcb8442c7ce2b7 (patch)
treed19a52a42dcdd626b5a1702ac0c1ce860b408c61 /CHANGELOG.md
parent701348feed9559e5cc2d5d04f97d6662a407f4aa (diff)
downloadPeerTube-50cebb54beb2f5bb02ebf9b804dcb8442c7ce2b7.tar.gz
PeerTube-50cebb54beb2f5bb02ebf9b804dcb8442c7ce2b7.tar.zst
PeerTube-50cebb54beb2f5bb02ebf9b804dcb8442c7ce2b7.zip
Update changelog
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md73
1 files changed, 73 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0f07ebae9..7875a1c9e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,78 @@
1# Changelog 1# Changelog
2 2
3## v3.3.0-rc.1 (~July)
4
5### IMPORTANT NOTES
6
7 * **Important:** v3.2.0 introduced a `pg_dump` export bug in the auto upgrade script. v3.2.1 fixed this bug. To upgrade from v3.2.**0**:
8 * You can upgrade manually https://docs.joinpeertube.org/install-any-os?id=manually
9 * Or you can apply the changes introduced in this commit: https://github.com/Chocobozzz/PeerTube/commit/86dc0b9cc9374cba7548bb613ff43d92f90570a8 and then use the auto upgrade script
10
11### Maintenance
12
13 * Increase max image/caption/torrent upload size to `4MB`
14 * Increase fetcher job concurrency to `3`
15
16### Docker
17
18 * Support log level env parameter `PEERTUBE_LOG_LEVEL` [#4149](https://github.com/Chocobozzz/PeerTube/pull/4149)
19
20### Plugins/Themes/Embed API
21
22 * Add client helpers:
23 * `getBaseRouterRoute()` [#4153](https://github.com/Chocobozzz/PeerTube/pull/4153)
24 * Add client plugin hooks (https://docs.joinpeertube.org/api-plugins):
25 * `filter:left-menu.links.create.result` to add/remove left menu links
26 * `filter:internal.player.videojs.options.result` to filter options sent to videojs player [#4126](https://github.com/Chocobozzz/PeerTube/pull/4126)
27 * Add server plugin hooks (https://docs.joinpeertube.org/api-plugins):
28 * `action:api.video-playlist-element.created`
29
30
31### Features
32
33 * :tada: Add ability to create a custom homepage using HTML, markdown and [custom HTML tags](https://docs.joinpeertube.org/api-custom-client-markup) [#4007](https://github.com/Chocobozzz/PeerTube/pull/4007)
34 * :tada: Add ability to search playlists in PeerTube instance and [SepiaSearch](https://sepiasearch.org/)
35 * :tada: Shorter public URLs (old URLs are still supported):
36 * Handle short UUID (`8r4jooaQpHp8tw1E1qpSeYq` instead of `3caf7bea-5ceb-4959-81a0-b44d184e897c`) for playlists and videos
37 * Use `/w/:id` instead of `/videos/watch/:id` and `/w/p/:id` instead of `/videos/watch/playlist/:id`
38 * Use `/a/:accountName` instead of `/accounts/:accountName` and `/c/:channelName` instead of `/video-channels/:channelName` [#4009](https://github.com/Chocobozzz/PeerTube/pull/4009)
39 * Provide `/@:username` page that automatically redirect to the account or channel page [#4009](https://github.com/Chocobozzz/PeerTube/pull/4009)
40 * :tada: Add RTL layout support
41 * Add ability to use HTML, markdown and [custom HTML tags](https://docs.joinpeertube.org/api-custom-client-markup) in instance description
42 * Default to dark theme (if available) if requested by the web browser
43 * Add ability for admins to configure minimum signup page [#4010](https://github.com/Chocobozzz/PeerTube/pull/4010)
44 * Use a dedicated URL for each tab in publish page
45 * Add ability to prefill contact form using query parameters in URL [#4161](https://github.com/Chocobozzz/PeerTube/pull/4161)
46 * Accessibility/UI:
47 * Show logo in mobile view [#4141](https://github.com/Chocobozzz/PeerTube/pull/4141)
48 * Improve download modal to download video subtitles
49 * Better error message when trying to import a torrent containing multiple files
50 * REST API errors:
51 * Use [RFC 7807](https://datatracker.ietf.org/doc/html/rfc7807) format to display errors [#4143](https://github.com/Chocobozzz/PeerTube/pull/4143)
52 * Improve date format error messages
53 * Improve video name and tag error messages
54 * Performance:
55 * Use raw SQL to fetch a video from database (~ latency / 2)
56 * Inject server config in HTML
57 * Speed up client plugin loading
58 * Cache refresh actor promises
59 * Optimize activity pub video update
60 * Relax some database transactions
61
62### Bug fixes
63
64 * Fix video upload with a capitalized extension
65 * Fix "height not divisible by 2" ffmpeg error
66 * Don't count deleted comment for replies
67 * Fix UI bug when a plugin deleted the public privacy setting [#4163](https://github.com/Chocobozzz/PeerTube/pull/4163)
68 * Fix `player.getResolutions()` embed API when the video is has not been played yet
69 * Fix live placeholder image aspect ratio in theatre mode
70 * Fix plugin modal/notifier
71 * Fix some 404 errors for remote avatar
72 * Fix daily quota display
73 * Fix ownership change with a live video
74
75
3## v3.2.1 76## v3.2.1
4 77
5### IMPORTANT NOTES 78### IMPORTANT NOTES