aboutsummaryrefslogtreecommitdiffhomepage
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2020-02-10 09:41:58 +0100
committerChocobozzz <me@florianbigard.com>2020-02-10 09:41:58 +0100
commit2ba7f3d188bffd356c93b8315e903d960bc51d52 (patch)
tree8c279c71e6668187040fa96eed6678d661d961d0 /CHANGELOG.md
parent26469f9ed85f5e7d67ccecaa820f33e37179b76a (diff)
downloadPeerTube-2ba7f3d188bffd356c93b8315e903d960bc51d52.tar.gz
PeerTube-2ba7f3d188bffd356c93b8315e903d960bc51d52.tar.zst
PeerTube-2ba7f3d188bffd356c93b8315e903d960bc51d52.zip
Update changelog
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md188
1 files changed, 188 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c573b12ed..3149476bb 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,193 @@
1# Changelog 1# Changelog
2 2
3## v2.1.0
4
5**Since v2.0.0**
6
7### IMPORTANT NOTES
8
9 * **/!\ VERY IMPORTANT /!\\** You need to execute manually a script (can be executed after your upgrade, while your PeerTube instance is running) to create HLS video torrents:
10 * `cd /var/www/peertube/peertube-latest && sudo -u peertube NODE_CONFIG_DIR=/var/www/peertube/config NODE_ENV=production node dist/scripts/migrations/peertube-2.1.js`
11 * **/!\ VERY IMPORTANT /!\\** In the next PeerTube release (v2.2.0), we'll add a unique index on actors usernames to fix some federation bugs.
12 Please check now if you have conflicts using:
13 * Go inside your database using `sudo -u postgres psql peertube_prod` and run `select "preferredUsername" from actor where "serverId" is null group by "preferredUsername" having count(*) > 1;`
14 * If you have some results, it seems you have duplicate channels/accounts.
15 For every entry, you'll have to change the preferredUsername of the entry you want (so they are unique).
16 The updated actors could have some federations issues
17 * We now use Buster for the docker image, so the image name changed:
18 * `production-stretch` becomes `production-buster`
19 * `v2.x.x-stretch` becomes `v2.x.x-buster`
20 * Users cannot create more than 20 channels now to avoid UX and actor name squatting issues
21 * We added a warning if the `videos` directory is the same than the `redundancy` one in your configuration file: it can create some bugs
22
23### Documentation
24
25We added some sections in the documentation website:
26
27 * S3 remote storage: https://docs.joinpeertube.org/#/admin-remote-storage
28 * Instances redundancy: https://docs.joinpeertube.org/#/admin-following-instances
29 * Moderate your instance: https://docs.joinpeertube.org/#/admin-moderation
30 * Customize your instance (install plugins & themes): https://docs.joinpeertube.org/#/admin-customize-instance
31 * PeerTube logs (standard log/audit log): https://docs.joinpeertube.org/#/admin-logs
32 * Mute accounts/instances: https://docs.joinpeertube.org/#/use-mute
33 * Controlled player embed API: https://docs.joinpeertube.org/#/api-em
34
35### Docker
36
37 * Sticking to one env-var management system ([@Leopere](https://github.com/Leopere)) (See https://github.com/Chocobozzz/PeerTube/pull/2247)
38 * Simplify Dockerfile and slim Docker image ([@Nutomic](https://github.com/nutomic))
39 * Add HLS support in Docker container by using the latest Debian stable (Buster) image
40
41### Plugins/Themes API
42
43 * Add checkbox and textarea as possible input types for settings ([@rigelk](https://github.com/rigelk))
44 * Add `isLoggedIn` helper to client plugins ([@rigelk](https://github.com/rigelk))
45 * Add client plugin hooks:
46 * `action:video-watch.player.loaded` with player instance
47 * `action:video-watch.video.loaded` with a videojs instance
48 * `action:signup.register.init` ([@rigelk](https://github.com/rigelk))
49 * `filter:api.signup.registration.create.params` ([@rigelk](https://github.com/rigelk))
50 * `filter:internal.video-watch.player.build-options.params`
51 * `filter:internal.video-watch.player.build-options.result`
52 * `filter:internal.common.svg-icons.get-content.params`
53 * `filter:internal.common.svg-icons.get-content.result`
54 * Add server plugins hooks:
55 * `action:api.user.blocked`
56 * `action:api.user.unblocked`
57 * `action:api.user.registered`
58 * `action:api.user.created`
59 * `action:api.user.deleted`
60 * `action:api.user.updated`
61 * `action:api.user.oauth2-got-token`
62 * Accept `.` `_` and `0-9` characters in plugin names
63
64### Maintenance
65
66 * PeerTube moved translations from Zanata to Weblate. Here is the new translations website URL: https://weblate.framasoft.org/projects/peertube/
67 * We now provide a JavaScript library to control a PeerTube embed: https://www.npmjs.com/package/@peertube/embed-api
68 * Add ability to generate HLS videos using `create-transcoding-job` script (see [the documentation](https://docs.joinpeertube.org/#/maintain-tools?id=create-transcoding-jobjs))
69 * Update nginx template: (you need to [update manually](https://github.com/Chocobozzz/PeerTube/blob/develop/support/doc/production.md#nginx))
70 * Add streaming playlists endpoint
71 * Add `client_body_temp_path` hint
72 * Relax TLS/SSL ciphers hardening to allow Android 4.4.2 to use the PeerTube instance API
73 * Add `maxFileSize`, `maxFiles` and `anonymizeIP` log options in configuration file
74
75### Features
76
77 * :tada: Add *internal* video privacy mode. *Internal* videos are only available to other logged in users of your instance, and are not federated
78 * :tada: Add hyperlink video timestamps in comments & video descriptions ([@Lesterpig](https://github.com/lesterpig) & [@rigelk](https://github.com/rigelk))
79 * :tada: Comments improvements:
80 * Support basic markdown
81 * Soft delete video comments instead of destroying them ([@alcalyn](https://github.com/alcalyn))
82 * Add commentator name alongside fid for video comments ([@rigelk](https://github.com/rigelk))
83 * Add a cancel button in comment form ([@rigelk](https://github.com/rigelk))
84 * Show number of comments under a video in watch page ([@rigelk](https://github.com/rigelk))
85 * Add user moderation dropdown ([@rigelk](https://github.com/rigelk))
86 * Add ability to sort comments by *total replies* or *created date* ([@rigelk](https://github.com/rigelk))
87 * Add *total replies from video author* indicator ([@rigelk](https://github.com/rigelk))
88 * Comment name emphasis for video author ([@rigelk](https://github.com/rigelk))
89 * Add "Watch later" button in video miniature overlay ([@rigelk](https://github.com/rigelk))
90 * Add ability to transcode videos in an audio only video container ([@Yetangitu](https://github.com/Yetangitu))
91 * Add playlist search input in *add to playlist* dropdown ([@rigelk](https://github.com/rigelk))
92 * Add search bars for a user's videos and playlists ([@rigelk](https://github.com/rigelk))
93 * Support playlists in share modal
94 * Better UI for a better world:
95 * Add play/pause bezels to the video player ([@rigelk](https://github.com/rigelk))
96 * Use icons instead of buttons in watch page (like/dislike, support...) ([@rigelk](https://github.com/rigelk))
97 * Improve *PeerTube* section in About page and add links to the documentation
98 * Improve comment tree in Watch page
99 * Improve dropdown box shadow ([@rigelk](https://github.com/rigelk))
100 * Add channel avatar to watch view ([@rigelk](https://github.com/rigelk))
101 * Improve likes-dislikes bar usability
102 * Alter titles section header style ([@rigelk](https://github.com/rigelk))
103 * Enhance jobs list display on smaller screens ([@alcalyn](https://github.com/alcalyn))
104 * Add a button in the videos from subscriptions page to manage subscriptions ([@rigelk](https://github.com/rigelk))
105 * Add duration to video attributes in watch view ([@rigelk](https://github.com/rigelk))
106 * Add a message in the login form when signup is disabled for people that are looking for an account ([@rigelk](https://github.com/rigelk))
107 * Add "Manage" button in owned account and channels pages ([@rigelk](https://github.com/rigelk))
108 * Improve password input accessibility ([@rigelk](https://github.com/rigelk))
109 * Add descriptions in moderation dropdown ([@rigelk](https://github.com/rigelk))
110 * Performances improvements:
111 * Lazy load categories, licences, languages and video/playlist privacies in the client
112 * Only update remote actor avatar if the filename changed
113 * Optimize transcoding by using the lowest resolution as input file
114 * Speedup embed first paint
115 * Optimize videos list SQL query
116 * Optimize local videos list SQL query
117 * Cache `peertube` instance actor SQL result
118 * Cache HLS/WebTorrent InfoHash SQL result
119 * Optimize notification endpoint on specific cases
120 * Optimize "list my playlists" SQL query
121 * Improve search filters: ([@rigelk](https://github.com/rigelk))
122 * Add ability to sort results
123 * Improve tags filter inputs
124 * Add a button to reset filters
125 * Improve autoplay: ([@rigelk](https://github.com/rigelk))
126 * Autoplay next video switch for both user and visitors
127 * Add *up next* screen on autoplay
128 * Autoplay next video support for playlists
129 * Add *next* video button to the player
130 * Add loop setting when watching a playlist
131 * Add option to download subtitles in download modal ([@rigelk](https://github.com/rigelk))
132 * Add a button in account page to follow all account channels ([@rigelk](https://github.com/rigelk))
133 * Add ability to search a video directly by its UUID
134 * Case insensitive tags search
135 * Add ability to disable WebTorrent (and only enable HLS) (**experimental and breaks federation with PeerTube instances < 2.1**)
136 * Don't seed if the client is on a cellular network in the HLS player
137 * Load HLS player in embed by default if enabled
138 * Admin panels:
139 * Add ability to sort by *state*, *score* and *redundancy allowed* columns in following/followers admin table
140 * Add ability to filter per job type in admin
141 * Add *Audit logs* section in admin Logs panel
142 * Improve Media-RSS support ([@rigelk](https://github.com/rigelk))
143 * Explicit the tag limit in video form ([@bikepunk](https://github.com/bikepunk))
144 * Add a warning when uploading videos using root
145 * Clearer video quota label in user settings
146 * Pause the video when the user opens a modal
147 * Handle basic HTML in account descriptions
148 * Support `m4v` videos
149 * Improve 4k resolution bitrate
150 * Add missing hotkeys documentation in the watch page
151 * Add a button to copy the channel handle ([@rigelk](https://github.com/rigelk))
152 * Add server config to the nodeinfo metadata ([@rigelk](https://github.com/rigelk))
153 * Improve notification popup interactivity ([@rigelk](https://github.com/rigelk))
154
155### Bug fixes
156
157 * Don't notify if the account in on a muted instance
158 * Don't leak other notified addresses in notification emails
159 * Allow the embed iframe to open links
160 * Add missing button roles for the language chooser and keyboard shortcut menu items [@MarcoZehe](https://github.com/MarcoZehe)
161 * Fix overflow when creating a channel
162 * Fix "copy magnet URI" in player
163 * Fix text overflow in menu
164 * Fix player focus
165 * Only display accepted followers/followings instances in about page
166 * Fix brackets truncation in video description
167 * Fix channel playlist miniatures overflow
168 * Fix background color on some screens
169 * Fix captions upload issue depending on the caption name
170 * Fix file download when the video is private
171 * Fix dropdown on video miniature for unlogged users
172 * Fix video support field in update form
173 * Fix video import having a long thumbnail url (Facebook for example)
174 * Add correct HTTP status on not found video
175 * Fix bug on login when username has a special character (`_` for example)
176 * Fix plugin unregistration that did not remove properly its hooks ([@JohnXLivingston](https://github.com/JohnXLivingston))
177 * Fix wrong audio only resolution label for hls
178 * Fix AP icon URL for imported videos
179 * Fix octet stream fallback for video ext
180
181**since v2.1.0-rc.1**
182
183### Bug fixes
184
185 * Fix wrong audio only resolution label for hls
186 * Fix AP icon URL for imported videos
187 * Fix embed on mastodon
188 * Fix octet stream fallback for video ext
189
190
3## v2.1.0-rc.1 191## v2.1.0-rc.1
4 192
5### IMPORTANT NOTES 193### IMPORTANT NOTES