Compare commits

...

6 Commits
0.4.7 ... 0.4.9

Author SHA1 Message Date
Mark Qvist
b14d42a17c Updated versions 2024-05-18 15:15:00 +02:00
Mark Qvist
51f0048e7c Updated nerd font glyphs. Fixes #55. 2024-05-18 14:56:22 +02:00
Mark Qvist
c2fb2ca9f8 Updated version and dependencies 2024-05-05 20:13:00 +02:00
Mark Qvist
6a4f202624 Updated dependencies 2024-03-04 00:31:38 +01:00
Mark Qvist
add8b295ec Updated version 2024-03-04 00:31:25 +01:00
Mark Qvist
f1989cfc6e Fixed inadverdent trust level warning 2024-03-02 09:11:09 +01:00
6 changed files with 16 additions and 21 deletions

View File

@@ -257,11 +257,12 @@ class Directory:
if announced_display_name == None: if announced_display_name == None:
return self.directory_entries[source_hash].trust_level return self.directory_entries[source_hash].trust_level
else: else:
for entry in self.directory_entries: if not self.directory_entries[source_hash].trust_level == DirectoryEntry.TRUSTED:
e = self.directory_entries[entry] for entry in self.directory_entries:
if e.display_name == announced_display_name: e = self.directory_entries[entry]
if e.source_hash != source_hash: if e.display_name == announced_display_name:
return DirectoryEntry.WARNING if e.source_hash != source_hash:
return DirectoryEntry.WARNING
return self.directory_entries[source_hash].trust_level return self.directory_entries[source_hash].trust_level
else: else:

View File

@@ -1 +1 @@
__version__ = "0.4.7" __version__ = "0.4.9"

View File

@@ -97,10 +97,10 @@ GLYPHSETS = {
} }
if platform.system() == "Darwin": if platform.system() == "Darwin":
urm_char = " \uf0e0 " urm_char = " \uf0e0"
ur_char = "\uf0e0 " ur_char = "\uf0e0 "
else: else:
urm_char = " \uf003 " urm_char = " \uf003"
ur_char = "\uf003 " ur_char = "\uf003 "
GLYPHS = { GLYPHS = {
@@ -115,17 +115,17 @@ GLYPHS = {
("arrow_u", "/\\", "\u2191", "\u2191"), ("arrow_u", "/\\", "\u2191", "\u2191"),
("arrow_d", "\\/", "\u2193", "\u2193"), ("arrow_d", "\\/", "\u2193", "\u2193"),
("warning", "!", "\u26a0", "\uf12a"), ("warning", "!", "\u26a0", "\uf12a"),
("info", "i", "\u2139", "\ufb4d"), ("info", "i", "\u2139", "\U000f064e"),
("unread", "[!]", "\u2709", ur_char), ("unread", "[!]", "\u2709", ur_char),
("divider1", "-", "\u2504", "\u2504"), ("divider1", "-", "\u2504", "\u2504"),
("peer", "[P]", "\u24c5 ", "\uf415"), ("peer", "[P]", "\u24c5 ", "\uf415"),
("node", "[N]", "\u24c3 ", "\uf502"), ("node", "[N]", "\u24c3 ", "\U000f0002"),
("page", "", "\u25a4 ", "\uf719 "), ("page", "", "\u25a4 ", "\uf719 "),
("speed", "", "\u25F7 ", "\uf9c4"), ("speed", "", "\u25F7 ", "\U000f04c5 "),
("decoration_menu", " +", " +", " \uf93a"), ("decoration_menu", " +", " +", " \U000f043b"),
("unread_menu", " !", " \u2709", urm_char), ("unread_menu", " !", " \u2709", urm_char),
("globe", "", "", "\uf484"), ("globe", "", "", "\uf484"),
("sent", "/\\", "\u2191", "\ufbf4"), ("sent", "/\\", "\u2191", "\U000f0cd8"),
("papermsg", "P", "\u25a4", "\uf719"), ("papermsg", "P", "\u25a4", "\uf719"),
("qrcode", "QR", "\u25a4", "\uf029"), ("qrcode", "QR", "\u25a4", "\uf029"),
} }

View File

@@ -783,7 +783,7 @@ The following line should contain a grayscale gradient bar:
Unicode Glyphs : \u2713 \u2715 \u26a0 \u24c3 \u2193 Unicode Glyphs : \u2713 \u2715 \u26a0 \u24c3 \u2193
Nerd Font Glyphs : \uf484 \uf9c4 \uf719 \uf502 \uf415 \uf023 \uf06e Nerd Font Glyphs : \uf484 \U000f04c5 \U000f0219 \U000f0002 \uf415 \uf023 \uf06e
''' '''

View File

@@ -1,6 +0,0 @@
compiler==0.2.0
configobj==5.0.8
lxmf==0.3.2
rns==0.5.7
setuptools==68.0.0
urwid==2.1.2

View File

@@ -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.2", "lxmf>=0.4.0", "urwid>=2.4.2,!=2.4.3", "qrcode"], install_requires=["rns>=0.7.5", "lxmf>=0.4.3", "urwid>=2.4.4", "qrcode"],
python_requires=">=3.6", python_requires=">=3.6",
) )