X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=README.md;h=f36e850661ed5f8aad56eb0d4a068a73b56ec478;hb=00d2622b0fff2411dc81ee2a0cc43a5f3f52564c;hp=3392cd8a5d071152f2df3e05984e51a3c03d3436;hpb=05dbb28d6e8613216f43e8d0fae487c1d9c2fcd3;p=nikiroo-utils.git diff --git a/README.md b/README.md index 3392cd8..f36e850 100644 --- a/README.md +++ b/README.md @@ -31,21 +31,21 @@ import jexer.*; public class MyApplication extends TApplication { public MyApplication() { - super(); + super(); - // Create an editor window that has support for - // copy/paste, search text, arrow keys, horizontal - // and vertical scrollbar, etc. - addEditor(); + // Create an editor window that has support for + // copy/paste, search text, arrow keys, horizontal + // and vertical scrollbar, etc. + addEditor(); - // Create standard menus for File and Window - addFileMenu(); - addWindowMenu(); + // Create standard menus for File and Window + addFileMenu(); + addWindowMenu(); } public static void main(String [] args) { - MyApplication app = new MyApplication(); - app.run(); + MyApplication app = new MyApplication(); + app.run(); } } ``` @@ -54,24 +54,37 @@ public class MyApplication extends TApplication { Roadmap ------- -This is a work in progress. Many tasks remain before calling this -version 1.0: +Many tasks remain before calling this version 1.0: 0.0.1: -- Base classes: - - EMCA48Terminal read thread - - TApplication loop -- Incorporate checkstyle ant task +- TDirectoryList +- TField +- TMessageBox +- THScroller / TVScroller +- TText +- TTreeView 0.0.2: -- Get modal messagebox running without fibers -- Port remaining d-tui functionality over - - All widgets +- TEditor +- TFileOpen +- TTerminal 0.0.3: +- Bugs + - TSubMenu keyboard mnemonic not working + - kbDel assertion failure in TMenu (MID_CLEAR) +- TEditor + - Word wrap + - Forward/backward word + - Search + - Replace + - Cut/Copy/Paste + +0.0.4: + - ECMATerminal - Mouse 1006 mode parsing - Bugs