Prepare beta
This commit is contained in:
parent
c91de74372
commit
164e6c8778
|
@ -1,5 +1,10 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## v1.0.0-beta.1
|
||||||
|
|
||||||
|
Nothing new here, but PeerTube is stable enough for being in beta now.
|
||||||
|
|
||||||
|
|
||||||
## v1.0.0-alpha.9
|
## v1.0.0-alpha.9
|
||||||
|
|
||||||
### BREAKING CHANGES
|
### BREAKING CHANGES
|
||||||
|
|
47
README.md
47
README.md
|
@ -71,8 +71,6 @@ Want to see it in action?
|
||||||
* [Video](https://peertube.cpy.re/videos/watch/f78a97f8-a142-4ce1-a5bd-154bf9386504)
|
* [Video](https://peertube.cpy.re/videos/watch/f78a97f8-a142-4ce1-a5bd-154bf9386504)
|
||||||
to see what the "decentralization feature" looks like
|
to see what the "decentralization feature" looks like
|
||||||
|
|
||||||
*Currently PeerTube is still in alpha (we plan to release a beta in march). Demonstration servers do not support public registration. If you really want to test PeerTube before the public release, here is a list of PeerTube servers: https://github.com/Chocobozzz/PeerTube/wiki#other-peertube-servers.*
|
|
||||||
|
|
||||||
## Why
|
## Why
|
||||||
|
|
||||||
We can't build a FOSS video streaming alternatives to YouTube, Dailymotion,
|
We can't build a FOSS video streaming alternatives to YouTube, Dailymotion,
|
||||||
|
@ -86,51 +84,6 @@ reason why we need to use a P2P protocol to limit the server load. Thanks to
|
||||||
[WebTorrent](https://github.com/feross/webtorrent), we can make P2P (thus
|
[WebTorrent](https://github.com/feross/webtorrent), we can make P2P (thus
|
||||||
BitTorrent) inside the web browser, as of today.
|
BitTorrent) inside the web browser, as of today.
|
||||||
|
|
||||||
## Features
|
|
||||||
|
|
||||||
- [X] Angular frontend
|
|
||||||
- [X] Join the fediverse
|
|
||||||
- [X] Follow other instances
|
|
||||||
- [X] Unfollow an instance
|
|
||||||
- [X] Get for the followers/following list
|
|
||||||
- [X] Upload a video
|
|
||||||
- [X] Seed the video
|
|
||||||
- [X] Send the meta data with ActivityPub to followers
|
|
||||||
- [X] Remove the video
|
|
||||||
- [X] List the videos
|
|
||||||
- [X] View the video in an HTML5 player with WebTorrent
|
|
||||||
- [X] Admin panel
|
|
||||||
- [X] OpenGraph tags
|
|
||||||
- [X] OEmbed
|
|
||||||
- [X] Update video
|
|
||||||
- [X] Federated videos view counter
|
|
||||||
- [X] Federated videos likes/dislikes
|
|
||||||
- [X] Transcoding to different definitions
|
|
||||||
- [X] Download file/torrent
|
|
||||||
- [X] User video bytes quota
|
|
||||||
- [X] User video channels
|
|
||||||
- [X] NSFW warnings/settings
|
|
||||||
- [X] Video description in markdown
|
|
||||||
- [X] User roles (administrator, moderator)
|
|
||||||
- [X] User registration
|
|
||||||
- [X] Video privacy settings (public, unlisted or private)
|
|
||||||
- [X] Signaling a video to the admin origin PeerTube instance
|
|
||||||
- [X] Federated videos comments
|
|
||||||
- [X] Update video thumbnails
|
|
||||||
- [X] Support video uploader button
|
|
||||||
- [ ] Video imports (URL, Torrent, YouTube...)
|
|
||||||
- [ ] Advanced search
|
|
||||||
- [ ] Subtitles
|
|
||||||
- [ ] User playlist
|
|
||||||
- [ ] User subscriptions (by tags, author...)
|
|
||||||
- [ ] Add "DDOS" security
|
|
||||||
|
|
||||||
|
|
||||||
## Front compatibility
|
|
||||||
|
|
||||||
* Firefox
|
|
||||||
* Chrome/Chromium
|
|
||||||
|
|
||||||
## Dependencies
|
## Dependencies
|
||||||
|
|
||||||
* nginx
|
* nginx
|
||||||
|
|
|
@ -272,7 +272,7 @@
|
||||||
<span>https</span>
|
<span>https</span>
|
||||||
</h5>
|
</h5>
|
||||||
<h5>Version:
|
<h5>Version:
|
||||||
<span>1.0.0-alpha</span>
|
<span>1.0.0-beta</span>
|
||||||
</h5>
|
</h5>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
swagger: '2.0'
|
swagger: '2.0'
|
||||||
info:
|
info:
|
||||||
title: PeerTube
|
title: PeerTube
|
||||||
version: 1.0.0-alpha
|
version: 1.0.0-beta
|
||||||
description: Federated (ActivityPub) video streaming platform using P2P (BitTorrent) directly in the web browser with WebTorrent and Angular.
|
description: Federated (ActivityPub) video streaming platform using P2P (BitTorrent) directly in the web browser with WebTorrent and Angular.
|
||||||
host: peertube.example.com
|
host: peertube.example.com
|
||||||
basePath: '/api/v1'
|
basePath: '/api/v1'
|
||||||
|
|
Loading…
Reference in New Issue