Update description of OnionShare

This commit is contained in:
Micah Lee 2018-12-21 19:28:20 -08:00
parent 2b05952f7e
commit e95c420f0c
No known key found for this signature in database
GPG Key ID: 403C2657CD994F73
3 changed files with 28 additions and 16 deletions

View File

@ -1,6 +1,8 @@
# OnionShare # OnionShare
[OnionShare](https://onionshare.org) lets you securely and anonymously share files of any size. It works by starting a web server, making it accessible as a Tor Onion Service, and generating an unguessable URL to access and download the files. It does _not_ require setting up a separate server or using a third party file-sharing service. You host the files on your own computer and use a Tor Onion Service to make it temporarily accessible over the internet. The receiving user just needs to open the URL in Tor Browser to download the file. [OnionShare](https://onionshare.org) lets you securely and anonymously send and receive files. It works by starting a web server, making it accessible as a Tor onion service, and generating an unguessable web address so others can download files from you, or upload files to you. It does _not_ require setting up a separate server or using a third party file-sharing service.
If you want to send files to someone, OnionShare hosts them on your own computer and uses a Tor onion service to make them temporarily accessible over the internet. The receiving user just needs to open the web address in Tor Browser to download the files. If you want to receive files, OnionShare hosts an anonymous dropbox directly on your computer and uses a Tor onion service to make it temporarily accessible over the internet. Other users can upload files to you from by loading the web address in Tor Browser.
## Documentation ## Documentation

View File

@ -8,15 +8,18 @@
<summary>Securely and anonymously share a file of any size</summary> <summary>Securely and anonymously share a file of any size</summary>
<description> <description>
<p> <p>
OnionShare lets you securely and anonymously share a file of any size with someone. It works OnionShare lets you securely and anonymously send and receive files. It works by starting a
by starting a web server, making it accessible as a Tor hidden service, and generating an web server, making it accessible as a Tor onion service, and generating an unguessable web
unguessable URL to access and download the file. address so others can download files from you, or upload files to you. It does <em>not</em>
require setting up a separate server or using a third party file-sharing service.
</p> </p>
<p> <p>
It doesn't require setting up a server on the internet somewhere or using a third party If you want to send files to someone, OnionShare hosts them on your own computer and uses a Tor
filesharing service. You host the file on your own computer and use a Tor hidden service to onion service to make them temporarily accessible over the internet. The receiving user just
make it temporarily accessible over the internet. The other user just needs to use Tor Browser needs to open the web address in Tor Browser to download the files. If you want to receive files,
to download the file from you. OnionShare hosts an anonymous dropbox directly on your computer and uses a Tor onion service to
make it temporarily accessible over the internet. Other users can upload files to you from by
loading the web address in Tor Browser.
</p> </p>
</description> </description>
<screenshots> <screenshots>

View File

@ -31,14 +31,21 @@ def file_list(path):
version = open('share/version.txt').read().strip() version = open('share/version.txt').read().strip()
description = ( description = (
"""OnionShare lets you securely and anonymously share a file of any size with someone. """ """OnionShare lets you securely and anonymously send and receive files. It """
"""It works by starting a web server, making it accessible as a Tor hidden service, """ """works by starting a web server, making it accessible as a Tor onion """
"""and generating an unguessable URL to access and download the file.""") """service, and generating an unguessable web address so others can download """
long_description = description + " " + ( """files from you, or upload files to you. It does _not_ require setting up """
"""It doesn't require setting up a server on the internet somewhere or using a third """ """a separate server or using a third party file-sharing service."""
"""party filesharing service. You host the file on your own computer and use a Tor """ )
"""hidden service to make it temporarily accessible over the internet. The other user """ long_description = description + "\n\n" + (
"""just needs to use Tor Browser to download the file from you.""" """If you want to send files to someone, OnionShare hosts them on your own """
"""computer and uses a Tor onion service to make them temporarily accessible """
"""over the internet. The receiving user just needs to open the web address """
"""in Tor Browser to download the files. If you want to receive files, """
"""OnionShare hosts an anonymous dropbox directly on your computer and uses """
"""a Tor onion service to make it temporarily accessible over the internet. """
"""Other users can upload files to you from by loading the web address in """
"""Tor Browser."""
) )
author = 'Micah Lee' author = 'Micah Lee'
author_email = 'micah@micahflee.com' author_email = 'micah@micahflee.com'