mirror of
https://github.com/markqvist/NomadNet.git
synced 2025-12-17 14:54:26 +01:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0df8b56d58 | ||
|
|
112a45f270 | ||
|
|
03a02a9ebc |
@@ -102,7 +102,7 @@ class Conversation:
|
|||||||
unread = True
|
unread = True
|
||||||
|
|
||||||
if display_name == None and app_data:
|
if display_name == None and app_data:
|
||||||
display_name = app_data.decode("utf-8")
|
display_name = LXMF.display_name_from_app_data(app_data)
|
||||||
|
|
||||||
if display_name == None:
|
if display_name == None:
|
||||||
sort_name = ""
|
sort_name = ""
|
||||||
|
|||||||
@@ -746,7 +746,7 @@ class NomadNetworkApp:
|
|||||||
self.lxmf_sync_limit = None
|
self.lxmf_sync_limit = None
|
||||||
|
|
||||||
if option == "required_stamp_cost":
|
if option == "required_stamp_cost":
|
||||||
value = self.config["node"]["node_name"]
|
value = self.config["client"][option]
|
||||||
if value.lower() == "none":
|
if value.lower() == "none":
|
||||||
self.required_stamp_cost = None
|
self.required_stamp_cost = None
|
||||||
else:
|
else:
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
__version__ = "0.5.2"
|
__version__ = "0.5.3"
|
||||||
|
|||||||
2
setup.py
2
setup.py
@@ -30,6 +30,6 @@ setuptools.setup(
|
|||||||
entry_points= {
|
entry_points= {
|
||||||
'console_scripts': ['nomadnet=nomadnet.nomadnet:main']
|
'console_scripts': ['nomadnet=nomadnet.nomadnet:main']
|
||||||
},
|
},
|
||||||
install_requires=["rns>=0.7.7", "lxmf>=0.5.1", "urwid>=2.4.4", "qrcode"],
|
install_requires=["rns>=0.7.8", "lxmf>=0.5.2", "urwid>=2.4.4", "qrcode"],
|
||||||
python_requires=">=3.6",
|
python_requires=">=3.6",
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user