mirror of
https://github.com/onionshare/onionshare.git
synced 2025-01-13 08:19:28 -05:00
Update descriptions in appdata and setup.py
This commit is contained in:
parent
9cef26a5bf
commit
318da0871d
@ -5,36 +5,21 @@
|
||||
<metadata_license>CC0-1.0</metadata_license>
|
||||
<project_license>GPL-3.0</project_license>
|
||||
<name>OnionShare</name>
|
||||
<summary>Securely and anonymously share a file of any size</summary>
|
||||
<summary>Securely and anonymously share files, host websites, and chat with friends</summary>
|
||||
<description>
|
||||
<p>
|
||||
OnionShare 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.
|
||||
</p>
|
||||
<p>
|
||||
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.
|
||||
OnionShare is an open source tool that lets you securely and anonymously share files, host websites, and chat with friends using the Tor network.
|
||||
</p>
|
||||
</description>
|
||||
<launchable type="desktop-id">org.onionshare.OnionShare.desktop</launchable>
|
||||
<screenshots>
|
||||
<screenshot type="default">
|
||||
<image>https://raw.githubusercontent.com/micahflee/onionshare/master/screenshots/appdata-onionshare-share-server.png</image>
|
||||
<caption>Sharing files with OnionShare</caption>
|
||||
</screenshot>
|
||||
<screenshot>
|
||||
<image>https://raw.githubusercontent.com/micahflee/onionshare/master/screenshots/appdata-onionshare-share-client.png</image>
|
||||
<caption>Downloading OnionShare files using Tor Browser</caption>
|
||||
</screenshot>
|
||||
<screenshot>
|
||||
<image>https://raw.githubusercontent.com/micahflee/onionshare/master/screenshots/appdata-onionshare-receive-server.png</image>
|
||||
<caption>Receiving files with OnionShare</caption>
|
||||
</screenshot>
|
||||
<screenshot>
|
||||
<image>https://raw.githubusercontent.com/micahflee/onionshare/master/screenshots/appdata-onionshare-receive-client.png</image>
|
||||
<caption>Uploading files to OnionShare user using Tor Browser</caption>
|
||||
<image>https://raw.githubusercontent.com/micahflee/onionshare/master/docs/source/_static/screenshots/tabs.png</image>
|
||||
<caption>Types of services that OnionShare supports</caption>
|
||||
</screenshot>
|
||||
</screenshots>
|
||||
<url type="bugtracker">https://github.com/micahflee/onionshare/issues/</url>
|
||||
<url type="help">https://github.com/micahflee/onionshare/wiki/</url>
|
||||
<url type="help">https://onionshare.org/</url>
|
||||
<url type="homepage">https://onionshare.org/</url>
|
||||
<developer_name>Micah Lee</developer_name>
|
||||
<update_contact>micah@micahflee.com</update_contact>
|
||||
|
26
setup.py
26
setup.py
@ -32,30 +32,11 @@ def file_list(path):
|
||||
|
||||
|
||||
version = open("share/version.txt").read().strip()
|
||||
description = (
|
||||
"""OnionShare 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."""
|
||||
)
|
||||
long_description = (
|
||||
description
|
||||
+ "\n\n"
|
||||
+ (
|
||||
"""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."""
|
||||
)
|
||||
)
|
||||
description = "OnionShare is an open source tool that lets you securely and anonymously share files, host websites, and chat with friends using the Tor network."
|
||||
|
||||
author = "Micah Lee"
|
||||
author_email = "micah@micahflee.com"
|
||||
url = "https://github.com/micahflee/onionshare"
|
||||
url = "https://onionshare.org"
|
||||
license = "GPL v3"
|
||||
keywords = "onion, share, onionshare, tor, anonymous, web server"
|
||||
classifiers = [
|
||||
@ -92,7 +73,6 @@ setup(
|
||||
name="onionshare",
|
||||
version=version,
|
||||
description=description,
|
||||
long_description=long_description,
|
||||
author=author,
|
||||
author_email=author_email,
|
||||
maintainer=author,
|
||||
|
Loading…
Reference in New Issue
Block a user