Updated year in some copyright notices.
[mp-5.x.git] / RELEASE_NOTES
blob543373a4ed21a11ef57e00c13d8b0e6fbcc789d9
1 Minimum Profit Release Notes
2 ============================
4 5.1.2
5 -----
7  * The `grep' action can now be recursive.
8  * New syntax color for special documentation blocks.
9  * Fix searching into empty selected blocks (this was bug #1269).
10  * New action `section_list', that shows a list of _sections_
11    in the current document to jump to. Sections are usually
12    function definitions and special marks in programming
13    languages.
14  * New action `seek_misspelled', to search the next
15    misspelled word. It has been assigned to keycode `f5'.
16  * New action `ignore_last_misspell', to add the last misspelled
17    word found by `seek_misspelled' to a whitelist so it won't
18    be found again.
19  * New action `seek_repeated_word', to search for words starting
20    or ending with the same number of letters up to a maximum
21    distance. It's controlled by the new configuration directives
22    `mp.config.rw_num_chars' and `mp.config.rw_max_dist'.
23    It has been assigned to keycode `f6' (this keycode was
24    previously assigned to `join_paragraph', which has no
25    keybinding now).
26  * The action `open_templates_file' has been fixed.
27  * Several GTK interface updates by fellow developer Sebastian Vöcking.
28  * New command line option `-d', to change the working directory.
29  * Several fixes to the win32 driver: word wrapping, combobox
30    drop-down sizes, underlined text.
31  * Avoid hanging if the external ispell program is broken.
32  * The `dump()' function now dumps its argument as MPSL code.
34 5.1.1
35 -----
37  * Internationalization works in all platforms (including KDE4,
38    were it was faulty, and win32, where it was non-existent since
39    the 3.x series).
40  * The status line format string can also include the %w token
41    to show the number of words in the current document or selection
42    (can be slow).
43  * Search and replace is now limited to the selected block, if any.
45 5.1.0
46 -----
48 Fixes to the KDE4 driver:
50  * Underlined text works.
51  * Text fields in forms now have history.
52  * If no xserver can be contacted, fall back to the curses interface.
54 5.1.0-rc1
55 ---------
57  * KDE4 support.
58  * Rectangular block copy/paste support.
59  * New syntax highlight for the Euphoria language.
61 5.0.3
62 -----
64  * New action `open_under_cursor', that picks the word in the
65    current document under the cursor, accepts it as a document
66    name and tries to open it. If it's in the format string:number,
67    is accepted as a file name and a line number. It's bound by
68    default to `ctrl-enter' (`alt-enter' under Curses).
69  * The `grep' action bevahaviour has changed; instead of in a form,
70    matches are shown in a read-only document that is only closed
71    explicitly. Each change can be moved to by using the new
72    `open_under_cursor' (`ctrl-enter' or `alt-enter') action shown above.
73  * In a similar way, the `build' action also shows its output in a
74    read-only document instead of a form that is not automatically closed,
75    making the browsing and editing of compilation errors more useful.
76  * Forms in the Curses driver have changed their look. All fields in a
77    form are shown simultaneously on screen. This is one step to close
78    bug #1249.
79  * A set of character encoding converters have been natively implemented,
80    improving those platforms where the 'iconv' library is not available
81    (i.e. Windows and old Unix systems). The available encodings can be
82    shown by executing
84         dump(EMBEDDED_ENCODINGS);
86 5.0.2
87 -----
89  * New option to mark end of line characters, with its associated
90    configuration directive (mp.config.mark_eol).
91  * The end of line string (mp.config.eol) is now system-dependent (so,
92    on win32, it's set by default to \r\n).
93  * Copy and paste on GTK has been fixed (this was bug #1205).
94  * Fixed some redrawing issues (bug #1236 and others).
95  * Ctrl-keys no longer fail on GTK (bug #1252).
96  * New document _Minimum Profit Action Reference_.
97  * New action `build', for building Makefile-based projects. See the
98    action reference for details.
100 5.0.1
101 -----
103  * Improved line edition in the Curses interface (full edition plus file
104    expansion using the `tab' key in open / save file prompts).
105  * Auto-indenting is temporarily disabled while pasting (bug #1250).
106  * New document _Minimum Profit Function Reference_ (contributed by Lee Page).
108 5.0.0
109 -----
111  * The search hit is highlighted.
112  * When invoked from the menu, the `record_macro' action dropped
113    the last key (bug #1245).
114  * A Curses configuration detection has been fixed that made
115    some things behave strangely, as the drop-down menu not
116    responding under some terminal configurations (bug #1247).
117  * The Curses menu no longer crashes if it doesn't fit on
118    the screen (bug #1195).
119  * The -f (execute script) command line argument really works
120    (bug #1240).
121  * New manual page (bug #1219) and README files (bug #1218).
122  * Updated documents, _MPSL Overview_ and _Minimum Profit Cookbook_.
123  * New documents, _Minimum Profit Data Model_ and
124    _Creating interactive dialog boxes_.
126 5.0.0-rc3
127 ---------
129  * New session support. All open documents and its current position
130    can be stored / retrieved with the new `save_session' and
131    `load_session' actions. Two new configuration flags has
132    been added: `mp.config.auto_sessions', to automatically load / save
133    sessions, and `mp.config.local_sessions', to save sessions in the
134    currently active directory instead of in the home directory.
135  * Multiple key sequences for invoking actions (ala Emacs) are
136    now possible. To create them, just assign a hash to a keycode
137    instead of an action. For example, to assign the key sequence
138    Ctrl-x Ctrl-f to `open' and Ctrl-x Ctrl-s to `save', you can use
140         mp.keycodes['ctrl-x'] = {
141                 'ctrl-f'        => 'open',
142                 'ctrl-s'        => 'save'
143         };
145  * In the curses version, confirmations now have default values
146    (shown in brackets), activated with the ENTER key.
147  * New action `close_all', that closes all documents.
149 5.0.0-rc2
150 ---------
152  * New `complete' action, that asks for completion on the current
153    word using any of the words found in the same document.
154  * New `redo' action, to revert undo operations.
155  * The global configuration file `/etc/mp.mpsl' is also executed.
156  * In the `replace' action, the substitution string can contain
157    the special character &, that will be replaced by the matched
158    string (as in the `sed' command line tool).
160 5.0.0-rc1
161 ---------
163  * New support for translating key sequences into MP keycodes, mainly
164    for redefining ANSI sequences not supported by current terminfo /
165    termcap. For example, if your terminal sends the ANSI sequence [6;5~
166    whenever you press Ctrl+page down, you can add to your config file
167    the following line:
169         mp.add_keyseq("[6;5~", 'ctrl-page-down');
171  * A new `system_command' action, to pipe from and to system commands
172    (Closed bug #1120).
173  * A new `word_count' action, to count the number of lines and words
174    in a document (or in the selected block).
175  * Incorrect word wrapping has been fixed (Closed bug #1137).
176  * Search and replace expand backslashed characters like \n and \t
177    (Closed bug #1214).
178  * New timer functionality has been added; a user function can be called
179    each time a specified period of milliseconds have elapsed. If, for
180    example, you want to print a string on standard output each two
181    seconds, you can run
183         mp.timer(2000, sub { print("Hi, world!\n"); });
185 5.0.0-pre1
186 ----------
188  * Password-protected files fully work.
189  * Moving to next / previous instance of character (bound to ctrl-page-down
190    and ctrl-page-up) works (Closed bug #1131).
191  * Files open MUCH faster.
192  * Selection can be done by pressing shift + any movement key (Closed bug #1182).
193  * Dialog boxes work under Windows 98 (Closed bugs #1196, #1197).
194  * Block selection can be done by dragging the mouse (Closed bugs #1200, #1201).
195  * New `grep' functionality (Closed bug #1116).
196  * New action `sync' (save all modified documents, closed bug #1206).
197  * New action `document_list' (show a box with all open documents, allowing
198    the selection of the active one; closed bug #1211).
199  * Translations ported from mp 3.x (closed bug #1169).
200  * Most syntax highlight definitions ported from mp 3.x (closed bug #1168).
202 4.99.12
203 -------
205  * The menu in the Curses interface has been (finally) implemented.
206  * Interfaces have changed internally; a new driver function, mp.drv.form()
207    serves as a dialog box generic generator, resulting in more useful queries
208    for data (for example, all data required for a `replace' operation is
209    queried in only one dialog box). The Curses implementation, though
210    functional, is still just a wrapper to the old interface functions
211    and fields are queried one-by-one (which is annoying). This is an example
212    of a call to mp.drv.form(); the r variable will contain an array of 5
213    elements (one per widget) containing the values, or NULL if user cancelled:
215         local r = mp.drv.form( [
216         
217                 /* a 'text' widget */
218                 { 'label'       => "Replace this:",
219                   'type'        => 'text',
220                   'history'     => 'search',
221                   'value'       => 'THIS' },
222         
223                 /* another one */
224                 { 'label'       => "With:",
225                   'type'        => 'text',
226                   'history'     => 'replace',
227                   'value'       => 'THAT' },
228         
229                 /* a 'password' widget */
230                 { 'label'       => 'Password:',
231                   'type'        => 'password' },
232         
233                 /* a 'checkbox' widget */
234                 { 'label'       => "Case sensitive:",
235                   'type'        => 'checkbox',
236                   'value'       => mp.config.case_sensitive_search },
237         
238                 /* a 'list' widget */
239                 { 'label'       => 'All C files:',
240                   'type'        => 'list',
241                   'list'        => glob('*.c'),
242                   'value'       => 10 }
243         ] );
245  * Password protecting files works (but they cannot be opened yet, so this
246    is far from useful, unless you use mp 3.x to open them).
247  * Case sensitivity in searches can be controlled with the new
248    config flag mp.config.case_sensitive_search.
249  * Replace (and global replace by use of the new config flag
250    `mp.config.global_replace') works.
252 4.99.11
253 -------
255  * Syntax highlight definition have changed (again, hopefully for the last
256    time). Definitions are now an array of attribute name / regexes in which
257    the order is significative.
258  * Template insertion works.
259  * Tag selection (open the file where a symbol is defined) works.
260  * Symbol completion (using tags) works.
261  * Closed bugs #1159, #1158, #1153, #1161.
263 4.99.10
264 -------
266  * A big advance in the Curses interface; alerts, confirmations, and open
267    file, save file, search and generic prompts are working. Still lacking
268    the selection lists (as the rest of interfaces) and the menu.
269  * Improved menus; if an invalid action is added to a menu, it's shown
270    followed by a ?; if a key is bound to that action, it's shown between
271    square brackets.
272  * For systems lacking iconv support (MS Windows), a crappy, ad-hoc utf-8
273    converter has been added. This means that hitting `escape' and typing
274    `encoding('utf-8');' makes reading and writing utf-8 encoded files
275    possible on every system.
276  * New action `join_paragraph', to join current paragraph all in one line.
277  * New action `word_wrap_paragraph', that re-word-wraps current paragraph.
278    Word wrapping must be set ('mp.config.word_wrap = number;') for this to
279    work.
281 4.99.9
282 ------
284  * The GTK and win32 drivers now include a native open/save file dialog.
285  * Interactive help (help for the word under the cursor, triggered by
286    pressing `f1') works.
287  * The menu in GTK and win32 works.
288  * New icon!
289  * Some bugs that caused random crashes has been fixed.
290  * New action `exec-doc', that executes the active open document as
291    MPSL code.
293 4.99.8
294 ------
296  * New configuration option `mp.config.tabs_as_spaces', to store tabs
297    as spaces.
298  * Each syntax highlight definition can contain an optional function
299    called detect() that receives the document as argument and can be used
300    to tailor special detection rules.
301  * A big part of the internal storage of colors and attributes have
302    been rewritten to make it more dynamic.
303  * Tag target for the word over the cursor is shown in the status line.
304  * Move word left works.
305  * Opening an already open file makes it the active one instead of
306    re-opening it.
307  * The `execute code' action has been remapped from `ctrl-f1' to escape.
308  * Spellchecking via ispell works (though it's SLOW!). Activate it by
309    hitting escape and typing:
311         mp.ispell(1);
313  * By default, files are now unlinked before (re)written. File permissions
314    and ownership are restored if available. This behaviour can be disabled
315    by setting `mp.config.unlink' to zero.
316  * The GTK driver drawing code has been optimized, so it's much more
317    responsive now.
319 4.99.7
320 ------
322  * The `modified' flag of documents is maintained, so now closing files
323    with pending modifications ask for confirmation. Also, the %m status
324    line directive works (marking modified files with an asterisk).
325  * Flex and bison are no longer needed to build.
326  * The `close window' button in GUIs (win32 and GTK) now generate the
327    special keycode `close-window'.
328  * The `exit' action now closes all open documents, asking for saving
329    confirmation on those modified.
330  * Temporary versions of the `open' ans `save' actions (using
331    mp.drv.readline() instead of an ad-hoc open file dialog) have
332    been implemented.
333  * The GUI interfaces now can have their font preferences configured
334    by using mp.config.font_face and mp.config.font_size.
335  * The actions `zoom-in' and `zoom-out' (font size rescaling, bound to
336    `f11/f12' and `ctrl-kp-minus/ctrl-kp-plus') have been implemented.
337  * New mouse-related actions; `move-to-mouse-position', `move-mouse-wheel-up'
338    and `move-mouse-wheel-down'.
340 4.99.6
341 ------
343 This is an EXPERIMENTAL version for evaluation purposes only. There are
344 many things that aren't implemented, others fail miserably and many more
345 do it incorrectly. Basically, what is known to work is:
347  * Basic text editing fully works. I've been using it for six months or so
348    to maintain itself, and there has not been a crash in three months,
349    more or less.
350  * Scripting works fine (90% of Minimum Profit 5.x itself is implemented
351    in MPSL, its internal scripting language).
352  * Undo works fine. It's bound to ctrl-z.
353  * Works cleanly in an UTF-8 environment.
355 I do development on the GTK version, so it's where it works best. The
356 curses version lacks many of the interface (alerts, confirmations,
357 asking for text, etc.), so it's barely usable. The win32 version seem
358 to work, but it needs to be manually installed and probably need some
359 tweaking.
361 What it doesn't work:
363  * The dialogs to open or save a file by its name aren't implemented.
364    There are workarounds for this: files can be opened from the command
365    line and save works correctly if the edited file has a name. Also,
366    files can be opened by hitting `ctrl-f1' (execute script code) and
367    typing:
369         mp.open("file-to-be-opened");
371  * There is no menu.
372  * No ispell support.
373  * No password protected files.
374  * No grep.
375  * No external commands (so no support for help, tags, etc.).
376  * Some movement commands as moving a word left, moving to matching
377    brackets, etc. are still not implemented.
378  * Only a few syntax highlight definitions are implemented.
379  * Many other things I cannot remember.
381 Documentation is still scarce: the more interesting bits are inside the
382 mpsl/doc directory. This is where the scripting language is documented,
383 with some basic overviews and implementation notes (there is even an
384 embryo of a PostScript quick reference guide).
386 Customizing can be done by writing MPSL commands in the ~/.mp.mpsl file,
387 which is read on startup.
389 I have not tried to optimize the internal engine, so it's probably some
390 magnitudes slower than the 3.x version.