Compare commits

..

6 Commits

Author SHA1 Message Date
Mark Qvist
aa4feeb29c Updated version
Some checks failed
Create and publish a Docker image / build-and-push-image (push) Has been cancelled
2025-04-15 20:24:48 +02:00
Mark Qvist
ad985a2552 Updated dependencies 2025-04-15 20:23:24 +02:00
Mark Qvist
42fdc30cf8 Cleanup configobj
Some checks failed
Create and publish a Docker image / build-and-push-image (push) Has been cancelled
2025-04-08 02:05:02 +02:00
Mark Qvist
e79689010e Fixed directory sorting bug 2025-04-08 02:03:34 +02:00
Mark Qvist
e4f57d6260 Updated dependencies 2025-03-31 15:03:44 +02:00
Mark Qvist
03d1b22b8f Updated dependencies
Some checks failed
Create and publish a Docker image / build-and-push-image (push) Has been cancelled
2025-02-18 21:20:50 +01:00
5 changed files with 4 additions and 2487 deletions

View File

@ -345,7 +345,7 @@ class Directory:
if e.hosts_node:
node_list.append(e)
node_list.sort(key = lambda e: (e.sort_rank if e.sort_rank != None else 2^32, DirectoryEntry.TRUSTED-e.trust_level, e.display_name))
node_list.sort(key = lambda e: (e.sort_rank if e.sort_rank != None else 2^32, DirectoryEntry.TRUSTED-e.trust_level, e.display_name if e.display_name != None else "_"))
return node_list
def number_of_known_nodes(self):

View File

@ -19,7 +19,7 @@ from datetime import datetime
import RNS.vendor.umsgpack as msgpack
from ._version import __version__
from .vendor.configobj import ConfigObj
from RNS.vendor.configobj import ConfigObj
class NomadNetworkApp:
time_format = "%Y-%m-%d %H:%M:%S"

View File

@ -1 +1 @@
__version__ = "0.6.1"
__version__ = "0.6.2"

File diff suppressed because it is too large Load Diff

View File

@ -30,6 +30,6 @@ setuptools.setup(
entry_points= {
'console_scripts': ['nomadnet=nomadnet.nomadnet:main']
},
install_requires=["rns>=0.9.1", "lxmf>=0.6.2", "urwid>=2.6.16", "qrcode"],
install_requires=["rns>=0.9.4", "lxmf>=0.6.3", "urwid>=2.6.16", "qrcode"],
python_requires=">=3.7",
)