mirror of
https://github.com/markqvist/NomadNet.git
synced 2025-12-17 14:54:26 +01:00
Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d69267fe0c | ||
|
|
35b0529f6d | ||
|
|
56f4f20bb2 | ||
|
|
53139c25f9 |
@@ -141,7 +141,7 @@ class NomadNetworkApp:
|
||||
RNS.Identity.remember(
|
||||
packet_hash=None,
|
||||
destination_hash=self.lxmf_destination.hash,
|
||||
public_key=self.identity.pub_bytes,
|
||||
public_key=self.identity.get_public_key(),
|
||||
app_data=None
|
||||
)
|
||||
|
||||
|
||||
@@ -1 +1 @@
|
||||
__version__ = "0.0.2"
|
||||
__version__ = "0.0.5"
|
||||
@@ -31,7 +31,7 @@ class ConversationsArea(urwid.LineBox):
|
||||
self.delegate.new_conversation()
|
||||
elif key == "tab":
|
||||
self.delegate.app.ui.main_display.frame.set_focus("header")
|
||||
elif key == "up" and self.delegate.ilb.first_item_is_selected():
|
||||
elif key == "up" and (self.delegate.ilb.first_item_is_selected() or self.delegate.ilb.body_is_empty()):
|
||||
self.delegate.app.ui.main_display.frame.set_focus("header")
|
||||
else:
|
||||
return super(ConversationsArea, self).keypress(size, key)
|
||||
|
||||
4
setup.py
4
setup.py
@@ -21,8 +21,8 @@ setuptools.setup(
|
||||
"Operating System :: OS Independent",
|
||||
],
|
||||
entry_points= {
|
||||
'console_scripts': ['nomadnet=nomadnet:main']
|
||||
'console_scripts': ['nomadnet=nomadnet.nomadnet:main']
|
||||
},
|
||||
install_requires=['rns>=0.2.0', 'lxmf>=0.0.3', 'urwid>=2.1.2'],
|
||||
install_requires=['rns>=0.2.1', 'lxmf>=0.0.6', 'urwid>=2.1.2'],
|
||||
python_requires='>=3.5',
|
||||
)
|
||||
Reference in New Issue
Block a user