Skip to content

Commit a3bbcdd

Browse files
committed
Merge branch 'v0.6' of https://github.com/surbhicis/PyBitmessage into UiChanges
2 parents 2fc2101 + e5b92e2 commit a3bbcdd

43 files changed

Lines changed: 1878 additions & 2587 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ addons:
66
packages:
77
- build-essential
88
- libcap-dev
9+
- tor
910
install:
1011
- pip install -r requirements.txt
1112
- ln -s src pybitmessage # tests environment

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
python_prctl
22
psutil
33
pycrypto
4+
stem

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@ def run(self):
7070
'pybitmessage.network',
7171
'pybitmessage.plugins',
7272
'pybitmessage.pyelliptic',
73-
'pybitmessage.socks',
7473
'pybitmessage.storage'
7574
]
7675

src/bitmessagecurses/__init__.py

Lines changed: 498 additions & 300 deletions
Large diffs are not rendered by default.

src/bitmessagemain.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,8 @@ def start_proxyconfig(config):
194194
from plugins.plugin import get_plugin
195195
try:
196196
proxyconfig_start = time.time()
197-
get_plugin('proxyconfig', name=proxy_type)(config)
197+
if not get_plugin('proxyconfig', name=proxy_type)(config):
198+
raise TypeError
198199
except TypeError:
199200
logger.error(
200201
'Failed to run proxy config plugin %s',
@@ -418,7 +419,7 @@ def start(self):
418419
self.stop()
419420
elif not state.enableGUI:
420421
from tests import core as test_core # pylint: disable=relative-import
421-
test_core_result = test_core.run()
422+
test_core_result = test_core.run(self)
422423
state.enableGUI = True
423424
self.stop()
424425
test_core.cleanup()

src/bitmessageqt/__init__.py

Lines changed: 108 additions & 530 deletions
Large diffs are not rendered by default.

src/bitmessageqt/dialogs.py

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,25 @@
55

66
from PyQt4 import QtGui
77

8-
from version import softwareVersion
9-
108
import paths
119
import widgets
1210
from address_dialogs import (
13-
AddAddressDialog, EmailGatewayDialog, NewAddressDialog, NewSubscriptionDialog, RegenerateAddressesDialog,
11+
AddAddressDialog, EmailGatewayDialog, NewAddressDialog,
12+
NewSubscriptionDialog, RegenerateAddressesDialog,
1413
SpecialAddressBehaviorDialog
1514
)
1615
from newchandialog import NewChanDialog
1716
from retranslateui import RetranslateMixin
17+
from settings import SettingsDialog
1818
from tr import _translate
19+
from version import softwareVersion
20+
1921

2022
__all__ = [
2123
"NewChanDialog", "AddAddressDialog", "NewAddressDialog",
2224
"NewSubscriptionDialog", "RegenerateAddressesDialog",
23-
"SpecialAddressBehaviorDialog", "EmailGatewayDialog"
25+
"SpecialAddressBehaviorDialog", "EmailGatewayDialog",
26+
"SettingsDialog"
2427
]
2528

2629

src/bitmessageqt/settings.py

Lines changed: 537 additions & 621 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)