From 41a676db3989fe3eca91301ac5f5aea30d98654a Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Tue, 28 Aug 2018 17:39:29 +0200 Subject: Add features table on signup --- .../+about/about-peertube/about-peertube.component.html | 14 +++++++------- .../+about/about-peertube/about-peertube.component.scss | 2 +- client/src/app/+about/about.component.scss | 0 client/src/app/+about/about.component.ts | 3 +-- 4 files changed, 9 insertions(+), 10 deletions(-) delete mode 100644 client/src/app/+about/about.component.scss (limited to 'client/src/app/+about') diff --git a/client/src/app/+about/about-peertube/about-peertube.component.html b/client/src/app/+about/about-peertube/about-peertube.component.html index 55ac344f9..13ce89f75 100644 --- a/client/src/app/+about/about-peertube/about-peertube.component.html +++ b/client/src/app/+about/about-peertube/about-peertube.component.html @@ -1,6 +1,6 @@ -
+

About PeerTube -

+

PeerTube is a federated (ActivityPub) video streaming platform using P2P (WebTorrent) directly in the web browser.

@@ -15,14 +15,14 @@
-
P2P & Privacy
+

P2P & Privacy

PeerTube uses the BitTorrent protocol to share bandwidth between users. This implies that your IP address is stored in the instance's BitTorrent tracker as long as you download or watch the video.

-

What are the consequences?

+
What are the consequences?

In theory, someone with enough technical skills could create a script that tracks which IP is downloading which video. @@ -64,7 +64,7 @@ There are much more effective ways to get that kind of information.

-

How does PeerTube compare with YouTube?

+
How does PeerTube compare with YouTube?

The threats to privacy in YouTube are different from PeerTube's. @@ -72,7 +72,7 @@ Moreover, YouTube is owned by Google/Alphabet, a company that tracks you across many websites (via AdSense or Google Analytics).

-

What can I do to limit the exposure of my IP address?

+
What can I do to limit the exposure of my IP address?

Your IP address is public so every time you consult a website, there is a number of actors (in addition to the final website) seeing your IP in their connection logs: ISP/routers/trackers/CDN and more. @@ -80,7 +80,7 @@ Thinking that removing P2P from PeerTube will give you back anonymity doesn't make sense.

-

What will be done to mitigate this problem?

+
What will be done to mitigate this problem?

PeerTube is only in beta, and want to deliver the best countermeasures possible by the time the stable is released. diff --git a/client/src/app/+about/about-peertube/about-peertube.component.scss b/client/src/app/+about/about-peertube/about-peertube.component.scss index 1d8579ec1..0d2e2bb68 100644 --- a/client/src/app/+about/about-peertube/about-peertube.component.scss +++ b/client/src/app/+about/about-peertube/about-peertube.component.scss @@ -2,7 +2,7 @@ @import '_mixins'; .about-peertube-title { - font-size: 20px; + font-size: 25px; font-weight: bold; margin-bottom: 15px; } diff --git a/client/src/app/+about/about.component.scss b/client/src/app/+about/about.component.scss deleted file mode 100644 index e69de29bb..000000000 diff --git a/client/src/app/+about/about.component.ts b/client/src/app/+about/about.component.ts index 7b65d920f..0c91cd75f 100644 --- a/client/src/app/+about/about.component.ts +++ b/client/src/app/+about/about.component.ts @@ -2,8 +2,7 @@ import { Component } from '@angular/core' @Component({ selector: 'my-about', - templateUrl: './about.component.html', - styleUrls: [ './about.component.scss' ] + templateUrl: './about.component.html' }) export class AboutComponent { -- cgit v1.2.3