diff --git a/Tribler/dispersy b/Tribler/dispersy index 7c8c5df85c6..d10ead8ba26 160000 --- a/Tribler/dispersy +++ b/Tribler/dispersy @@ -1 +1 @@ -Subproject commit 7c8c5df85c6ecad7e49370d7b7262c64095746b0 +Subproject commit d10ead8ba26bce15f6ebb1d4e621e0e02f1be2fa diff --git a/TriblerGUI/qt_resources/mainwindow.ui b/TriblerGUI/qt_resources/mainwindow.ui index 391ee5c5a89..e1a2526b0f6 100644 --- a/TriblerGUI/qt_resources/mainwindow.ui +++ b/TriblerGUI/qt_resources/mainwindow.ui @@ -1050,7 +1050,7 @@ background-color: #e67300; - 15 + 4 @@ -6322,14 +6322,14 @@ High anonymity color: white; - Trustchain mining + Token mining - Enable Trustchain mining + Enable token mining @@ -6342,8 +6342,8 @@ color: white; - Trustchain is a blockchain-based way to keep track of sharing ratio, and eventually prevent freeriding. It is currently still in an early phase of development. -Trustchain mining is the automated process of uploading to swarms in order increase your reputation. Go to channels and choose a channel from which to select swarms. + Tribler uses a blockchain to keep track of your sharing ratio, which eventually prevents freeriding. It is currently still in an early phase of development. +Token mining is the automated process of uploading to swarms in order increase your sharing ratio and your reputation. Go to your discovered channels and pick a channel to mine from. true diff --git a/TriblerGUI/widgets/downloadwidgetitem.py b/TriblerGUI/widgets/downloadwidgetitem.py index 8ec2aec6fe9..93eb58fd2a4 100644 --- a/TriblerGUI/widgets/downloadwidgetitem.py +++ b/TriblerGUI/widgets/downloadwidgetitem.py @@ -23,12 +23,15 @@ def __init__(self): bar_container.setStyleSheet("background-color: transparent;") self.progress_slider = QProgressBar() + + # We have to set a zero pixel border to get the background working on Mac. self.progress_slider.setStyleSheet(""" QProgressBar { background-color: white; color: black; font-size: 12px; text-align: center; + border: 0px solid transparent; } QProgressBar::chunk { diff --git a/tribler.spec b/tribler.spec index 801e3265a13..cfba44e5c7b 100644 --- a/tribler.spec +++ b/tribler.spec @@ -17,7 +17,7 @@ for file in os.listdir("TriblerGUI/widgets"): if file.endswith(".py"): widget_files.append('TriblerGUI.widgets.%s' % file[:-3]) -data_to_copy = [('Tribler/dispersy/libnacl/libnacl', 'libnacl'), ('electrum', 'electrum'), ('TriblerGUI/qt_resources', 'qt_resources'), ('TriblerGUI/images', 'images'), ('TriblerGUI/scripts', 'scripts'), ('twisted', 'twisted'), ('Tribler', 'tribler_source/Tribler'), ('logger.conf', '.')] +data_to_copy = [('electrum', 'electrum'), ('TriblerGUI/qt_resources', 'qt_resources'), ('TriblerGUI/images', 'images'), ('TriblerGUI/scripts', 'scripts'), ('twisted', 'twisted'), ('Tribler', 'tribler_source/Tribler'), ('logger.conf', '.')] if sys.platform.startswith('darwin'): data_to_copy += [('/Applications/VLC.app/Contents/MacOS/lib', 'vlc/lib'), ('/Applications/VLC.app/Contents/MacOS/plugins', 'vlc/plugins')]