aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md43
-rw-r--r--README.md2
-rw-r--r--server/controllers/feeds.ts3
3 files changed, 46 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 149c82e9f..c82abafe0 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,48 @@
1# Changelog 1# Changelog
2 2
3## v1.0.0-beta.4
4
5### BREAKING CHANGES
6
7 * Hide by default NSFW videos. Update the `instance.default_nsfw_policy` configuration to `blur` to keep the old behaviour
8 * Use ISO 639 for language (*en*, *es*, *fr*...)
9 * Tools (`import-videos`...) need the language ISO639 code instead of a number
10 * API (`upload`, `update`, `list`...) need/return the language ISO639 code instead of a number
11
12### Features
13
14 * Add `publishedAt` attribute to videos
15 * Improve player:
16 * Smooth progress bar
17 * Settings menu
18 * Automatic resolution (depending on the user bandwidth)
19 * Some animations/effects
20 * More reactive when clicking on play
21 * Handle autoplay blocking by some web browsers
22 * Better responsive
23 * Add ability to link a specific timestamp. Example: https://peertube2.cpy.re/videos/watch/f78a97f8-a142-4ce1-a5bd-154bf9386504?start=58
24 * Add an id to the body to override current CSS (for custom CSS)
25 * Add privacy argument to `upload.ts` script
26 * RSS/Atom/JSON-feed for videos recently-added/trending/account
27 * Support hostname binding in the configuration
28 * Add ability to click on an account in the video watch page (link to a search)
29 * Better responsive on many comment replies
30 * Move follows in the job queue
31 * Add ability to choose the NSFW videos policy: hide, blur or display. Could be overrode by the user
32 * Add video privacy information in *my videos page*
33 * Use the video name for the torrent file name instead of the UUID
34 * Handle errors in embed (video not found, server error...)
35
36### Bug fixes
37
38 * Fix "show more" description on video change
39 * Accept unlisted comments
40 * Don't start application until all components were initialized
41 * Fix word-break in video description and video comments
42 * Don't add a `.` after the URL in the "forgot password" email
43
44
45
3## v1.0.0-beta.3 46## v1.0.0-beta.3
4 47
5### Features 48### Features
diff --git a/README.md b/README.md
index 566b8f1a9..8abdaf67d 100644
--- a/README.md
+++ b/README.md
@@ -7,7 +7,7 @@ Federated (ActivityPub) video streaming platform using P2P (BitTorrent)
7directly in the web browser with <a href="https://github.com/feross/webtorrent">WebTorrent</a>. 7directly in the web browser with <a href="https://github.com/feross/webtorrent">WebTorrent</a>.
8</h4> 8</h4>
9 9
10**PeerTube is developed by [Framasoft](https://framatube.org/#en), a non-profit 10**PeerTube is developed by [Framasoft](https://framasoft.org/?l=en), a non-profit
11that promotes and spreads free culture in general, and free-libre software in 11that promotes and spreads free culture in general, and free-libre software in
12particular. If you want to support this project, please [consider 12particular. If you want to support this project, please [consider
13donating to them](https://soutenir.framasoft.org/en/).** 13donating to them](https://soutenir.framasoft.org/en/).**
diff --git a/server/controllers/feeds.ts b/server/controllers/feeds.ts
index 27ebecc40..4a4dc3820 100644
--- a/server/controllers/feeds.ts
+++ b/server/controllers/feeds.ts
@@ -40,7 +40,8 @@ async function generateFeed (req: express.Request, res: express.Response, next:
40 start, 40 start,
41 FEEDS.COUNT, 41 FEEDS.COUNT,
42 req.query.sort as VideoSortField, 42 req.query.sort as VideoSortField,
43 hideNSFW 43 hideNSFW,
44 true
44 ) 45 )
45 } else { 46 } else {
46 resultList = await VideoModel.listForApi( 47 resultList = await VideoModel.listForApi(