Skip to content

Commit

Permalink
README update, change BT icons
Browse files Browse the repository at this point in the history
  • Loading branch information
cipres authored and cipres committed Nov 29, 2020
1 parent 894d288 commit cbfdf50
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 1 deletion.
5 changes: 5 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,11 @@ Some elements from the ipfs-css_ repository (CSS files and fonts) are included.

Some icons from the "Oxygen" icons set are included.

This software incudes icons made by the following FlatIcon authors:

- `FreePik <https://www.flaticon.com/authors/freepik>`_
- `Pixel perfect <https://www.flaticon.com/authors/pixel-perfect>`_

Some of the beautiful artwork (under the Creative Commons CC-BY-SA license)
from the ipfs-logo_ project's repository is included, unchanged.

Expand Down
5 changes: 4 additions & 1 deletion galacteek/ui/torrentgui.py
Original file line number Diff line number Diff line change
Expand Up @@ -724,7 +724,10 @@ def _add_magnet_triggered(self, *a):
text=clipText if isMagnetLink(clipText) else ''
)

ensure(self.add_from_magnet(magnetLink))
if isMagnetLink(magnetLink):
ensure(self.add_from_magnet(magnetLink))
else:
messageBox('Invalid magnet link')

async def add_from_magnet(self, magnetLink):
filename, tData = await self.magnetConverter.toTorrentData(magnetLink)
Expand Down
1 change: 0 additions & 1 deletion share/icons/mimetypes/application-x-bittorrent.png

This file was deleted.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified share/icons/torrent.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit cbfdf50

Please sign in to comment.