1
0
mirror of https://github.com/gryf/wicd.git synced 2026-03-26 22:03:32 +01:00

Big one this time. Hopefully I got everything.

curses/wicd.curses.py:
Added the full language component from wicd.misc into the file.
Added support for connecting to networks :-).
Added statusbar-updating support during connections.
Fixed a problem where an exception found before the UI is on-screen will cause another exception in wrap_exceptions.
Turned the footer into a ListBox, so that I can add more than more stuff to it more easily.
Rearranged the order of strings in the wireless connection part of the UI.
Added a bunch of keymappings to support all of the new functionality.
Made the UI updating function into an idle function, to better support the new functionality (and it eats up less CPU, too).
Some minor code cleanup throughout.
curses/README: Updated to correspond with new features
curses/TODO: Removed connection support from the TODO, added a few other things.
This commit is contained in:
Andrew Psaltis
2008-12-20 16:32:19 -05:00
parent f80c04c98d
commit b1475ce12c
3 changed files with 307 additions and 71 deletions

View File

@@ -1,7 +1,5 @@
Things to do (in no particular order):
* Implement the ability to connect/disconnect to/from stuff.
Yeah, I know that it's important...
* Make a settings dialog
* Implement something that resembles a combo box in urwid
* Make a network config dialog
@@ -9,9 +7,12 @@ Things to do (in no particular order):
* Implement a keyhandler function for the overall frame
* Make keystrokes customizable
* Make color schemes customizable
* Integrate this with the my local copy of the experimental branch
* Give some indication of activity during the connection process
Oh, and most importantly:
* Tell people how they can quit the app (F8, until I do all of that stuff) :-)
* Tell people how they can quit the app in the app (F8 or Q, until I do all of
that stuff) :-)
Anything else? That's all I can think of now.