Update changelog
This commit is contained in:
parent
f2de393e74
commit
77a87fec6c
27
CHANGELOG.md
27
CHANGELOG.md
|
@ -1,5 +1,32 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## v1.0.0-beta.7
|
||||||
|
|
||||||
|
### BREAKING CHANGES
|
||||||
|
|
||||||
|
* Account client URLs are now `/accounts/{username}/` (and not `/accounts/{id}/`)
|
||||||
|
|
||||||
|
### Documentation
|
||||||
|
|
||||||
|
* Better documentation on how to deploy with Docker: https://github.com/Chocobozzz/PeerTube/blob/develop/support/doc/docker.md
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* Add short description in about page
|
||||||
|
* Add owner account name in video channel page
|
||||||
|
* Improve performance in ActivityPub controllers
|
||||||
|
* Video **support** field inherits video channel **support** field when uploading/updating a video
|
||||||
|
* Resume video when clicking on "PeerTube" link in embed
|
||||||
|
|
||||||
|
### Bug fixes
|
||||||
|
|
||||||
|
* Fix player on Android
|
||||||
|
* Fix player when Firefox has cookies disabled
|
||||||
|
* Reload "my videos" after a delete
|
||||||
|
* Fix missing key configuration when upgrading with Docker
|
||||||
|
* Fix CC audience in Activity Pub objects/activities
|
||||||
|
|
||||||
|
|
||||||
## v1.0.0-beta.6
|
## v1.0.0-beta.6
|
||||||
|
|
||||||
### Features
|
### Features
|
||||||
|
|
|
@ -7,7 +7,9 @@ Federated (ActivityPub) video streaming platform using P2P (BitTorrent)
|
||||||
directly in the web browser with <a href="https://github.com/feross/webtorrent">WebTorrent</a>.
|
directly in the web browser with <a href="https://github.com/feross/webtorrent">WebTorrent</a>.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
**We are running [a crowdfunding campaign](https://www.kisskissbankbank.com/en/projects/peertube-a-free-and-federated-video-platform) to pave the road to version 1.0 of PeerTube!**
|
<p align="center">
|
||||||
|
<strong>We are running <a href="https://www.kisskissbankbank.com/en/projects/peertube-a-free-and-federated-video-platform">a crowdfunding campaign</a> to pave the road to version 1.0 of PeerTube!</strong>
|
||||||
|
</p>
|
||||||
|
|
||||||
<p align="center">
|
<p align="center">
|
||||||
<strong>Client</strong>
|
<strong>Client</strong>
|
||||||
|
|
|
@ -73,6 +73,8 @@ describe('Test video privacy', function () {
|
||||||
})
|
})
|
||||||
|
|
||||||
it('Should not be able to watch this private video with another user', async function () {
|
it('Should not be able to watch this private video with another user', async function () {
|
||||||
|
this.timeout(10000)
|
||||||
|
|
||||||
const user = {
|
const user = {
|
||||||
username: 'hello',
|
username: 'hello',
|
||||||
password: 'super password'
|
password: 'super password'
|
||||||
|
|
Loading…
Reference in New Issue