aboutsummaryrefslogtreecommitdiffhomepage
path: root/CHANGELOG.md
diff options
context:
space:
mode:
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md123
1 files changed, 123 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index d8fa4069f..ef0ec39bf 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,128 @@
1# Changelog 1# Changelog
2 2
3## v3.2.0-rc.1 (~ May)
4
5### IMPORTANT NOTES
6
7 * **Important:** Due to a bug in ffmpeg, PeerTube is not compatible with ffmpeg 4.4. See https://github.com/Chocobozzz/PeerTube/issues/3990
8 * By default, HLS transcoding is now enabled and webtorrent is disabled. We suggest you to reflect this change.
9 See [the documentation](https://docs.joinpeertube.org/admin-configuration?id=webtorrent-transcoding-or-hls-transcoding) for more information
10 * PeerTube client now displays bigger video thumbnails.
11 To fix old thumbnails quality, run `regenerate-thumbnails` script after your PeerTube upgrade: https://docs.joinpeertube.org/maintain-tools?id=regenerate-thumbnailsjs
12
13### Maintenance
14
15 * Support `X-Frame-Options` header, enabled by default in the configuration
16 * Directly use `node` in [systemd template](https://github.com/Chocobozzz/PeerTube/blob/develop/support/systemd/peertube.service)
17 * Check ffmpeg version at PeerTube startup
18
19### CLI tools
20
21 * Add `regenerate-thumbnails` script to regenerate thumbnails of local videos
22
23### Plugins/Themes/Embed API
24
25 * Theme:
26 * `--submenuColor` becomes `--submenuBackgroundColor`
27 * Support HTML placeholders for plugins. See [the documentation](https://docs.joinpeertube.org/contribute-plugins?id=html-placeholder-elements) for more information
28 * `player-next` next to the PeerTube player
29 * Support storing files for plugins in a dedicated directory. See [the documentation](https://docs.joinpeertube.org/contribute-plugins?id=storage) for more information
30 * Transcoding:
31 * Add `inputOptions` option support for transcoding profile [#3917](https://github.com/Chocobozzz/PeerTube/pull/3917)
32 * Add `scaleFilter.name` option support for transcoding profile [#3917](https://github.com/Chocobozzz/PeerTube/pull/3917)
33 * Plugin settings:
34 * Add ability to register `html` and `select` setting
35 * Add ability to hide a plugin setting depending on the form state
36 * Plugin form fields (to add inputs to video form...):
37 * Add ability to hide a plugin field depending on the form state using `.hidden` property
38 * Add client helpers:
39 * `getServerConfig()`
40 * `getAuthHeader()`
41 * Add server helpers:
42 * `config.getServerConfig()`
43 * `plugin.getBaseStaticRoute()`
44 * `plugin.getBaseRouterRoute()`
45 * `plugin.getDataDirectoryPath()`
46 * `user.getAuthUser()`
47 * Add client plugin hooks (https://docs.joinpeertube.org/api-plugins):
48 * `action:modal.video-download.shown`
49 * `action:video-upload.init`
50 * `action:video-url-import.init`
51 * `action:video-torrent-import.init`
52 * `action:go-live.init`
53 * `action:auth-user.logged-in` & `action:auth-user.logged-out`
54 * `action:auth-user.information-loaded`
55 * `action:admin-plugin-settings.init`
56 * Add server plugin hooks (https://docs.joinpeertube.org/api-plugins):
57 * `filter:api.download.video.allowed.result` & `filter:api.download.torrent.allowed.result` to forbid download
58 * `filter:html.embed.video-playlist.allowed.result` & `filter:html.embed.video.allowed.result` to forbid embed
59 * `filter:api.search.videos.local.list.params` & `filter:api.search.videos.local.list.result`
60 * `filter:api.search.videos.index.list.params` & `filter:api.search.videos.index.list.result`
61 * `filter:api.search.video-channels.local.list.params` & `filter:api.search.video-channels.local.list.result`
62 * `filter:api.search.video-channels.index.list.params` & `filter:api.search.video-channels.index.list.result`
63
64### Features
65
66 * Accessibility/UI:
67 * :tada: Redesign channel and account page
68 * :tada: Increase video miniature size
69 * :tada: Add channel banner support
70 * Use a square avatar for channels and a round avatar for accounts
71 * Use account initial as default account avatar [#4002](https://github.com/Chocobozzz/PeerTube/pull/4002)
72 * Prefer channel display in video miniature
73 * Add *support* button in channel page
74 * Set direct download as default in video download modal [#3880](https://github.com/Chocobozzz/PeerTube/pull/3880)
75 * Show less information in video download modal by default [#3890](https://github.com/Chocobozzz/PeerTube/pull/3890)
76 * Autofocus admin plugin search input
77 * Add `1.75` playback rate to player [#3888](https://github.com/Chocobozzz/PeerTube/pull/3888)
78 * Add `title` attribute to embed code [#3901](https://github.com/Chocobozzz/PeerTube/pull/3901)
79 * Don't pause player when opening a modal [#3909](https://github.com/Chocobozzz/PeerTube/pull/3909)
80 * Add link below the player to open the video on origin instance [#3624](https://github.com/Chocobozzz/PeerTube/issues/3624)
81 * Notify admins on new available PeerTube version
82 * Notify admins on new available plugin version
83 * Video player:
84 * Add loop toggle to context menu [#3949](https://github.com/Chocobozzz/PeerTube/pull/3949)
85 * Add icons to context menu [#3955](https://github.com/Chocobozzz/PeerTube/pull/3955)
86 * Add a *Previous* button in playlist watch page [#3485](https://github.com/Chocobozzz/PeerTube/pull/3485)
87 * Automatically close the settings menu when clicking outside the player
88 * Add "stats for nerds" panel in context menu [#3958](https://github.com/Chocobozzz/PeerTube/pull/3958)
89 * Add channel and playlist stats to stats endpoint [#3747](https://github.com/Chocobozzz/PeerTube/pull/3747)
90 * Support `playlistPosition=last` and negative index (`playlistPosition=-2`) URL query parameters for playlists [#3974](https://github.com/Chocobozzz/PeerTube/pull/3974)
91 * My videos:
92 * Add ability to sort videos (publication date, most viewed...)
93 * Add ability to only display live videos
94 * Automatically resume videos for non logged-in users [#3885](https://github.com/Chocobozzz/PeerTube/pull/3885)
95 * Admin plugins:
96 * Show a modal when upgrading a plugin to a major version
97 * Display a setting button after plugin installation
98 * Add ability to search live videos
99 * Use bigger thumbnails for feeds
100 * Parse video description markdown for Opengraph/Twitter/HTML elements
101 * Open the remote interaction modal when replying to a comment if we are logged-out
102 * Handle `.srt` captions with broken durations
103 * Performance:
104 * Player now lazy loads video captions
105 * Faster admin table filters
106
107### Bug fixes
108
109 * More robust comments fetcher of remote video
110 * Fix database ssl connection
111 * Remove unnecessary black border above and below video in player [#3920](https://github.com/Chocobozzz/PeerTube/pull/3920)
112 * Reduce tag input excessive padding [#3927](https://github.com/Chocobozzz/PeerTube/pull/3927)
113 * Fix disappearing hamburger menu for narrow screens [#3929](https://github.com/Chocobozzz/PeerTube/pull/3929)
114 * Fix Youtube subtitle import with some languages
115 * Fix transcoding profile update in admin config
116 * Fix outbox fetch with subtitled videos
117 * Correctly unload a plugin on update/uninstall [#3940](https://github.com/Chocobozzz/PeerTube/pull/3940)
118 * Ensure to install plugins that are supported by PeerTube
119 * Fix welcome/warning modal displaying twice
120 * Fix h265 video import using CLI
121 * Fix context menu when watching a playlist
122 * Fix transcoding job priority preventing video publication when there are many videos to transcode
123
124
125
3## v3.1.0 126## v3.1.0
4 127
5### IMPORTANT NOTES 128### IMPORTANT NOTES