mirror of
https://github.com/onionshare/onionshare.git
synced 2025-01-27 23:07:14 -05:00
Added AppData file, and made new screenshots for it (fixes #160)
This commit is contained in:
parent
8f8e38b11d
commit
ffd50445ba
@ -6,6 +6,7 @@ include onionshare/index.html
|
|||||||
include onionshare/404.html
|
include onionshare/404.html
|
||||||
include onionshare/strings.json
|
include onionshare/strings.json
|
||||||
include install/onionshare.desktop
|
include install/onionshare.desktop
|
||||||
|
include install/onionshare.appdata.xml
|
||||||
include install/onionshare80.xpm
|
include install/onionshare80.xpm
|
||||||
include images/*.png
|
include images/*.png
|
||||||
include locale/*.json
|
include locale/*.json
|
||||||
|
35
install/onionshare.appdata.xml
Normal file
35
install/onionshare.appdata.xml
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!-- Copyright 2015 Micah Lee <micah@micahflee.com> -->
|
||||||
|
<component type="desktop">
|
||||||
|
<id>onionshare.desktop</id>
|
||||||
|
<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>
|
||||||
|
<description>
|
||||||
|
<p>
|
||||||
|
OnionShare lets you securely and anonymously share a file of any size with someone. It works
|
||||||
|
by starting a web server, making it accessible as a Tor hidden service, and generating an
|
||||||
|
unguessable URL to access and download the file.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
It doesn't require setting up a server on the internet somewhere or using a third 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 just needs to use Tor Browser
|
||||||
|
to download the file from you.
|
||||||
|
</p>
|
||||||
|
</description>
|
||||||
|
<screenshots>
|
||||||
|
<screenshot type="default">
|
||||||
|
<image>https://raw.githubusercontent.com/micahflee/onionshare/master/screenshots/appdata-server.png</image>
|
||||||
|
<caption>Sender sharing files with OnionShare</caption>
|
||||||
|
</screenshot>
|
||||||
|
<screenshot>
|
||||||
|
<image>https://raw.githubusercontent.com/micahflee/onionshare/master/screenshots/appdata-client.png</image>
|
||||||
|
<caption>Receiver downloading files with Tor Browser</caption>
|
||||||
|
</screenshot>
|
||||||
|
</screenshots>
|
||||||
|
<url type="homepage">https://onionshare.org/</url>
|
||||||
|
<updatecontact>micah@micahflee.com</updatecontact>
|
||||||
|
</component>
|
||||||
|
|
BIN
screenshots/appdata-client.png
Normal file
BIN
screenshots/appdata-client.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 62 KiB |
BIN
screenshots/appdata-server.png
Normal file
BIN
screenshots/appdata-server.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 112 KiB |
1
setup.py
1
setup.py
@ -86,6 +86,7 @@ if system == 'Linux':
|
|||||||
scripts=['install/linux_scripts/onionshare', 'install/linux_scripts/onionshare-gui'],
|
scripts=['install/linux_scripts/onionshare', 'install/linux_scripts/onionshare-gui'],
|
||||||
data_files=[
|
data_files=[
|
||||||
(os.path.join(sys.prefix, 'share/applications'), ['install/onionshare.desktop']),
|
(os.path.join(sys.prefix, 'share/applications'), ['install/onionshare.desktop']),
|
||||||
|
(os.path.join(sys.prefix, 'share/appdata'), ['install/onionshare.appdata.xml']),
|
||||||
(os.path.join(sys.prefix, 'share/pixmaps'), ['install/onionshare80.xpm']),
|
(os.path.join(sys.prefix, 'share/pixmaps'), ['install/onionshare80.xpm']),
|
||||||
(os.path.join(sys.prefix, 'share/onionshare/images'), images),
|
(os.path.join(sys.prefix, 'share/onionshare/images'), images),
|
||||||
(os.path.join(sys.prefix, 'share/onionshare/locale'), locale)
|
(os.path.join(sys.prefix, 'share/onionshare/locale'), locale)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user