Skip to content

Commit

Permalink
Merge pull request #47 from penguinolog/urwid_regression_fixed
Browse files Browse the repository at this point in the history
Ban `urwid==2.4.3` as containing UI regression.
  • Loading branch information
markqvist committed Jan 18, 2024
2 parents d856f3f + ed6ba63 commit bf0b08c
Show file tree
Hide file tree
Showing 7 changed files with 31 additions and 31 deletions.
4 changes: 2 additions & 2 deletions nomadnet/ui/textui/Config.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class ConfigFiller(urwid.WidgetWrap):
def __init__(self, widget, app):
self.app = app
self.filler = urwid.Filler(widget, "top")
urwid.WidgetWrap.__init__(self, self.filler)
super().__init__(self.filler)


def keypress(self, size, key):
Expand Down Expand Up @@ -71,7 +71,7 @@ def quit_term(*args, **kwargs):

urwid.connect_signal(self.term, 'closed', quit_term)

urwid.WidgetWrap.__init__(self, self.term)
super().__init__(self.term)


def keypress(self, size, key):
Expand Down
6 changes: 3 additions & 3 deletions nomadnet/ui/textui/Conversations.py
Original file line number Diff line number Diff line change
Expand Up @@ -788,7 +788,7 @@ def __init__(self, source_hash):
if source_hash == None:
self.frame = None
display_widget = urwid.LineBox(urwid.Filler(urwid.Text("\n No conversation selected"), "top"))
urwid.WidgetWrap.__init__(self, display_widget)
super().__init__(display_widget)
else:
if source_hash in ConversationsDisplay.cached_conversation_widgets:
return ConversationsDisplay.cached_conversation_widgets[source_hash]
Expand Down Expand Up @@ -852,7 +852,7 @@ def __init__(self, source_hash):
self.frame
)

urwid.WidgetWrap.__init__(self, self.display_widget)
super().__init__(self.display_widget)

def clear_history_dialog(self):
def dismiss_dialog(sender):
Expand Down Expand Up @@ -1141,7 +1141,7 @@ def __init__(self, message):
urwid.Text("")
])

urwid.WidgetWrap.__init__(self, display_widget)
super().__init__(display_widget)

class SyncProgressBar(urwid.ProgressBar):
def get_text(self):
Expand Down
4 changes: 2 additions & 2 deletions nomadnet/ui/textui/Guide.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def __init__(self, app, parent, reader, topic_name):
style = "topic_list_normal"
focus_style = "list_focus"
self.display_widget = urwid.AttrMap(widget, style, focus_style)
urwid.WidgetWrap.__init__(self, self.display_widget)
super().__init__(self.display_widget)

def display_topic(self, event, topic):
markup = TOPICS[topic]
Expand Down Expand Up @@ -125,7 +125,7 @@ def __init__(self, app, guide_display):
highlight_offFocus="list_off_focus"
)

urwid.WidgetWrap.__init__(self, urwid.LineBox(self.ilb, title="Topics"))
super().__init__(urwid.LineBox(self.ilb, title="Topics"))


def keypress(self, size, key):
Expand Down
2 changes: 1 addition & 1 deletion nomadnet/ui/textui/Log.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def __init__(self, app):
escape_sequence="up",
main_loop=self.app.ui.loop,
)
urwid.WidgetWrap.__init__(self, self.log_term)
super().__init__(self.log_term)

def terminate(self):
self.log_term.terminate()
Expand Down
6 changes: 3 additions & 3 deletions nomadnet/ui/textui/MicronParser.py
Original file line number Diff line number Diff line change
Expand Up @@ -608,7 +608,7 @@ def __init__(self, link_target, orig_spec):
self.link_target = link_target
self.link_fields = None

urwid.AttrSpec.__init__(self, orig_spec.foreground, orig_spec.background)
super().__init__(orig_spec.foreground, orig_spec.background)


class LinkableText(urwid.Text):
Expand All @@ -618,7 +618,7 @@ class LinkableText(urwid.Text):
signals = ["click", "change"]

def __init__(self, text, align=None, cursor_position=0, delegate=None):
self.__super.__init__(text, align=align)
super().__init__(text, align=align)
self.delegate = delegate
self._cursor_position = 0
self.key_timeout = 3
Expand Down Expand Up @@ -729,7 +729,7 @@ def kt_event(self, loop, user_data):

def render(self, size, focus=False):
now = time.time()
c = self.__super.render(size, focus)
c = super().render(size, focus)

if focus and (self.delegate == None or now < self.delegate.last_keypress+self.key_timeout):
c = urwid.CompositeCanvas(c)
Expand Down
38 changes: 19 additions & 19 deletions nomadnet/ui/textui/Network.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ def use_pn(sender):

self.display_widget = urwid.Filler(pile, valign="top", height="pack")

urwid.WidgetWrap.__init__(self, urwid.LineBox(self.display_widget, title="Announce Info"))
super().__init__(urwid.LineBox(self.display_widget, title="Announce Info"))


class AnnounceStreamEntry(urwid.WidgetWrap):
Expand Down Expand Up @@ -296,7 +296,7 @@ def __init__(self, app, announce, delegate):
urwid.connect_signal(widget, "click", self.display_announce, announce)

self.display_widget = urwid.AttrMap(widget, style, focus_style)
urwid.WidgetWrap.__init__(self, self.display_widget)
super().__init__(self.display_widget)

def display_announce(self, event, announce):
try:
Expand Down Expand Up @@ -365,7 +365,7 @@ def __init__(self, app, parent):
)

self.display_widget = self.ilb
urwid.WidgetWrap.__init__(self, urwid.LineBox(self.display_widget, title="Announce Stream"))
super().__init__(urwid.LineBox(self.display_widget, title="Announce Stream"))

def keypress(self, size, key):
if key == "up" and (self.no_content or self.ilb.first_item_is_selected()):
Expand Down Expand Up @@ -681,7 +681,7 @@ def save_node(sender):

self.display_widget = urwid.Filler(pile, valign="top", height="pack")

urwid.WidgetWrap.__init__(self, urwid.LineBox(self.display_widget, title="Node Info"))
super().__init__(urwid.LineBox(self.display_widget, title="Node Info"))


# Yes, this is weird. There is a bug in Urwid/ILB that causes
Expand Down Expand Up @@ -726,7 +726,7 @@ def __init__(self, app):
self.pile = urwid.Pile([urwid.Text(("warning_text", g["info"]+"\n"), align="center"), SelectText(("warning_text", "Currently, no nodes are saved\n\nCtrl+L to view the announce stream\n\n"), align="center")])
self.display_widget = urwid.Filler(self.pile, valign="top", height="pack")

urwid.WidgetWrap.__init__(self, urwid.AttrMap(urwid.LineBox(self.display_widget, title="Saved Nodes"), widget_style))
super().__init__(urwid.AttrMap(urwid.LineBox(self.display_widget, title="Saved Nodes"), widget_style))

def keypress(self, size, key):
if key == "up" and (self.no_content or self.ilb.first_item_is_selected()):
Expand Down Expand Up @@ -869,7 +869,7 @@ def __init__(self, app, node, delegate):

self.display_widget = urwid.AttrMap(widget, style, focus_style)
self.display_widget.source_hash = source_hash
urwid.WidgetWrap.__init__(self, self.display_widget)
super().__init__(self.display_widget)


class AnnounceTime(urwid.WidgetWrap):
Expand All @@ -880,7 +880,7 @@ def __init__(self, app):
self.display_widget = urwid.Text("")
self.update_time()

urwid.WidgetWrap.__init__(self, self.display_widget)
super().__init__(self.display_widget)

def update_time(self):
self.last_announce_string = "Never"
Expand Down Expand Up @@ -912,7 +912,7 @@ def __init__(self, app):
self.display_widget = urwid.Text("")
self.update_time()

urwid.WidgetWrap.__init__(self, self.display_widget)
super().__init__(self.display_widget)

def update_time(self):
self.last_announce_string = "Never"
Expand Down Expand Up @@ -943,7 +943,7 @@ def __init__(self, app):
self.display_widget = urwid.Text("")
self.update_stat()

urwid.WidgetWrap.__init__(self, self.display_widget)
super().__init__(self.display_widget)

def update_stat(self):
self.stat_string = "None"
Expand Down Expand Up @@ -974,7 +974,7 @@ def __init__(self, app):
self.display_widget = urwid.Text("")
self.update_stat()

urwid.WidgetWrap.__init__(self, self.display_widget)
super().__init__(self.display_widget)

def update_stat(self):
self.stat_string = "None"
Expand Down Expand Up @@ -1017,7 +1017,7 @@ def __init__(self, app):
self.display_widget = urwid.Text("")
self.update_stat()

urwid.WidgetWrap.__init__(self, self.display_widget)
super().__init__(self.display_widget)

def update_stat(self):
self.stat_string = "None"
Expand Down Expand Up @@ -1049,7 +1049,7 @@ def __init__(self, app):
self.display_widget = urwid.Text("")
self.update_stat()

urwid.WidgetWrap.__init__(self, self.display_widget)
super().__init__(self.display_widget)

def update_stat(self):
self.stat_string = "None"
Expand Down Expand Up @@ -1081,7 +1081,7 @@ def __init__(self, app):
self.display_widget = urwid.Text("")
self.update_stat()

urwid.WidgetWrap.__init__(self, self.display_widget)
super().__init__(self.display_widget)

def update_stat(self):
self.stat_string = "None"
Expand Down Expand Up @@ -1193,7 +1193,7 @@ def node_info_query(sender):
]
)

urwid.WidgetWrap.__init__(self, urwid.LineBox(self.display_widget, title="Local Peer Info"))
super().__init__(urwid.LineBox(self.display_widget, title="Local Peer Info"))

def start(self):
self.t_last_announce.start()
Expand Down Expand Up @@ -1369,7 +1369,7 @@ def connect_query(sender):

self.display_widget = pile

urwid.WidgetWrap.__init__(self, urwid.AttrMap(urwid.LineBox(self.display_widget, title="Local Node Info"), widget_style))
super().__init__(urwid.AttrMap(urwid.LineBox(self.display_widget, title="Local Node Info"), widget_style))

def start(self):
if self.app.node != None:
Expand All @@ -1392,7 +1392,7 @@ def __init__(self, app, title, value_method, append_text=""):
self.append_text = append_text
self.update()

urwid.WidgetWrap.__init__(self, self.display_widget)
super().__init__(self.display_widget)

def update(self):
self.value = self.value_method()
Expand Down Expand Up @@ -1434,7 +1434,7 @@ def get_num_nodes():

self.display_widget = urwid.LineBox(pile, title="Network Stats")

urwid.WidgetWrap.__init__(self, self.display_widget)
super().__init__(self.display_widget)

def start(self):
self.w_heard_peers.start()
Expand Down Expand Up @@ -1620,7 +1620,7 @@ def __init__(self, app):
pl = len(self.peer_list)
else:
pl = 0
urwid.WidgetWrap.__init__(self, urwid.AttrMap(urwid.LineBox(self.display_widget, title=f"LXMF Propagation Peers ({pl})"), widget_style))
super().__init__(urwid.AttrMap(urwid.LineBox(self.display_widget, title=f"LXMF Propagation Peers ({pl})"), widget_style))

def keypress(self, size, key):
if key == "up" and (self.no_content or self.ilb.first_item_is_selected()):
Expand Down Expand Up @@ -1741,7 +1741,7 @@ def __init__(self, app, peer, delegate, trust_level):
widget = ListEntry(sym+" "+display_str+"\n "+alive_string+", last heard "+pretty_date(int(peer.last_heard))+"\n "+str(len(peer.unhandled_messages))+" unhandled LXMs, "+RNS.prettysize(peer.link_establishment_rate/8, "b")+"/s LER")
self.display_widget = urwid.AttrMap(widget, style, focus_style)
self.display_widget.destination_hash = destination_hash
urwid.WidgetWrap.__init__(self, self.display_widget)
super().__init__(self.display_widget)


def pretty_date(time=False):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@
entry_points= {
'console_scripts': ['nomadnet=nomadnet.nomadnet:main']
},
install_requires=["rns>=0.7.0", "lxmf>=0.3.9", "urwid==2.4.2", "qrcode"],
install_requires=["rns>=0.7.0", "lxmf>=0.3.9", "urwid>=2.4.2,!=2.4.3", "qrcode"],
python_requires=">=3.6",
)

0 comments on commit bf0b08c

Please sign in to comment.