From: SVN by r. <sv...@ca...> - 2007-10-02 09:34:24
|
Author: rotman Date: 2007-10-02 11:34:21 +0200 (Tue, 02 Oct 2007) New Revision: 162 Added: ChangeLog Modified: README Log: moved changes per version to ChangeLog Added: ChangeLog =================================================================== --- ChangeLog (rev 0) +++ ChangeLog 2007-10-02 09:34:21 UTC (rev 162) @@ -0,0 +1,45 @@ +0.3 (Unreleased) + * focus fix in login dialog + * Improve desc table to show primary key + * fix to stop spooled lines being appended to each other. + * Improve tab completion for update + * NullPointerException fix when not running from jar. + +0.2 (17-09-2007) + * Search in history (for example by entering '/query' to make the current command the last command with query in it) + * \n always tries to execute the command even if you are not at the end of the command + * Show tables (show a list of tables that is available for querying) + * BUGFIX: handle large results a bit better (memory wise) + * BUGFIX: fix tabcompletion when cursor not at the end of the sql string + * tab completion improvements + * Make columns in select query fit the max result with instead of the max column width + * make command help include list of known connections + * make spool command include status + * edit fixes + * help improvements + * make all commands match [\s]*[command][\s]*(|;) + * typing 'not at the end of a line' and the line becomes too large.. strange things happen... + * improved readability of desc table command + * desc of not existing table doesn't give an error + * replace ~ in ~/* for user home dir (for spool command) + * made '@' appear in help as well + * Improve desc table to show not null + * scroll all the way down when key typed that is not pageup/down + +0.1 + * connection settings via db.properties and input of password in a seperate dialog + configuration can be done by editing a simple db.properties file + * command history (key up/down) + * spool + * read sql script files and execute them + * (initial) tab completion + * when more matches show all matches in the output window + * if less then predefined max show matches in a selection window + * if only one match select that match + * desc table (initial) + * page up/down support + * info: show info of the current connection + * history: shows last executed commands + * help: provide some help about the available commands and it's usage + * remove prompt at the start of the command after executing to make it easier to copy/paste commands that are devided into multiple lines + * added support for 'show tables having column' Modified: README =================================================================== --- README 2007-10-02 09:30:44 UTC (rev 161) +++ README 2007-10-02 09:34:21 UTC (rev 162) @@ -21,52 +21,8 @@ TODO CURRENT FEATURES -0.1 -- connection settings via db.properties and input of password in a seperate dialog - configuration can be done by editing a simple db.properties file -- command history (key up/down) -- spool -- read sql script files and execute them -- (initial) tab completion - - when more matches show all matches in the output window - - if less then predefined max show matches in a selection window - - if only one match select that match -- desc table (initial) -- page up/down support -- info: show info of the current connection -- history: shows last executed commands -- help: provide some help about the available commands and it's usage -- remove prompt at the start of the command after executing to make it easier to copy/paste commands that are devided into multiple lines -- added support for 'show tables having column' +[See ChangeLog] -0.2 (17-09-2007 -- Search in history (for example by entering '/query' to make the current command the last command with query in it) -- \n always tries to execute the command even if you are not at the end of the command -- Show tables (show a list of tables that is available for querying) -- BUGFIX: handle large results a bit better (memory wise) -- BUGFIX: fix tabcompletion when cursor not at the end of the sql string -- tab completion improvements -- Make columns in select query fit the max result with instead of the max column width -- make command help include list of known connections -- make spool command include status -- edit fixes -- help improvements -- make all commands match [\s]*[command][\s]*(|;) -- typing 'not at the end of a line' and the line becomes too large.. strange things happen... -- improved readability of desc table command -- desc of not existing table doesn't give an error -- replace ~ in ~/* for user home dir (for spool command) -- made '@' appear in help as well -- Improve desc table to show not null -- scroll all the way down when key typed that is not pageup/down - -0.3 (Unreleased) -- focus fix in login dialog -- Improve desc table to show primary key -- fix to stop spooled lines being appended to each other. -- Improve tab completion for update -- NullPointerException fix when not running from jar. - FUTURE - Improve desc table (to show references, etc) - Improve tab completion for update, delete and alter table queries |