Post release version bump
[geany-mirror.git] / NEWS
blob52ccb9d72fc3f2e791ee047e3463c1ba3b59fcd8
1 Geany 1.27 (unreleased)
4 Geany 1.26 (November 15, 2015)
6     General
7     * New plugin API (Thomas Martitz, PR#469).
8     * Add support for "proxy" plugins (Thomas Martitz, PR#629).
10     Bug fixes
11     * Fix "Open in New Window" command (Issue#590).
12     * Fix spurious "source file has been modified" (Jiří Techet, Issue#605,
13       PR#621).
14     * Don't open more than one document for non-existing paths from the CLI
15       (https://bugs.launchpad.net/linuxmint/+bug/1482558, PR#646).
16     * Fix configuration directory encoding on non-UTF-8 non-Windows systems
17       (Dimitar Zhekov, PR#658).
19     Interface
20     * Use monospace font for the message window by default (Jiří Techet,
21       Issue#435, PR#580).
22     * Fix mnemonic conflict in "Use multi-line matching" (Ross Konsolebox,
23       Issue#589, PR#647).
25     Editor
26     * Update Scintilla to version 3.6.1.
27     * Fix completion popup height when view is zoomed (Issue#702).
28     * Fix Go To End Of Display Line when wrapping is on and EOL are visible
29       (Issue#712).
30     * Keeping undo history when reloading files is now enabled by default
31       (Thomas Martitz, Issue#562, PR#672).
32     * "Strip trailing spaces", "Replace tabs" and "Replace spaces" now
33       follow the current selection (Pavel Sountsov, PR#394).
34     * Respect Smart Home Key setting in Go To Start of Display Line.
35     * Check whether the document is newer on disk when the window gets
36       focused (Jiří Techet, PR#533).
38     Filetypes
39     * Add Cargo build commands for Rust (Wayne Nilsen, PR#557).
40     * Add recent Perl keywords (Olivier Duclos, PR#599).
41     * Add missing Python 3 keywords and builtins (PR#755).
42     * Improvements to the Rust filetype (Pavel Sountsov, PR#613).
43     * Add multiline comment to Haskell (Abel Serrano Juste, PR#638).
44     * Recognize `.adoc` is as Asciidoc (PR#708, PR#711).
45     * Recognize `.mml` and `.mathml` as XML (Devyn Collier Johnson, PR#731).
47     Internationalization
48     * Updated translations: de, el, es, fr, hu, id, kk, pt, sk, sv, ru
49     * Fix internationalization of "Open in New Window" items.
51     API
52     * New plugin API, `geany_load_module()`, `geany_plugin_register()`,
53       `GEANY_PLUGIN_REGISTER()`, `geany_plugin_register_full()`,
54       `GEANY_PLUGIN_REGISTER_FULL()` (Thomas Martitz, PR#469).
55     * Add support for "proxy" plugins, `geany_plugin_register_proxy()`
56       (Thomas Martitz, PR#629).
57     * Allow `user_data` parameter and `destroy_notify` callback to
58       keybindings with new `keybindings_set_item_full()` and
59       `plugin_set_key_group_full()` (Thomas Martitz, PR#376).
61     Windows
62     * Restore modern design of native file dialogs (Issue#578).
65 Geany 1.25 (July 12, 2015)
67     General
68     * GTK3 support, while not enabled by default, is now considered stable.
69     * Improve MacOS X support (PR#396, PR#419, PR#420, Jiří Techet).
70     * Improve subprocess spawning (especially on Windows) (PR#441,
71       Dimitar Zhekov).
72     * Huge tag management performance improvement (auto-completion,
73       calltips, etc.) (PR#356, Jiří Techet).
74     * Remove broken "Show macro list" keybinding and feature (PR#378).
75     * Add %l substitution to build commands (PR#289, Martin Spacek).
76     * Depend on GTK 2.24 and GLib 2.28.
77     * Add per-project line wrapping, line breaking and comment
78       continuation settings.
79     * The plugin API is now split out of the main executable into libgeany,
80       a shared library plugins have to link against.
82     Bug fixes
83     * Fix applying filetype-specific indentation settings for newly
84       opened files.
85     * Fix relative project base path when creating a new project
86       (#1062).
87     * Fix next/previous keybindings when no files are open.
88     * Fix markup injection in some tooltips (#1091).
89     * Use absolute project path for projects opened from the command
90       line (PR#431, Jiří Techet).
91     * Fix goto tag in some cases when the same symbol name appears in
92       different languages (PR#487, Jiří Techet).
93     * Fix UI updating after loading a project.
94     * Fix the currently selected document after Save All.
95     * Fix leftovers in the Project dialog in some cases (PR#363, Jiří
96       Techet).
97     * Fix function return type in symbol list tooltips in some cases
98       (PR#475, Jiří Techet).
99     * Fix VTE path following on startup.
101     Interface
102     * Show document-related dialogs embedded in the main window ("info
103       bars") (PR#277, Matthew Brush and Thomas Martitz).
104     * Plugin manager dialog cleanup and overhaul (PR#251, PR#414).
105     * Filetypes can now define the MIME type used to select their icon
106       (PR#179).
107     * Close documents in the sidebar with middle mouse button (PR#172,
108       Pavel Roschin).
109     * Ask whether to replace project files when creating a project.
110     * Ask whether to adopt the open documents when creating a new
111       project (PR#315).
112     * Allow to disable the list of recent files.
113     * Fix many shadow inconsistencies (PR#411, Jiří Techet).
114     * Add virtual column and selected chars to the statusbar (Patch #10,
115       Dimitar Zhekov).
116     * Add "dirty" terminal indication (PR#476, Jiří Techet).
117     * Allow to select the None filetype in the Open File dialog
118       (Issue#483).
119     * Add configuration menu entries for all filetypes (PR#491, Jiří Techet).
121     Editor
122     * Update Scintilla to version 3.5.6 (#1041).
123     * Do not comment out blank lines when toggling comments (PR#79, Igor
124       Shaula).
125     * Improve handling of Verilog strings and comments.
126     * Support for keeping undo history when reloading files (PR#188, Arthur
127       Rosenstein).  This is not enabled by default in this release.
128     * Respect filetype.common's wordchars if a filetype doesn't have its own
129       (Issue#492, PR#501).
131     Search
132     * Add support for single-line regular expressions (PR#310).
133     * Default action is now "Replace & Find" in the replace dialog but
134       can be configured (Roland Pallai).
135     * Activate default action from all fields in the Find in Files
136       dialog (#959).
138     Filetypes
139     * Add JSON filetype.
140     * Add Zephir filetype.
141     * Add CoffeScript filetype (PR#230, Mark Dresselhaus).
142     * Add Go tags parser (PR#373, PR#481, Issue#238, Jiří Techet).
143     * Add Erlang tags parser (PR#445, Beng Tan).
144     * Add PowerShell tags parser (PR#477).
145     * Many JavaScript parsing fixes and improvements.
146     * Many CSS parser fixes and improvements.
147     * Many Txt2tags parsing fixes and improvements (feature #690).
148     * Make parser fixes and improvements.
149     * Parse D enum base type (PR#404).
150     * Various small Rust fixes (PR#306, SiegeLord).
151     * Highlight C types in C++.
152     * Add some missing C11 keywords.
153     * Add some missing SQL keywords.
154     * Fix and add some CSS keywords (PR#333, Hannes Heute).
155     * Fix some FreeBasic keywords (#691).
156     * Add some missing D keywords (PR#293, Danyal Zia).
157     * Fix R keywords and wordchars (PR#273, landroni).
158     * Fix styling of some CSS elements.
159     * Fix styling of Lua preprocessor.
160     * Fix style of PHP variables interpolation.
161     * Recognize `.vbs` files as FreeBasic (PR#171, Nicolas Karolak).
162     * Recognize `.tpl` files as HTML.
163     * Recognize `.xtpl` files as XML.
164     * Recognize `.xpm` files as C.
165     * Recognize more Bash files (PR#291, Peter Bittner).
166     * Update templates for Python and Vala.
167     * Add template for HTML5.
168     * Fix parsing of some Python triple-quoted strings.
169     * Add some linting tools to some filetype's default Build menu.
170     * Fix scope of some Python symbols.
171     * Fix support of trigraphs in C-like languages.
172     * Add support of digraphs in C-like languages.
173     * Add support of `final`, `override` and `noexcept` C++11 keywords
174       (PR#544).
176     Internationalization
177     * Update translations: be, ca, cs, de, el, es, fr, id, it, ja, nl, pl,
178                            pt_BR, pt, ru, sl, sr, sv, zh_CN.
180     Plugins
181     * File Browser: use "explorer" as the default open command on
182                     Windows.
183     * File Browser: use icons based on the detected file's MIME type (PR#455,
184                     Jiří Techet).
185     * Save Actions: use mode 0600 for backup copies (#833, PR#413).
186     * Split Window: Fix a few keybindings (cut, copy, paste, delete,
187                     select all) (PR#467, Alex).
189     API
190     * Hide private API (PR#351, Jiří Techet, and PR#429, Matthew Brush and
191       Thomas Martitz).
192     * Cleaner and safer TagManager API (Part of PR#356, Jiří Techet).
193     * Entry point prototypes are now checked by the compiler (PR#359).
194     * Add pseudo-unique document IDs through GeanyDocument::id and
195       document_find_by_id(). This is a safer API for keeping a reference
196       to a document for a long time (PR#256).
197     * Add convenient and portable spawning API: spawn_sync(), spawn_async(),
198       spawn_with_callbacks(), spawn_kill_process(), spawn_check_command(),
199       spawn_write_data() (PR#441, Dimitar Zhekov).
200     * plugin_signal_connect() is now safe to use also with objects
201       destroyed before unloading the plugin.
202     * Add document_reload_force() to replace document_reload_file().
203     * Add project_write_config() (PR#361, Jiří Techet).
204     * Add keybindings_get_modifiers() and GEANY_PRIMARY_MOD_MASK (Jiří
205       Techet).
206     * Fix emission of the 'document-activate' signal in some cases.
207     * Add ui_tree_view_set_tooltip_text_column().
208     * Add scintilla_get_type().
210     Windows
211     * Use native Windows quoting rules for commands (on Windows, part of
212       subprocess spawning improvements).
213     * Prompt before overwriting existing files when using native Save As
214       dialog (PR#113, Adam Coyne).
215     * View -> Change Font now respects the native dialog setting.
216     * Fix main window freeze when displaying native dialogs.
217     * Use the same plugin directory as other platforms (PR#540, Thomas
218       Martitz).
221 Geany 1.24.1 (April 16, 2014)
223     General
224     * Fix distribution of custom GTK style files (#1037).
227 Geany 1.24 (April 13, 2014)
229     General
230     * Add experimental support for GTK3.
231     * Add support for loading CTags and Vi tags files.
232     * Save configuration when plugin manager dialog is closed.
234     Bug fixes
235     * Fix many small memory leaks (many of them found by Pavel Roschin).
236     * Fix stopping of some spawned commands.
237     * Fix cursor position and selection after comment toggling (#3576431).
238     * Fix truncated output of ``--list-documents`` command-line option.
239     * Fix launching a new instance when ``--list-documents`` is passed
240       and no other instance is running.
241     * Fix crash if a Custom Command returns after its related document
242       has been closed.
243     * Fix typo in "deque" C++ include name (#1027).
244     * Fix replacing a selection starting with "0x" by a color if the
245       selection is not 8 bytes long.
246     * Fix a possible crash on quit.
248     Interface
249     * Fix custom GTK styles under KDE (#3607935).
250     * Add Find entries in the Symbol List popup menu (#3608278).
251     * Flatten-out the View menu.
252     * Add a button to directly configure a plugin's keybindings in the
253       plugin manager (Pavel Roschin).
254     * Add an Apply button to the color chooser dialog (FR#686,
255       Steven Valsesia).
256     * Use a non-cropped 16x16 application icon (#1010).
257     * Fix "leaks" of geany_run_script (#975).
259     Editor
260     * Update Scintilla to version 3.3.6 (#962, #995).
261     * Fix Reflow to follow Line breaking behavior (#382, #412, #464,
262       Eugene Arshinov).
263     * Fix unfolding the very last line in a level (#1007).
264     * Fix commenting the very last line in some situations.
266     Search
267     * Fix bulk Search & Replace not to match replacements.
268     * Fix finding start of word when performing whole word matching.
269     * Search when activating the Replace dialog find entry.
271     Filetypes
272     * Add CUDA filetype (PR#147, Benjamin Chrétien).
273     * Add Rust filetype (PR#181, SiegeLord).
274     * Add Batch filetype (canou).
275     * Add Graphviz filetype (PR#125, Miro Hrončok).
276     * Add PowerShell filetype (Igor Shaula).
277     * Add Clojure filetype (PR#92, Hoàng Minh Thắng).
278     * Many improvements to the PHP tag parser.
279     * Update PHP global tags file (PR#137, John Long).
280     * Improve shebang detection for mksh and tcsh shells
281       (PR#126 , Ypnose).
282     * Fix Asciidoc parser recognition of open block as underline.
283     * Fix symbol list entry for Asciidoc headers containing a dot.
284     * Fix Asciidoc title parsing.
285     * SQL parsing improvements.
286     * Extend list of recognized keywords for SQL.
287     * Fix SQL single-line comment marker (#997).
288     * Fix parsing of some JavaScript constructors (#966).
289     * Fix parsing a JavaScript regular expression in a return statement.
290     * Fix parsing JavaScript files with a shebang.
291     * Parse Java annotations with parameters (#924, Braden Walters).
292     * Display Java enums in the symbol list.
293     * Add "strictfp" Java keyword and fix annotation parsing (#936, #924).
294     * Fix parsing of C++ static_assert.
295     * Fix parsing of typed enums in C# and C++.
296     * Mitigate parsing errors on C++ generics containing an expression.
297     * Add C++ member pointer operator to scope autocomplete operators
298       (#907).
299     * Fix parsing of Fortran "forall" blocks and procedure pointers
300       (Alexander Eberspächer).
301     * Fix parsing of complex Cython types.
302     * Fix re-parsing Objective-C code.
303     * Fix parsing of Verilog initializers.
304     * Fix displaying of quoted Bash HereDoc delimiters (#952).
305     * Add some HTML5 keywords (Duncan de Wet).
306     * Add Erlang snippets and a template (PR#157, Fabio Ticconi).
307     * Haskell highlighting improvements (kudah).
308     * Add Matlab class keywords (PR#136, Felix Totir).
309     * Fix argument list on some Python constructors.
310     * Fix R indenting to use braces.
311     * Display R sources and libraries in the symbol list.
312     * Many improvements to the Fortran tag parser (#1023, #1030, with
313       help from Adam Hirst).
314     * Put Makefile comments at start of line.
315     * Add some missing Pascal keywords (#1033, PR#144).
316     * Add default build command for Bibtex in the Latex filetype
317       (PR#227, Francisco Iacobelli).
318     * Ignore Python imports when going to a tag's definition.
319     * Add some more Ruby extensions (Igor Shaula).
321     Internationalization
322     * Make date templates translatable (Christian Dywan).
323     * Update translations: ca, cs, de, es, eu, fr, gl, he, hu, it, kk,
324                            lt, nl, pt, ru, sk, sl, sv, tr, zh_CN, zh_TW
326     Plugins
327     * Save Actions: add autosave when the editor lose focus (FR#683,
328       Steven Valsesia).
329     * Export: fix exporting a document not ending with a newline.
330     * Export: fix including random, unused styles in the output.
331     * Export: fix HTML title if the file name contains control characters.
332     * Export: fix LaTeX export with many consecutive '-', '<' or '>'.
334     API
335     * Add plugin_builder_connect_signals().
337     Windows
338     * Fix infinite pagination when printing (#961).
339     * Fix spawning commands with spaces (#943).
340     * Allow to use the GTK color chooser dialog (PR#218, Steven Valsesia).
341     * Add default extension to native save dialogs (#1021).
342     * Add colorschemes from the Geany-Themes project to the
343       Windows  installer.
344     * Add option to install Geany header files and pkgconfig file to the
345       Windows installer.
346     * Fix broken opening files from command line on Windows
347       (again, #3613096).
350 Geany 1.23.1 (May 19, 2013)
352     Bug fixes
353     * Fix custom styles under KDE and for people using gtk-chtheme
354       (corrects tab coloring, #3607935).
355     * Fix broken opening files from command line on Windows (#3613096).
358 Geany 1.23 (March 10, 2013)
360     General
361     * Various fixes to language theming (#3573213).
362     * Various Windows makefile fixes.
363     * Rewrite printing code (#2629121, #2804000, #3475444, #3580268,
364       #3580269).
365     * Use the Geany icon from the theme (#3576695).
366     * Make Geany-specific icons themeable.
368     Bug fixes
369     * Fix too aggressive scope caching (#2142789, #2667917, #2868850).
370     * Fix showing project name in the Documents sidebar.
371     * Fix opening filenames with leading or trailing spaces from the
372       command line into a running instance.
373     * Fix re-opening files with unknown but detected encoding
374       (#3509407, #3605293).
375     * Fix crash when loading a broken or incompatible VTE library.
376     * Report scope including classes, namespaces and alike (#1996778).
377     * Fix cancelling Project Close when showing the unsaved changes
378       dialog.
379     * Only use "allow_always_save" setting for direct user interaction
380       (Quentin Glidic).
381     * Fix some keybinding not getting properly displayed in the menus
382       after being updated (#1912683, #3599251).
383     * Make Terminal tool setting more flexible to support any terminal.
384     * Fix replacing file name in files header upon save.
385     * Fix UAC Virtualization issue on newer Windows versions when trying
386       to save files to read-only locations (#3566329, #3515490).
388     Interface
389     * Control-click on the symbols sidebar don't focus the editor.
390     * Add an option to place the message window on the right.
391     * Fix display of non-ASCII tags in the symbols tree for non-UTF-8
392       files.
393     * Replace 'Open file in a new tab' save dialog option with new
394       'Document->Clone' menu item.
395     * Fix clashing button mnemonic in detect/reload dialog (#3587465).
396     * Grab focus in the embedded terminal upon middle click (#3574724).
397     * Add support for embedded terminal background image (Mislav
398       Blažević).
400     Editor
401     * Update Scintilla to version 3.2.3 (#2808638, #2909124, #3094431,
402       #3233160, #3540469).
403     * Properly indent even if the indenting character isn't the last
404       one.
405     * Always display text in LTR direction.
406     * Improve collapsing fold behavior when start point is offscreen.
407     * Faster squiggle underlining.
408     * Fix multiline comments at end of file (#3026691).
409     * Keep caret and anchor position upon indent and unindent
410       (#3167355).
411     * Complete on dash (-) too in CSS documents.
412     * Make wordchars have precedence over whitespacechars (#3429368).
413     * Fix cursor position after comment toggling with no selection
414       (#3576431).
415     * Fix reshowing calltip after autocompletion list closed.
416     * Fix uncommenting multiline comments when cursor is on a delimiter.
417     * Clear search markers on Mark All keybinding when already set.
418     * Never strip trailing spaces from Diff documents.
419     * Reduce unnecessary redraws when typing (Evandro Borracini).
420     * Fix comment toggling inside PHP and HTML with bottom-up selection.
422     Search
423     * 'Mark All' now also uses the fully-featured PCRE engine
424       (#3564132).
425     * Only set Find in Files directory once per-document.
426     * Fix a crash when matching the very last character of the document.
427     * Fix search and replacement of empty matches.
428     * Fix a possible crash when searching on a range.
430     Keybindings
431     * Add keybinding for 'Go to Start of Display Line' (#3182425).
432     * Allow to change the keybinding for 'Quit'.
434     Filetypes
435     * Parse '!' char in D parameter lists.
436     * Fix parsing of Haskell comments inside a type (#3552129).
437     * Fix Cython auto indentation.
438     * Add more keywords to Forth (Oco).
439     * Add some missing Haxe keywords (#3448664).
440     * Add some missing CSS3 keywords (Trong Thanh Tran).
441     * Add some missing D keywords (#3595187) (Felix Totir).
442     * Fix a crash parsing some C macros (#3556536).
443     * Update some Python keywords.
444     * Update Python global tags file.
445     * Show VHDL blocks in the symbol list.
446     * Fix ruby scope after "do" (#3046418).
447     * Fix parsing of ruby keywords when followed by a semicolon
448       (#2130612).
449     * Lots of JavaScript symbols parsing improvements (#2992393,
450       #3034303, #3034339, #3036476, #3398636, #3470609, #3568542,
451       #3570192, #3571233).
452     * Use "scala" extension for Scala (#3574723).
453     * Fix parsing of reStructuredText titles containing UTF-8
454       characters (#3578050).
455     * Parse C++11 final classes (#3577559).
456     * Parse C++11 enums with type specifier and classed enums
457       (#3578557).
458     * Fix highlighting of C++11 raw strings (#3578557).
459     * Fix parsing of colons in D (#3577788).
460     * Fix parsing of D 'static assert' (#3582833).
461     * Parse scope for D nested template blocks (#3582833).
462     * Ignore D angle brackets.
463     * Fix reStructuredText comment marker (#3585377).
464     * Add Asciidoc filetype.
465     * Fix parsing of Python keywords followed by a tab (\t).
466     * Add more HTML5 self-closing tags (Duncan de Wet).
467     * Update default D template to use a more standard prototype for
468       main().
469     * Fix improperly translated string in Pascal template (#3602314).
470     * Add Go language filetype (tomboy64).
472     Plugins
473     * Export: Fix missing linking on libm (Chow Loong Jin)
474     * File Browser: Backspace now moves to parent directory.
476     API:
477     * Fix plugin_add_toolbar_item() insertion order (#3522755)
478       (Dimitar Zhekov).
480     Windows
481     * Fix spawning synchronous commands on Windows.
482     * Show Find in Files status summary.
483     * Add icon to the Explorer context menu item.
485     Internationalization
486     * Add translations: et, eu, he, hi, sr
487     * Update translations: ca, cs, de, es, fi, gl, it, kk, lt, nl,
488                            pt_BR, ru, sv, sl, tr
489     * Fix a crash when using the Turkish translation (#3560181).
492 Geany 1.22 (June 18, 2012)
494     General
495     * Bump dependencies to GTK >= 2.16 and GLib >= 2.20.
496     * Switch to Glade 3 and dynamically loaded XML UI description.
497     * Rewrite theming support for better flexibility.
498     * Add support for opening files read-only from the command line.
499     * Always load the default session if configured to do so.
500     * Make all filetypes use named styles to simplify color scheme
501       authoring.
502     * Make 'Replace Spaces by Tabs' only match leading spaces to
503       preserve alignment.
505     Possibly incompatible changes
506     * Theming and filetype style changes mean old filetypes and color
507       schemes are not compatible with this version of Geany.
508     * There are some default keybinding changes but these will only
509       apply to newly created configurations.
510     * Changes to the "project-dialog*" signals may affect plugins.
512     Bug fixes
513     * Fix escaping of session file paths (#3425969).
514     * Fix closing when minimized under Windows (#3421282).
515     * Properly handle remote URIs received through drag 'n drop
516       (#2966770, #3479567).
517     * Fix build with bleeding-edge GLib (#3483388).
518     * Fix color scheme selection in Ubuntu Unity (#3479674).
519     * Fix very slow regex tag parsing on Windows (e.g. for HTML).
520     * Fix detecting a changed file on disk when opening from
521       the command-line (Windows).
522     * Fix quick search entry behavior on Windows.
523     * Fix keybindings conflicts check when swapping a binding.
524     * Fix comments insertion in some cases (#3449635, #3534320).
525     * Add missing Windows mio makefile.
527     Prefs
528     * Split "always wrap search and hide find dialog" pref into
529       "always wrap search" and "hide find dialog" (Dimitar Zhekov).
530     * Add Project Properties overrides for 'Saving files' prefs.
531     * Add hidden VTE preference "send_cmd_prefix" to prefix commands sent
532       to the VTE. (See the manual for details).
534     Interface
535     * Add support for switching to the last used document after closing
536       a tab (Jiří Techet).
537     * Improve the tab switching dialog for better usability (Jiří Techet).
538     * Add support for user-defined labels for 'Send Selection to'
539       custom commands.
540     * Fix sidebar width when on the right (#3514436).
541     * Use case-insensitive document list path comparison on Windows.
542     * Replace Color Schemes menu with custom dialog.
543     * Show selected line count on status bar when whole lines are
544       selected.
546     Editor
547     * Update Scintilla to version 2.29.
548     * Add a "join lines" command (Eugene Arshinov).
549     * Hide autocompletion when the only entry has been typed (#3516212).
551     Search
552     * Add full PCRE regular expressions support.
553     * Extra options passed to grep through Find in Files now follows a
554       real shell-style syntax (#3516263).
555     * Search pattern length is no longer limited to 248 characters.
556     * Fix showing Find/Replace regex compile errors on the status bar.
558     Keybindings
559     * Add Project New/Open/Properties/Close keybindings.
560     * Show overridden keybindings in bold for prefs dialog tree.
562     Tags
563     * Speed up loading of multiple global tags files.
564     * Show global tags file preprocessing errors on stderr & add
565       current directory to include path.
566     * Add C/C++ ignore.tags wildcard format 'PREFIX*'.
568     Filetypes
569     * Add support for regex-based filetype detection.
570     * C snippets no longer apply to all filetypes.
571     * Improve support for HTML embedded filetypes (#2863829, #3127598).
572     * Add filetype Objective-C (Elias Pschernig, P#3325139).
573     * Fix highlighting of ``...R"`` inside C and C++ (#3425107).
574     * Fix TCL keyword highlighting in some situations (#3432877).
575     * Parse PHP functions with multiline argument list (#3037797).
576     * Handle ``/bin/dash`` shebang (#3470986).
577     * Update JavaScript parser from CTags.
578     * Parse D class/struct/interface template bodies and template
579       blocks; ignore 'static if' expressions; parse function
580       @attributes, pure/nothrow and immutable/inout/shared return types.
581     * Fix broken tag/word autocompletion in HTML/PHP documents.
582     * Enable &entity; completion for all XML-based filetypes.
584     Plugins
585     * Split Window: show marker margin.
586     * Split Window: enable basic context menu.
588     API:
589     * document_save_file() now shows the Save As dialog when necessary.
590     * Rename signal "project-dialog-create" to "project-dialog-open" and
591       add new "project-dialog-close" signal.
592     * setptr is deprecated in favour of SETPTR.
593     * Add ui_hookup_object() and ui_lookup_object().
594     * Add ui_lookup_stock_label().
595     * Add build_{activate,get_current,remove,set}_menu_item(),
596       build_get_group_count().
597     * Add stash_group_free_settings().
598     * Add support for plugins written in C++.
600     Internationalization:
601     * Add translations: ar, id, lt, mn, nn, sk
602     * Update translations: de, es, fr, hu, it, ja, kk, lt, nl, pl, pt,
603       pt_BR, sk, sl, sv, tr, zh_CN, zh_TW
606 Geany 0.21 (October 2, 2011)
608     General
609     * Bump dependencies to GTK >= 2.12, GLib >= 2.16 and GIO.
610     * Add support for real-time symbol parsing.
611     * Remove old filetype templates support - use custom file
612       templates instead.
613     * Add support for detecting the indentation width from the file
614       content.
616     Bug fixes
617     * Fix generating tag files (-g) and --ft-names segfault.
618     * Replace dates on template insertion, not when loading templates.
619     * Fix segfault when inserting e.g. fileheader template when the
620       template file is empty (#3070913, lphilpot).
621     * Use the same indentation for all templates (Matthew Brush,
622       #3193527).
623     * Fix loading of non-UTF-8 templates.
624     * Fix completion and word completion with non-ASCII characters
625       (#3313351).
626     * Fix HTML content-type detection (#3300703).
627     * Fix pattern filtering when using Find in Files not to search in
628       sub-directories.
629     * Add a workaround to prevent Geany from crashing during loading of
630       a LaTeX-file containing linebreaks inside headings.
632     Interface
633     * Add 'Save As' toolbar button option (Matthew Brush, #3153490).
634     * Add 'Open in New Window' command in the notebook tab menu
635       (Matthew Brush, #3118059).
636     * Color schemes: use name and description for menu item and
637       tooltip (Matthew Brush).
638     * Shift-Enter in search dialog and toolbar search entries now
639       searches backwards.
640     * Improve `Set Custom Commands` dialog.
641     * Always destroy open and save dialogs after use (#3311258,
642       #3304273, #3201050, #3163742, #3153120, #2985896).
643     * Add UI to edit formerly hidden preferences (Dimitar Zhekov,
644       #3313315).
646     Editor
647     * Update Scintilla to version 2.25.
648     * Fix snippets bug: {ob}pc{cb} replaced by '%' instead of {pc}.
649     * Fix multiple snippet cursor positions for Tabs + Spaces mode.
650     * Avoid triggering autocompletion on PHP open tags (#3199442).
651     * Fix indentation brace matching (#3309606).
653     Configuration files
654     * Support copying filetype definition file group keys from a system
655       keyfile with e.g. [styling=C].
656     * Make filetype group membership configurable using [Groups] in
657       filetype_extensions.conf.
659     Search
660     * Don't auto-enable case-sensitive option when enabling regex in
661       Find/Replace dialogs.
662     * Remember Find and Replace options across restarts (Dimitar Zhekov).
664     Keybindings
665     * Add fixed shortcuts for VTE copy (Ctrl-Shift-C) and paste
666       (Ctrl-Shift-V).
667     * Add new keybinding 'Remove Markers and Error Indicators'.
669     Projects
670     * Store VTE path with the project session (Nicolas Sierro).
672     Filetypes
673     * Add Scala custom filetype (werg).
674     * Add Cython custom filetype (Matthew Brush).
675     * Add support for separate single and multiline comments.
676     * Add support for filetype-specific indentation settings (#3339420,
677       #3390435)
678     * Fix detecting Matlab and Txt2Tags extensions by default (#3167315,
679       #3154637).
680     * Fix detecting non-lowercase self-closing tags e.g. <BR> (#2226117).
681     * Highlight C# and Vala raw and verbatim strings.
682     * Improve JavaScript keyword handling and keyword lists (Jason Oster).
683     * Add filetype Cobol (Seth Keiper).
684     * Add file template for Vala (Mark Trompell).
686     Plugins
687     * File Browser: Make 'Hide object files' preference configurable with
688       file extensions.
689     * Split Window: Fix a crash when changing filetype (Matthew Brush,
690       #3255968).
691     * Split Window: Update styles when the filetype changes (Matthew
692       Brush).
693     * Split Window: Enable code folding (Matthew Brush, #3097780).
694     * Split Window: Fix issues on Windows (Matthew Brush, #2725342).
695     * Class Builder: Improve dialog UI using a table (Matthew Brush).
696     * Export: Add option to insert line numbers (#3197150).
698     Documentation
699     * Add 'Reading styles from another filetype' subsection (Matthew
700       Brush).
701     * Add 'Filenames' subsection for filetype definition files explaining
702       the filename extensions and special cases.
703     * Add section 'Filetype group membership'.
705     Plugin API
706     * Add filetypes_get_sorted_by_name(), utils_find_open_xml_tag_pos()
707       (Eugene Arshinov).
708     * Add plugin_idle_add(), plugin_timeout_add(), plugin_timeout_add_seconds(),
709       ui_menu_add_document_items_sorted(), document_compare_by_display_name(),
710       document_compare_by_tab_order(), document_compare_by_tab_order_reverse().
711     * Deprecate ui_widget_set_tooltip_text().
712     * Fix public inclusion of config.h (#3384026).
713     * Add new signal "document-reload".
715     Internationalisation:
716     * Add translations: fa
717     * Update translations: ca, cs, de, en_GB, es, fi, fr, gl, it, ja, nl, pt,
718       pt_BR, sl, sv, tr, vi, zh_CN, zh_TW
721 Geany 0.20 (January 5, 2011)
723     Fixes:
724     * Improve compatibility with GVFS using GIO to save documents (Alexey
725       Antipov).
726     * Fix crash when closing a modified document (usually without a
727       trailing newline) and choosing Save (fixes #3111058).
728     * Fix crash when using 'Send Selection to Terminal' and the VTE
729       is not loaded, and when using Ctrl-A after enabling the 'Load VTE'
730       pref (Dimitar Zhekov).
731     * Fix a slightly wrong encoding detection on Windows (#3019573).
732     * Fix issue with single-line commenting/uncommenting blocks when using
733       Windows line endings.
734     * Fix saving project indent prefs straight after using project
735       properties.
736     * Fix wrongly changing edited keybindings when cancelling the
737       Preferences dialog.
738     * Fix auto-displaying of sidebar, tab bar, symbols and documents tabs
739       when only plugin tabs are visible (fixes #3101867).
740     * Save build commands for filetype None (Lex Trotman).
741     * Waf: Check for libsocket on OpenSolaris to fix build.
743     Interface:
744     * Color build command fields light grey unless overridden (Lex
745       Trotman).
746     * Replace /home/user with ~ in the documents list (Jon
747       Strait).
748     * Display 'new instance' on title bar for 2nd instances (Eugene
749       Arshinov).
750     * Don't add duplicates to combo box histories.
751     * Reorganise Find in Files dialog and add Files pattern to filter
752       search results.
753     * Implement 'Select All' for the VTE widget.
754     * Reorganise editor popup menu for shorter size - some items were moved
755       to submenus.
756     * Move Go to Marker menu items to Search menu.
757     * Group Open dialog encoding options by submenus (Adam Ples; #3047717).
758     * Show mimetype icon in sidebar Documents list and notebook popup menu
759       (Colomban Wendling).
761     Documents:
762     * Ensure inserted templates always have proper line ending characters
763       according to the current document's preference.
764     * Add per-document indent width setting (Jiří Techet).
765     * Add 'Project->Apply Default Indentation' menu command to override
766       every document's indentation settings.
767     * Display better error messages when saving a document fails (Dimitar
768       Zhekov).
769     * Don't prompt for reloading if the document has not been edited
770       (Jiří Techet).
771     * Add Close button to the detected file changed dialog.
773     Editor:
774     * Fix wrong snippet indentation when original cursor line has
775       non-indentation whitespace (david).
776     * Fix passing quoted arguments when using 'Send Selection to'. This
777       means e.g. sed 's/\./(dot)/g' now works.
778     * Add alternative color scheme based on Python colors
779       (View->Editor->Color Schemes).
780     * Replace HTML automatic <table> tag completion with a 'table' snippet
781       (Eugene Arshinov).
782     * Auto-indent after an HTML/XML line without a closing tag (Eugene
783       Arshinov).
784     * Respect 'Smart' home key pref for Shift[+Alt]+Home (fixes #3100290,
785       Dimitar Zhekov).
786     * Scroll to the current line when moving the cursor to the next
787       cursor position in a snippet (#3139490).
788     * If the current word's tag is on the current line, make Go to Tag
789       Definition look for a tag declaration instead and vice versa.
790     * Make Reflow Lines/Block command use the current indented block, not
791       the whole paragraph (which could have mixed indentation).
793     Configuration:
794     * Load insertion templates from system path, don't create them in
795       the user's config dir.
796     * File templates are now reloaded on saving.
798     Prefs:
799     * Add 'Ensure consistent line endings' file saving pref (Manuel Bua).
800     * Add 'statusbar_template' hidden pref (Dimitar Zhekov).
801     * Add 'new_document_after_close' hidden pref to open a new document
802       automatically after closing all documents.
803     * Add hidden pref 'find_selection_type' with option to use the X
804       selection or to repeat the last search when there's no selection,
805       both off by default.
806     * Add 'gio_unsafe_save_backup' hidden pref (Lex Trotman).
807     * Add filetypes.common 'fold_symbol_highlight' color setting.
808     * Add 'symbol_list_sort_mode' per-filetype setting.
810     Keybindings:
811     * Fix Alt+[0-9] switching tabs even when other modifiers are also held.
812     * Add snippet keybinding support (Eugene Arshinov).
813     * Add 'Insert New Line Before/After Current' keybindings (Eugene
814       Arshinov).
816     Filetypes:
817     * Add Forth filetype (Thomas Huth).
818     * Add Lisp filetype (Mário Silva).
819     * Add Erlang filetype (Taylor Venable).
820     * Ada: Fix wrong comments.
821     * C++: Disable user fold points with new lexer property
822       fold.cpp.comment.explicit.
823     * Python: Update list of builtins for Python 2.6, simplify
824       Compile/Syntax Check command. Use named styles for color scheme
825       support (use alt.conf color scheme if you want the old colors).
826     * Matlab: Support Octave # comment char.
827     * Txt2Tags: add highlighting (Forgeot Eric - #3020632).
828     * Make: fix possible infinite loop in tag parser.
829     * D: Parse template functions, ignore /+ +/ comments, ignore
830       unittest blocks, add keywords 'ref', 'macro' and D2 keywords.
831     * Vala: Parse functions with contracts (#3080232).
832     * Markdown, reStructuredText and Txt2Tags: Sort tags by line number by
833       default.
834     * Basic: Parse property, constructor, destructor as functions
835       (pottersson; #2992167).
836     * HTML: Add HTML5 element names and attributes (Ross McKay).
837     * PHP: Parse final functions (fixes #3111171).
838     * Markup: Add xml_indent_tags filetype setting for documents using the
839       HTML/XML lexers (Eugene Arshinov).
841     Plugins:
842     * File Browser: Add history to path entry.
843     * HTML Characters: Only automatically replace characters when the
844       current document is a Markup document.
846     Internationalisation:
847     * Add translations: kk.
848     * Update translations: cs, de, en_GB, es, fi, fr, hu, ja, nl, pt,
849                            sl, sv, tr, zh_CN.
851     Manual:
852     * Update 'Custom filetypes', 'Ignore Tags' sections.
853     * Add 'HTML Characters', 'Configuration file paths', 'Color schemes
854       menu' sections.
855     * Explain how to grep the Scintilla source for lexer properties.
857     HACKING:
858     * Add 'Bugs to watch out for' section.
860     API:
861     * Improve Stash GUI example.
862     * Fix not loading plugins built against a newer API when Geany doesn't
863       provide the required version given in PLUGIN_VERSION_CHECK().
864     * Make GEANY_API_VERSION, GEANY_ABI_VERSION macros instead of enums
865       so you can protect code with '#if GEANY_API_VERSION >= 200'.
866     * Add signals "build-start", "project-dialog-create" and
867       "project-dialog-confirmed" - to append a Project Properties
868       notebook tab (Jiří Techet).
869     * Add macro foreach_range().
870     * Add GeanyMainWidgets::message_window_notebook (#3061342).
871     * Add main_widgets.project_menu (Jiří Techet).
872     * Add msgwin_set_messages_dir() (Jiří Techet).
873     * Add highlighting_is_{string,comment,code}_style(),
874       editor_find_snippet(), editor_insert_snippet(),
875       utils_find_open_xml_tag() (Eugene Arshinov).
876     * Add ui_combo_box_add_to_history(), editor_goto_pos(),
877       dialogs_show_input(), Add sci_get_lexer().
878     * Add filetypes_get_display_name() as "None" is no longer translated.
881 Geany 0.19.2 (December 01, 2010)
882     Fixes:
883     * Fix bug where Geany did not always report an error message when
884       saving a document fails.
887 Geany 0.19.1 (August 18, 2010)
889     Fixes:
890     * Fix broken autocompletion after using scope completion.
891     * Fix scrolling the editor line in view (e.g. after loading a session
892       and switching document tabs).
893     * Fix using filetype extension patterns with upper case letters on
894       Windows (#3028856).
895     * Fix a slightly wrong encoding detection on Windows (#3019573).
896     * Re-enable comment folding.
897     * Fix not loading plugins built against a newer API when Geany doesn't
898       provide the required version given in PLUGIN_VERSION_CHECK().
899     * Fix infinite loop in Markdown lexer (patch by Colomban Wendling,
900       thanks).
901     * Fix saving non-project filetype error regex.
902     * Focus toolbar item when pressing Go to Line keybinding only when
903       it's not in the toolbar's drop down overflow menu (#3027454).
904     * Escape the name of the current document for markup when using
905       document name for menu items (#3038844).
906     * File Browser: Allow Find in Files when no items are selected.
907     * Fix build menu translation problems.
908     * Fix segfault on Tools->Reload Configuration when no documents are
909       open (#3037079).
910     * Fix building with Waf on Solaris.
911     * Fix a memory leak (thanks to Daniel Marjamäki).
912     * Use g_free instead of free (patch by Daniel Marjamäki, thanks).
914     Tweaks:
915     * Always use white background color when printing (except for text
916       with a white foreground) to save ink (#2968998).
917     * Limit build error editor indicators to 50, but parse all errors in
918       the Compiler tab (#3019823).
919     * Align notebook tab close buttons centred vertically (thanks to
920       Robux.Biz (galyuk)).
921     * Show the Project Properties build tab when choosing 'Set Build
922       Commands' when a project is open to prevent confusion with
923       non-project commands.
925     Manual:
926     * Fix wording - restarting is required for hidden prefs.
927     * Fix Grep --exclude-dir example.
930 Geany 0.19 (June 12, 2010)
932     General:
933     * Build system reworked to be much more configurable (by Lex Trotman).
934     * Use POSIX system/GNU regex engine for find & replace. This alters
935       regex syntax - we now support '?' operator and match newlines.
936     * Support adding custom filetype files.
937     * Add new command line option --list-documents to return a list
938       of currently opened documents
939     * Remove deprecated --debug flag. Please use --verbose/-v instead.
941     Interface:
942     * Add option 'System Default' for toolbar icon style and size to use
943       the GTK default value.
944     * Allow '+<number>' and '-<number>' as values for Goto Line inputs
945       to jump relative to the current line.
946     * Add preference to add new document tabs beside the current one
947       (patch by Colomban Wendling).
948     * Enable type-ahead find for sidebar symbols and documents tabs
949       (patch by Thomas Martitz).
950     * Make Ctrl-click on any notebook tab switch to the last used
951       document.
952     * Add 'Edit->Commands' menu.
953     * Add 'Edit->Plugin Preferences' menu item and keybinding.
954     * Add 'View->Editor->Color Schemes' menu (only shown if color
955       scheme files exist).
957     Prefs:
958     * Hide 'Tabs and Spaces: Hard tab width' preference - it should
959       always be 8. (Hidden setting kept in case users have modified it).
960     * Add sidebar position interface pref.
961     * Add project long line marker customisation (patch from Eugene
962       Arshinov).
964     Editor:
965     * Update Scintilla to 2.12.
966     * Add preference and support for virtual spaces.
967     * Add word part autocompletion for the current selected item when
968       pressing keybinding (default Tab) - Enter still completes normally.
969     * Remove LaTeX autocompletion from Geany's core and move it to the
970       geanyLaTeX plugin.
972     Filetypes:
973     * New filetype: Txt2Tags (patch by Eric Forgeot).
974     * New filetype: Abc (patch by Eric Forgeot).
975     * New filetype: Verilog (patch from Kelvin Gardiner).
976     * New custom filetype: Genie.
977     * Improvements in symbol parsing of PHP and Python files.
978     * Add R tagmanager symbol parser (patch by Jon Senior).
979     * Update Perl tag parser from ctags - removes support for
980       buggy local/my/our but parses constant/format/labels.
981     * Parse more VHDL tags (patch from Kelvin Gardiner).
982     * Highlight D & Java types from a global tags file.
983     * Parse Python lambda functions (patch from Colomban Wendling).
985     Keybindings:
986     * Add keybindings to switch to the sidebar's Document and Symbol list as
987       well as to the Message Window's current tab (patch by Eugene Arshinov).
988     * Add 'Remove Markers' and 'Remove Error Indicators' keybindings.
989     * Make 'Reflow block/lines(s)' keybinding use line breaking column when
990       enabled (patch by Lex Trotman).
991     * Add 'Select to previous/next word part' keybindings.
992     * Add 'Switch to Messages' focus keybinding.
993     * Add 'Move line(s) up/down' keybindings.
994     * Make Switch to Editor keybinding reshow the document statistics line.
996     Templates:
997     * Move filetype template defaults into custom file template files.
998     * Read custom file templates from system as well as user dir.
999     * Add new special template wildcard "{command:...}" to use the output
1000       of a shell command in templates.
1001     * Support {ob}, {cb} and {pc} to escape wildcard strings with {, }, %
1002       for snippets, fileheader and file templates.
1003     * Add {project}, {description} template wildcards (#2954737).
1004     * Reload templates when saving a document in the templates config dir.
1006     Configuration files:
1007     * Support more filetypes.common folding icon styles: arrows, +/- and no
1008       lines (#2935059).
1009     * Support Scintilla lexer properties in [lexer_properties] filetypes.*
1010       group.
1011     * Add filetypes.xml asp.default.language property (Ross McKay).
1013     Plugins:
1014     * Classbuilder: Add support for creating PHP classes
1015                     (patch by Ondrej Donek).
1016     * HTMLchars: Make plugin remember whether replacement of special
1017                  characters was activated.
1019     Windows:
1020     * Support very long build commands.
1021     * Add a preference for choosing between GTK and native File Open/Save
1022       dialogs (only available on Windows).
1024     Internationalisation:
1025     * Added translations: ast.
1026     * Updated translations: de, en_GB, es, fr, gl, ja, nl, pt, ru, sl, sv,
1027                             tr, vi, zh_CN.
1029     API:
1030     * Improve documentation contents page.
1031     * Add Stash mini-library setting, pref & widget functions to API.
1032     * Add plugin_configure_single() plugin symbol which is easier to
1033       implement than plugin_configure().
1034     * Add new plugin signals: "document-before-save", "document-filetype-set",
1035       "geany-startup-complete".
1036     * Add PLUGIN_SET_TRANSLATABLE_INFO macro to the plugin API so plugins' meta
1037       information can be translated already in the plugin manager dialog
1038       (patch by Colomban Wendling).
1039     * Use full function name for GeanyFunctions function pointers. This
1040       avoids naming conflicts e.g. with C++'s 'new' keyword.
1041     * GeanyKeyBinding label fields can now contain underscores, which won't
1042       be displayed by Geany. This saves adding near-duplicate translation
1043       strings.
1044     * Add GeanyKeyGroup callback support.
1045     * Add more Scintilla function wrappers, foreach_dir(), foreach_str(),
1046       utils_get_file_list_full(), document_get_notebook_page(),
1047       editor_insert_text_block().
1048     * Don't install unnecessary headers.
1049     * Remove deprecated header pluginmacros.h - use geanyfunctions.h
1050       instead.
1051     * Deprecate documents_foreach(), use foreach_document() instead.
1052     * Deprecate PLUGIN_KEY_GROUP() macro - use plugin_set_key_group()
1053       instead.
1056 Geany 0.18.1 (February 14, 2010)
1058     Build fixes:
1059     * Define G_GNUC_WARN_UNUSED_RESULT to fix build on GLib 2.8.
1060     * Use AC_PATH_PROG instead of 'which' for portability (patch by Erik
1061       Southworth, thanks).
1063     Incompatibilities:
1064     * Remove filetypes.common invert_all option - use 'Invert syntax
1065       highlighting colors' pref instead (fixes #2854525).
1067     Bug fixes:
1068     * Fix 'Open Selected File' for unsaved new documents.
1069     * Fix updating main menu accelerators after changing keybindings
1070       (thanks to Lex Trotman).
1071     * Fix using 'Insert date' keybinding when a custom date string has
1072       not been set.
1073     * Set the cursor color for the split window plugin.
1074     * Remove plugin from plugin manager dialog on unloading if it no
1075       longer exists or is incompatible.
1076     * Fix 'Reflow block' command when at the last paragraph and there's
1077       no last newline (patch by Eugene Arshinov, thanks).
1078     * Fix opening filenames beginning with two dots (closes #2858487).
1079     * Show Find in Files stderr output in messages window instead of
1080       debug window so that invalid regex messages can be seen easily.
1081     * Speed up sorting in utils_get_file_list(). This reduces the file
1082       browser delay on displaying a big directory, e.g. /usr/bin.
1083     * Fix a bug with not w3c compatible HTML code on export plugin
1084     * Fix non-working Home and End keys on numpads.
1085     * Fix loading of files on network resources on Windows.
1086     * Fix wrong alignment of printed pages when page headers are disabled
1087       (closes #2856822).
1089     Improvements:
1090     * Extend auto_latex() function to check whether an environment has
1091       been closed within the next lines to avoid auto adding double
1092       \end{}.
1093     * Replace some icons which could cause licensing problems by icons
1094       from the Rodent icon theme.
1096     Filetype fixes:
1097     * Parse contents of D extern{} and version{} blocks.
1098     * Fix creating D interface tags properly.
1099     * Parse D functions with contracts (fixes #1885480).
1100     * Parse D alias statement like typedef.
1101     * Improve parsing of LaTeX, PHP and Python files.
1103     Documentation:
1104     * Add 'Scope autocompletion' section.
1105     * Add 'Tools menu items' section to explain configuration files
1106       submenu, reload configuration item.
1107     * Minor updates/fixes.
1109     API:
1110     * Add gcc commands to build a plugin to the HowTo.
1112     HACKING file:
1113     * Add section 'Plugin API/ABI design'.
1114     * Add 'Compiler options & warnings' section.
1115     * Update Style section to be clearer about code alignment and show
1116       some example code.
1117     * Add 'Doc-comments' plugin API subsection.
1119     Internationalisation:
1120     * Added translations: gl
1123 Geany 0.18 (August 16, 2009)
1125     General:
1126     * Fix scrolling horizontally after finding a search match with the
1127       search bar or Find Next/Previous which is off-screen.
1128     * Remove relative/untidy path elements from filenames when opening
1129       documents (#2823998).
1130     * Create initial template files with proper platform-specific line
1131       ending characters.
1132     * Improve inserting of comment templates like File header or licence
1133       notices.
1135     Interface:
1136     * Add 'Show Paths' documents list popup item.
1137     * Add filetypes.common to 'Configuration Files' menu.
1138     * Implement a graphical toolbar editor.
1139     * Add 'Build' toolbar button to the default layout.
1140     * Add 'Replace' toolbar button (closes #2798225).
1141     * Use a more Tango like icon for 'Save All' (by Jesse Mayes, thanks).
1142     * Add a popup menu for the keybinding list in the preferences dialog
1143       to easily expand and collapse all groups.
1145     Keybindings:
1146     * Implement Most-Recently-Used document switching when pressing
1147       'Switch to last used document' keybinding (Ctrl-Tab).
1148     * Add 'Mark All' keybinding (Ctrl-Shift-M).
1149     * Add 'Reflow lines/block' keybinding, (Ctrl-J; thanks to
1150       Eugene Arshinov).
1151     * Make the Scintilla keybindings 'Delete to end of line' and
1152       'Go to end of display line' configurable.
1153     * Switching notebook tabs now works for the currently used notebook
1154       widget instead of always using the documents notebook.
1156     Editor:
1157     * Fix a redraw when documents were first drawn uncolourised.
1158     * Delay highlighting matching braces by 100ms to speed up scrolling
1159       with the arrow keys.
1160     * Support 'tab indents, space aligns' style when indenting (#2789109).
1161     * Add 'Autocomplete all words in document' pref; also used when forcing
1162       autocompletion and there's no symbol names to show.
1163     * Add 'Drop rest of word on completion' pref.
1164     * Update Scintilla to version 1.79.
1165     * Improve displaying and reshowing of calltips.
1167     Syntax highlighting:
1168     * Reload color schemes via Tools menu (thanks to Eugene Arshinov).
1169     * Implement named styles support for filetypes.* using a
1170       filetypes.common [named_styles] section; used as
1171       "style=named_style,bold". (See the manual for details).
1172     * Allow style definitions with missing fields to use the
1173       filetypes.common default style's fields.
1174     * Make C-like filetype styles use named styles & default background
1175       color. (Anyone who wants to likewise update any other filetype's
1176       styles, please let us know ;-)).
1177     * Allow indentation of wrapped lines (see style 'line_wrap_indent').
1178     * Add new styles 'line_height' and 'marker_mark'.
1180     Filetypes:
1181     * Add Markdown filetype (thanks to Jon Strait).
1182     * Highlight D WYSIWYG backtick `strings` and r"strings" (#1895745).
1183     * Minor improvements for filetypes: Fortran, Haxe, HTML, Lua,
1184       Matlab, Pascal, Python, Tcl.
1186     Tags:
1187     * Read custom system global tags files from $prefix/share/geany/tags
1188       (#2778923).
1189     * Autocomplete scoped fields like struct members when typing '.' (and
1190       also '->' or '::' in C/C++) if the language's tag parser supports it.
1191     * Save field tags for C/C++ when generating a global tags file (you may
1192       want to regenerate your tag files).
1193     * Parse Python calltips.
1194     * Show relative paths in Diff filename tags.
1195     * Group reStructuredText symbol list items by scope level.
1197     Plugin API:
1198     * Add geanyplugin.h single include.
1199     * Add plugin_signal_connect() for connecting plugin signals at
1200       runtime and also for connecting to any GObject signal.
1201     * Add documents_foreach(), filetypes[], documents[], utils_strdupa()
1202       and various foreach_type() macros.
1203     * Make GeanyDocument::file_type always be non-NULL.
1205     Windows:
1206     * Fix quoting the build command string on Windows (closes #2791769).
1207     * Fix LaTeX view commands on Windows (part of #2807688).
1208     * Expand system environment variables (%variableName%) on Windows when
1209       running Build commands.
1211     Internationalisation:
1212     * Added translations: lb, sl, pt_PT
1213     * Updated translations: ca, cs, de, en_GB, fi, fr, ja, pt_BR, ru, tr
1216 Geany 0.17 (May 02, 2009)
1218     Bug fixes:
1219     * Fix broken selection of "Document->Set Encoding" menu items.
1220     * Fix broken non-incremental search with the toolbar search entry when
1221       pressing Enter (closes #2638180).
1222     * Fix parsing of Make output (closes #2694479, patch by Andrea Mazzoleni).
1223     * Fix crashes on quitting Geany (closes #2533990).
1224     * Fix disabled Go to Tag items in the editor menu when using the
1225       keyboard (#2780044).
1226     * Prevent crashes when two or more top level items in the symbol
1227       list have the same name (closes #2778246).
1229     Prefs:
1230     * Add an option to set an additional plugin lookup path.
1231     * Add a hidden preference 'use_safe_file_saving'. This has serious side
1232       effects, please read the documentation before enabling this.
1234     Interface:
1235     * Add 'Send Selection to Terminal' command to the Edit->Format menu.
1236     * Change the background colour of the search entries in the Find
1237       and Replace dialogs according to the search results.
1238     * Add 'Close Other Documents' and 'Close All' menu items to the tab bar
1239       menu.
1240     * Add an option to allow appending the toolbar to the main menu bar
1241       to save some vertical space.
1242     * When a project is loaded, replace the project base path with the
1243       project name in the Documents sidebar for parent items (closes #2723679).
1244     * Make the file open dialog more compact.
1245     * Ellipsize tab labels and some status messages for very long
1246       filenames (closes #2777348).
1247     * Add new toolbar element: Print (patch by Roland Baudin).
1248     * Remember the active sidebar page between sessions.
1249     * Add "Recent Projects" menu to the Project menu (#2728630,
1250       patch by Elias Pschernig).
1251     * Add Tools->Configuration Files item for snippets.conf.
1253     Filetypes:
1254     * Fix wrong Fortran 90 comment characters when inserting templates.
1255     * Add filetype ActionScript (patch by Chris Macksey).
1256     * Fixes for CSS, Fortran and Ruby parsers.
1257     * Add a trivial symbol parser for NSIS files.
1259     Windows:
1260     * On Windows, change the working directory to the Geany installation
1261       path at startup to avoid unwanted directory locking(closes #2626124).
1262     * Fix window positioning on startup.
1263     * Make build commands on Windows run synchronously to avoid problems
1264       with reading build commands' output.
1266     Plugins:
1267     * HTMLchars: Extend plugin by bulk replace and replace on
1268       input for special characters to their HTML entities.
1269     * Splitwindow: Add keybindings for the split actions.
1270     * VCDiff: Remove plugin from Geany. Use GeanyVC instead.
1272     Plugin API:
1273     * Deprecate sci_get_text(), sci_get_selected_text() and
1274       sci_get_text_range().
1275     * Add sci_get_contents(), sci_get_contents_range() and
1276       sci_get_selection_contents() as replacement functions to provide
1277       an easier and cleaner API (initial patch by Frank).
1278     * Make GEANY_FILETYPES_NONE = 0, sort filetype IDs randomly (so we can
1279       append new filetypes without breaking the ABI); add
1280       filetypes_by_title sorted list to GeanyData.
1282     Documentation:
1283     * Describe how to build Geany using the Waf build system.
1285     Internationalisation:
1286     * Updated translations: be, cs, de, es, fi, fr, hu, ja, pt_BR, ru,
1287       sv, tr, zh_CN
1290 Geany 0.16 (February 15, 2009)
1292     Bug fixes:
1293     * Fix indenting for Tabs & Spaces mode when inserting snippets.
1294     * Fix snippets and smart indent using too much indentation when the
1295       line contains whitespace after non-whitespace characters (#2215044).
1296     * Fix segfault when showing Find in Files dialog when no documents are
1297       open (#2228544).
1298     * Fix not switching to 2nd last used document when the last used
1299       document has been closed (#1945162).
1301     General:
1302     * Group child tags by their parents in the symbol list for C-like
1303       filetypes, Python, Conf (thanks to Conrad Steenberg).
1304     * Use a tree for the Documents sidebar, grouped by path.
1305     * Add 'Tools->Configuration Files' menu with items to open
1306       filetype_extensions.conf and ignore.tags. These files are also
1307       reloaded automatically when saved.
1308     * Change configuration directory path to $XDG_CONFIG_HOME/geany
1309       (most often this is ~/.config/geany).
1310     * Allow to specify files on the command line and from remote instances
1311       to be URIs (local and with GIO also remote URIs).
1312     * Increase minimum required GTK version to 2.8.
1314     Prefs:
1315     * Add Project Indentation prefs, which override the Editor
1316       Preferences dialog options. For new projects, these default to
1317       the editor indent prefs.
1318     * Add an interface pref for whether to hide additional widgets when
1319       double-clicking on document notebook tabs (off by default).
1320     * Add a preference to invert all colours for syntax highlighting.
1321     * Add a hidden preference "allow_always_save" to make the Save buttons
1322       and menu items always sensitive.
1324     Interface:
1325     * Rework the toolbar: now all elements can be added/removed/reordered
1326       using a simple XML file.
1327     * Add new toolbar buttons for Cut, Copy, Paste, Delete, Preferences,
1328       Close All and Build (including a submenu for Make actions).
1329     * Add a progressbar widget to the statusbar to show progress for time
1330       consuming actions.
1332     Editor:
1333     * Make Ctrl-click go to matching brace if there's no current word.
1334     * Make Shift+Mouse wheel scroll the editor view horizontally.
1335     * Make the 'Mark' button for Find highlight the results with rounded boxes
1336       instead of marking the whole line.
1337     * Add auto-closing of braces, brackets and quotes (Guillaume de Rorthais).
1338     * Support multiple %cursor% wildcards in Snippets (Thomas Martitz).
1340     Filetypes:
1341     * Add new filetypes Ada, CMake, Matlab, NSIS, Vala and YAML.
1342     * Update HTML character entities (thanks to Tyler D'Agosta).
1343     * Parse restructuredText sections in the order of first-used underline
1344       character, which can now be any punctuation character (as per the spec).
1345     * Remove GTK global tags, replace them with C (C99) tags. The GTK tags
1346       file is still available for download on the website.
1347     * Minor improvements for filetypes CSS, Fortran, FreeBasic, HTML, Tcl
1348       and Vala.
1350     Windows:
1351     * Improve tab close icon size.
1352     * Changes to the Windows installer:
1353       - The full installer now includes the GTK 2.14 runtime environment.
1354       - Register ".geany" as Geany Project File extension.
1355       - Install GTK translation files only if installation of translation
1356         files were requested (saves about 22 MB otherwise).
1357       - Support silent installations.
1359     Plugins:
1360     * Add Split Window 'Split Vertically' command (thanks to Moritz Barsnick).
1361     * Make Version Diff plugin set the indent type for diffs based on the
1362       current file's indent type.
1363     * Minor improvements to the filebrowser plugin
1365     Plugin API:
1366     * Generate plugin API header geanyfunctions.h containing macros to
1367       avoid having to type the function pointer names manually.
1368     * Deprecate pluginmacros.h in favour of geanyfunctions.h.
1369     * Add "editor-notify" to the plugin API.
1370     * Add new plugin symbol plugin_help() which is called by Geany when the
1371       plugin should show its documentation (if any, symbol is optional).
1373     Documentation:
1374     * Update Scintilla regular expression info for v1.77 (character
1375       classes, ASCII escaping, character sets containing square
1376       brackets peculiarities). Adapted from SciTE doc.
1377     * Complete 'Hello World' Plugin Howto.
1379     Internationalisation:
1380     * Updated translations: bg, ca, cs, de, en_GB, fr, hu, it, ja,
1381       pt_BR, sv, ru, tr, vi, zh_CN
1384 Geany 0.15 (October 19, 2008)
1386     General:
1387     * Add Previous Message, Previous Error commands (thanks also to Beau
1388       Barker).
1389     * Add 'Close Other Documents' File menu command (#1976724).
1390     * Add Find Document Usage popup menu command & keybinding.
1391     * Check that the current file is still on disk (as well as checking the
1392       modification time).
1393     * Add support for custom file templates (found at startup) in the
1394       ~/.geany/templates/files directory, shown underneath filetype templates
1395       in the New with Template menu.
1396     * Make socket open command support filename:line:column syntax.
1397     * Add filetypes.* [build_settings] key 'error_regex' to support custom
1398       error message parsing using a GNU-style extended regular expression.
1399     * Allow loading projects from command line (#1961083).
1400     * Add alternative build system: Waf.
1401     * Add Tools menu item to reload configuration data without a restart.
1402     * Add support to use template wildcards in snippets.
1403     * Increase LSB compliance.
1405     Prefs:
1406     * Make disk check timeout configurable (zero disables disk checks).
1407     * Add search pref: 'Use the current file's directory for Find in Files'
1408       (#1930435).
1410     Interface:
1411     * Make keyboard shortcuts dialog non-modal (#1999384).
1412     * Add a debug messages window to easily view debug messages/warnings.
1414     Editor:
1415     * Update Scintilla to version 1.77 (includes many fixes).
1416     * Add basic Line Breaking option in the Document menu and 'Line breaking
1417       column' editor pref (for now only works when typing characters past
1418       the line breaking column number).
1419     * Don't colourise any documents until they need to be drawn (this
1420       should make opening a session faster for filetypes that support typename
1421       highlighting).
1422     * Make Ctrl-click on a word perform Go to Tag Definition.
1423     * Add 'Max. symbol name suggestions' autocompletion pref.
1424     * Show ellipsis (...) item when there are too many symbol names for
1425       autocompletion.
1426     * Highlight matching brace indent guides (thanks to Jason Oster;
1427       #2104099).
1428     * Show brace indent guides on empty lines when appropriate (thanks to
1429       Jason Oster; #2105982).
1430     * Add 'Tab key indents' pref, on by default.
1431     * Implement soft tabs support (#1662173). There's now a 'Tabs & Spaces'
1432       Indent Type, and separate Width, Hard Tab Width indent prefs. (Thanks
1433       to Joerg Desch for explaining how it needed to work).
1434     * Auto-update the line margin width as lines are added (thanks to Jason
1435       Oster; #2129157).
1436     * Add "Replace spaces by tabs".
1438     Windows:
1439     * Install plugins into lib/ not into plugins/.
1440     * Install Geany's message catalogs into share/locale rather than
1441       lib/locale as GTK does since 2.12.2.
1443     Keybindings:
1444     * Add Go to Start/End of Line keybindings (#1996175).
1445     * Add 'Switch to Compiler' keybinding (useful when checking build
1446       progress).
1447     * Add keybindings for Line wrapping, Line breaking, Toggle fold and
1448       Replace Spaces by tabs, Previous/Next word part.
1450     Filetypes:
1451     * Add OpenGL Shader Language (GLSL) filetype (thanks to Colomban
1452       Wendling; #2060961).
1453     * Add R language filetype (thanks to Andrew Rowland; #2121502).
1454     * Split filetype Fortran into Fortran 77 and Fortran 90.
1455     * Add Gettext translation filetype (#2131985).
1456     * CSS improvements, thanks to Jason Oster.
1458     Embedded Terminal:
1459     * Fix hang when restarting the VTE (#1990323) with VTE 0.16.14.
1460       (Note that with VTE 0.16.14 the reset sometimes leaves a blank
1461       terminal, but pressing enter makes it then behave as normal).
1463     Plugins:
1464     * Add Split Window plugin (should work OK for viewing; full editing
1465       support is not implemented yet).
1466     * Merge InstantSave, AutoSave and BackupCopy plugins into the new
1467       plugin 'Save Actions'.
1469     Documentation:
1470     * Add Tips and Tricks appendix.
1471     * Updated Installation section.
1472     * Update 'Build system' for custom error regexes.
1473     * Add a section for internal plugins.
1475     Plugin API:
1476     * Many changes; see the API documentation (make api-doc) and the
1477       geany-devel list archives.
1478     * Deprecated: plugin_fields, plugin_info symbols.
1480     Internationalisation:
1481     * New translations: ko, tr.
1482     * Updated translations: be, ca, de, en_GB, fi, hu, it, ja, pl,
1483       ro, ru, sv, zh_CN
1486 Geany 0.14 (April 19, 2008)
1488     General:
1489     * Don't beep when using Replace All in Session unless all open files
1490       have no replacements (fixes #1893796).
1491     * Only use filetype detection after Save As, not on every save when the
1492       filetype is None (fixes #1891778).
1493     * Make Go to Tag commands look for the tag in the current document
1494       before searching the workspace.
1495     * Check file on disk for changes also when pressing a key.
1496     * Ignore documents with no absolute path when saving session files.
1497     * Fix segfault with Run command when a project is open and the current
1498       file's filetype has no run command.
1499     * Make Next Error and Next Message commands add positions to the
1500       navigation queue, so the user can move backwards through the list items
1501       and return to where they were.
1502     * Make pressing escape in the sidebar focus the editor.
1503     * Make navigation queue position based to restore the line and column when
1504       returning to a previous position (closes #1936927).
1505     * Save sorting order of the symbol list when saving a file (fixes #1917262).
1506     * Improve "Send Selection To" code (fixes #1909452).
1507     * Install header files and add a pkg-config file for external plugins.
1508     * Use monospace font for text entry fields in search dialogs (#1907117).
1509     * Don't open zero byte sized files read-only (e.g. files in /proc).
1511     Filetypes:
1512     * Improve Makefile parser to detect targets.
1513     * Update PHP tags file to latest PHP API docs (closes #1888691).
1514     * Add translucency settings to filetypes.common for semi-transparency.
1515     * Add HTML parser to get h1, h2, h3 symbols as well as link anchors and
1516       JavaScript functions (fixes #1896068).
1517     * Update Javascript, Tcl and Assembler parser.
1519     Interface:
1520     * When closing a tab when using left-to-right tabs, focus the next
1521       document, not the previous.
1522     * Move Load Tags item from File to Tools menu.
1524     Editor:
1525     * Don't scroll the editor view if it is unnecessary when using Find
1526       Next/Previous, Find Selected, incremental search, Go to Marker or Go to
1527       Matching Brace commands.
1528     * Fix bug with showing macro list items all on one line.
1529     * Fix Python auto-indentation when line endings are set to CR/LF.
1530     * Unfold hidden code when the fold point modified (fixes #1923350).
1531     * Update Scintilla to version 1.76.
1532     * Add (basic) column mode editing (patch by "chuck").
1534     Windows:
1535     * Replace untitled file header filename after Save As and add to recent
1536       files on Windows too.
1537     * Resolve Windows shortcuts when opening files.
1538     * Fix modal dialog problems on Windows by not setting taskbar hint
1539       (closes #1916994).
1540     * Add new process spawning implementation. This makes the VCdiff plugin
1541       to work on Windows (patch by Pierre Joye, thanks).
1542     * Fix crash on Windows when a project could not be opened.
1544     Plugins:
1545     * Add configurable plugin keybindings support.
1546     * Add a HTML Characters keybinding to show the dialog.
1547     * Add File Browser keybindings to focus the Path Entry and File List
1548     * Rename VCDiff plugin Version Diff.
1549     * When quitting, remember plugin filenames that couldn't be loaded at
1550       startup as well as active plugins.
1552     Plugin API:
1553     * Add PLUGIN_KEY_GROUP and keybindings_set_item() to setup a keybinding
1554       group.
1555     * keybindings_send_command() arguments have changed because of
1556       keybinding groups - this breaks the API for plugins already using it.
1557     * Make VERSION_CHECK deprecated in favour of PLUGIN_VERSION_CHECK.
1559     Documentation:
1560     * Add descriptions for several options in the preferences dialog
1561       (patch from Robert McGinley).
1563     Internationalisation:
1564     * New translations: ro.
1565     * Updated translations: bg, de, en_GB, es, fr, hu, it, ja, pt_BR, ru.
1568 Geany 0.13 (February 05, 2008)
1570     General:
1571     * Improve configure script and fix some compatibility issues.
1572     * Add support for project session files.
1573     * Add native GTK printing support (only with GTK 2.10+).
1574     * Prevent execution of commands by Geany if the VTE may contain any
1575       text on the prompt (thanks to "Jeff Pohlmeyer for reporting).
1576     * Store more document-related settings when saving session in the
1577       configuration file (including the file encoding).
1578     * Detect in-file specified file encoding by scanning the file using
1579       regular expressions.
1580     * Add binary relocation support.
1582     Filetypes:
1583     * Add configurable default file extension setting for filetype
1584       definition files.
1585     * Fix reST autocompletion.
1587     Tags:
1588     * Show arrays and modifiers like const in calltip return types for
1589       C-like files.
1590     * Update C global tags file for GTK+ 2.12.
1591     * Fix parsing the correct D class name when inheriting, D constructor
1592       tags and ignore D import statements.
1593     * Remove unnecessary tagmanager status file.
1594     * Improve PHP, Ruby and FreeBasic parsers.
1596     Interface:
1597     * Add 'Indent Type' option in the Document menu.
1598     * Add 'Detect from file' Editor indentation pref.
1599     * Show TAB or SP for current document's indent type.
1600     * Add a 'Newline strips trailing spaces' pref (thanks to Catalin
1601       Marinas).
1602     * Add 'Strip Trailing Spaces' document menu item.
1603     * Add combo box input history for 'Make Custom Target' dialog.
1604     * Make Open, Save As dialogs start in project base path (or default
1605       path pref) when the current file has no filename.
1606     * Add 'Make in base path' project file preference.
1607     * Make 'Open Selected File' first try the current file's directory,
1608       falling back to the project base path if no file was found.
1609     * Fix broken window maximization.
1610     * Improve appearance of used treeviews and use rules hints to respect
1611       user colour settings.
1613     Editor:
1614     * Fix hidden lines after deleting a line that is a collapsed fold
1615       point.
1616     * Make Fold All/Unfold All attempt to scroll the current line in view.
1617     * Show line wrap symbol at start of line for wrapped lines.
1618     * Allow scrolling past end of document, so the user can append text
1619       with the last lines drawn at the top of the view.
1620     * Rename "Construct autocompletion" to "Snippets".
1621     * Improve usage of "Unfold all children" option.
1622     * Update Scintilla to version 1.75.
1624     Keybindings:
1625     * Add configurable keybindings for Cut, Copy and Paste.
1626     * Ask the user whether to override an existing keybinding when setting
1627       a combination that is already in use.
1628     * Add 'Override Geany keybindings' VTE prefs dialog option (replaces
1629       hidden pref), which makes the VTE interpret all keyboard shortcuts
1630       except focus group keybindings.
1632     Plugins:
1633     * Add File Browser sidebar plugin.
1634     * Add Version Control Diff plugin (VC Diff), which supports SVN, CVS and
1635       GIT (thanks to Yura Siamashka).
1636     * Add plugin manager dialog to select plugins to load at startup and to
1637       call a plugin configure dialog.
1638     * Add new signals: project_open, project_save, project_close.
1639     * Add Auto Save plugin.
1641     Plugin API:
1642     * Add keybindings_send_command() and some other functions.
1643     * Add pluginmacros.h to define common macros for app, p_utils, etc.
1644     * Add more documentation/comments to demoplugin.c.
1645     * Add configure symbol for plugins which is called by Geany when a
1646       configure dialog for the plugin is requested, optionally.
1647     * Add author field to plugin info struct.
1649     Windows:
1650     * Enable build support.
1651     * Prevent prefs dialog being hidden after using the prefs file dialog.
1652     * Create Geany's configuration directory in user's appdata path
1653       instead of the default home directory.
1655     Documentation:
1656     * Show default shortcuts in Keybindings section.
1657     * Update Project section for project-based session support.
1658     * Add Indentation subsection under Editor section.
1659     * HACKING: Update 'Adding a filetype' section.
1661     Internationalisation:
1662     * New translations: ja, uk, el.
1663     * Updated translations: ca, de, en_GB, fr, it, pt_BR, hu, sv, vi.
1666 Geany 0.12 (October 10, 2007)
1668     Bugs fixed:
1669     * Fixed opening the same file twice from the message window/command-line.
1670     * Fixed Ctrl-Shift keybindings not working when caps lock is on.
1671     * Fixed saving the wrong document when using Save All with unnamed
1672       documents.
1673     * Fixed replacing with '^' or '$' regex chars.
1674     * Fixed hang with Find All/Find Usage with '^' or '$' regex chars.
1675     * Fixed hang when replacing all '[ ]*' regex matches (closes #1757748).
1676     * Fixed displaying error indicators with Make after entering a
1677       subdirectory.
1678     * Fixed a possible segfault when parsing tags (a vString bug).
1679     * Fixed clipboard problems with some applications.
1680     * Fixed crash when trying to open the Save As dialog on Windows.
1681     * Fixed crash when saving a file after setting encoding "None".
1682     * Fixed scrolling bugs when searching text and the cursor is outside of
1683       the current visible area.
1685     Filetypes:
1686     * Added reStructuredText filetype and parser.
1687     * Added Haskell tags support (thanks to Peter Strand).
1688     * Added decorator styling for Python.
1689     * Parse Python global variables and class variables.
1690     * Added support for Java Apache Ant compiler error messages (thanks to
1691       Jon Senior).
1692     * Added new filetypes CSharp and FreeBasic.
1693     * Added filetype Haxe (patch by blackdog, thank you).
1695     Plugins:
1696     * Added basic plugin support (developers: see the HACKING file).
1697     * Added 'Enable plugin support' preference and -p, --no-plugins options.
1698     * Added Class Builder plugin (thanks to Alexander Rodin).
1699     * Added Export plugin to export current file as HTML or LaTeX.
1701     Keyboard shorcuts:
1702     * Common bash Ctrl-[a-z] keyboard shortcuts now work when the VTE is
1703       focused, and there is an 'enable_bash_keys' hidden preference.
1704     * Added 'Move document left' and 'Move document right' keybindings.
1705     * Added Find keybinding.
1706     * Made fixed keybindings overridable.
1707     * Added fixed keybindings for switching to leftmost/rightmost document,
1708       Ctrl-Shift-{PageUp,PageDown}.
1709     * Change Previous/Next Paragraph fixed commands to Ctrl-{Up,Down};
1710       adding Shift extends selection by paragraph. (Scroll by line is now
1711       Alt-{Up,Down}).
1712     * Made pressing escape focus the editor when using incremental search
1713       or Goto Line toolbar fields.
1714     * Added keybinding for select current paragraph.
1715     * Added keybindings for smart indent and indent/deindent by one space.
1716     * Removed convert to lower-/upper-case keybindings.
1717     * Added toggle case keybinding and change shortcut to Ctrl-Alt-U.
1719     General:
1720     * Added preference for 'smart' home key behaviour (thanks to Jeff
1721       Pohlmeyer).
1722     * Added symbol list icons (thanks to Jean-François Wauthy, and KDevelop
1723       for the icons).
1724     * Added 'Current chars' indentation mode (closes #1726880).
1725     * Save and restore the current notebook page when quitting.
1726     * Added support for %e, %f in project run command.
1727     * Ignore punctuation chars when moving by word, and use word end
1728       boundaries when moving by word to the right (like most GTK+ widgets).
1729     * Added hidden editor preference 'use_gtk_word_boundaries'.
1730     * Added auto_complete_whilst_editing hidden preference.
1731     * Speed up Save All for C-like files.
1732     * Don't show file opened/saved/closed messages on the status bar.
1733     * Added --no-preprocessing, -P option when generating tags files to
1734       disable preprocessing of C/C++ source files.
1735     * Added default startup directory option (closes #1704988).
1736     * Use current locale as default encoding for new files.
1737     * Added simple code navigation (thanks to Dave Moore).
1738     * Re-maximize the main window on startup when closed in maximized state
1739       (closes #1730369).
1740     * Added auto focus (to auto focus widgets below mouse cursor).
1741     * Complete rewrite of auto completion to make it user-definable and
1742       much more flexible (please read documentation).
1743     * Added option to set a default encoding when opening files and disable
1744       auto detection of the file encoding.
1745     * Improved comment toggling by adding an additional character to mark.
1746     * Changed the background colour of the search bar in the toolbar
1747       according to the search result.
1748     * Use intltool to make geany.desktop translatable
1749     * Replace Geany's icon by a new one by Sebastian Kraft (thanks).
1750     (Thanks also to Christoph Berg for updating the icon code).
1752     Docs:
1753     * Changed documentation generation tools from DocBook to reST
1754       (thanks to John Gabriele for his great work on this).
1755     * Added Plugins section.
1756     * Added 'Inserting unicode characters' Editing section (thanks to
1757       John Gabriele).
1758     * Added 'Hidden preferences' appendix.
1759     * Added 'Switching documents' keybindings section.
1761     HACKING:
1762     * Added notes on adding a filetype.
1764     Internationalisation:
1765     * New translations: en_GB.
1766     * Updated translations: ca, cs, de, es, fi, fr, hu, it, pl, pt_BR, zh_CN.
1769 Geany 0.11 (May 21, 2007)
1771     Notes for existing users:
1772     * Tab is now used for construct completion (for, if, etc.), but it
1773       is configurable with the new 'Complete construct' keybinding.
1774     * Template files are now stored in ~/.geany/templates/ and the
1775       'template.' filename prefix is no longer used. You will need to
1776       move any custom template files you have.
1777     * Inserting a file header is now optional for filetype templates.
1778       Use the string '{fileheader}' to mark where the file header should
1779       be placed.
1780     * Drag'n'Drop of text inside the editor widget will now move the
1781       text instead of copying it.
1783     Bugs fixed:
1784     * Fix segfault when pressing Ctrl-Enter when there are no workspace
1785       tags.
1786     * Remove error indicators in all documents when linking (#1705374).
1787     * Sort symbol list tags also by line number (#1703575).
1788     * Fix #1717418, Hang on SQL file load.
1789     * Fix #1718532 - Crash when opening a special HTML file.
1790     * Add workaround for PHP closing brace de-indenting.
1791     * Fix reloading of read-only documents.
1793     Project Management:
1794     * Add keybinding to show project properties dialog.
1795     * Add project Run command support.
1796     * Run Make All and Make Custom from the project base directory.
1798     Custom Global Tags:
1799     * Update C global tags for GTK+ 2.10 and it's dependencies.
1800     * Add option --generate-tags (-g) to generate a global tags file
1801       from a list of source files (see docs).
1802     * Load global tag files stored in ~/.geany/tags at startup #.
1803     * Add Load Tags command in the File menu #.
1804     # This is not supported for Pascal, PHP or LaTeX files yet.
1806     Calltips (for C-like files):
1807     * Show up and down arrows when there are multiple calltip matches.
1808     * Show classname in calltips.
1809     * Parse pointers in function return type.
1810     * Add calltip support for D constructors.
1812     Other changes:
1813     * Parse 'Entering directory' Make messages so opening files from
1814       error messages works for subdirectories (thanks to Josef Whiter).
1815     * Make Go to Tag Definition/Declaration work for all tags.
1816     * Support filetype templates for all filetypes (see docs).
1817     * Make file header optional for filetype templates.
1818     * Add 'Find Selected' and 'Find Prev Selected' search commands and
1819       keybindings (thanks to Jeff Pohlmeyer).
1820     * Add Mark button to the Find dialog, and a Remove Markers item to
1821       the Document menu.
1822     * Add 'Recurse in subfolders' and 'Extra options' checkboxes to the
1823       Find in Files dialog.
1824     * Add 'Switch to last used document' keybinding (Ctrl-Tab).
1825     * Add Goto Previous/Next Marker keybindings (Ctrl-, and Ctrl-.).
1826     * Add Toggle Marker keybinding (Ctrl-M).
1827     * Add keybinding for construct completion, and set the default to
1828       Tab.
1829     * Add MimeType associatiations for: C++ header, Pascal, Perl,
1830       Python, httpd-PHP and XML files (thanks to Iñaki Rodriguez).
1831     * Add brace indenting support for Perl and Tcl.
1832     * Make backspace unindent when using spaces for indentation.
1833     * Wrap notebook pages when switching tabs.
1834     * Speed up loading multiple C-like files slightly.
1835     * New filetypes: JavaScript, Lua and Haskell.
1836     * Set several widget names to allow users to define custom styles
1837       in .gtkrc-2.0.
1838     * Add context actions to run custom commands on current selection
1839       or the current word below cursor.
1840     * Add different auto indention modes.
1841     * Improve replacing in rectangle selections.
1842     * Add custom commands to send selected text through some definable
1843       commands and replace the selection with the output.
1844     * Add command line option --column to allow setting the initial
1845       column for the first opened file on command line.
1846     * Improve the auto scrolling of documents.
1847     * Improve loading of the VTE library.
1848     * Add an option for using spaces or tabulators when inserting some
1849       whitespace.
1850     * Add an option to disable Drag'n'Drop in the editor widget.
1852     Documentation:
1853     * Add Project Management, Global Tags, Construct Completion
1854       sections.
1855     * Add Bookmarks section (thanks to John Gabriele).
1856     * Update Filetype Templates, Search sections.
1858     Internationalisation:
1859     * New translations: bg.
1860     * Updated translations: ca, cs, de, es, fr, zh_CN.
1863 Geany 0.10.2 (February 25, 2007)
1865     Bugs fixed:
1866     * Fixed serious crash of complete X session when using the Stop
1867       command when Geany is run from the program menu (closes #1668017).
1870 Geany 0.10.1 (February 23, 2007)
1872     Bugs fixed:
1873     * Wrong tab foreground colour for unmodified documents.
1874     * Fixed crashes when closing dialogs by clicking X on some systems.
1875     * Fixed missing global tags for C files when a C++ source file was
1876       loaded first.
1877     * Fixed autocompletion missing tag matches.
1878     * Fixed a wrong PASCAL autocompletion.
1879     * Set single undo action when toggling multiple lines or stripping
1880       trailing spaces.
1881     * Prevent some possible invalid memory reads.
1882     * Convert config, application and documentation dir paths to locale
1883       encoding before using it.
1884     * Fixed errors when changing directories containing special
1885       characters within the VTE component (thanks to Jeff Pohlmeyer).
1886     * Support newer so-names when loading the VTE library (thanks to
1887       Jeff Pohlmeyer).
1888     * Fixed paste problems on Windows.
1889     * When using Save As the returned filename needs to be converted
1890       into UTF-8.
1891     * Fixed error when parsing of compiler errors by the va_list system.
1892     * Added MimeType entry as suggested by Nick Schermer.
1893     * LaTeX parser: Allow \section*{} and other commands with *.
1894     * Change default keybinding for Close All to Ctrl-Shift-W.
1895     * Allow Make for files with no extension - prevent Build when the
1896       output filename would be the same as the source file.
1897     * Ensure the VTE visual settings are applied when switching to VTE
1898       when the Message Window is hidden.
1899     * Fixed several issues while opening files and improved code.
1900     * Improved the auto scrolling of documents and fixed a bug when
1901       opening files remotely.
1902     * Fixed wrong D function return type after a class definition.
1903     * Added several missing style types for filetype Perl (thanks to
1904       John Gabriele for reporting).
1905     * Prevent right click in Symbol list from selecting a tag.
1906     * Update the symbol list when starting a new document.
1907     * Scroll Compiler and Messages window in view when using Next Error
1908       or Next Message.
1909     * Auto close brackets only when auto completion of constructs is
1910       enabled (closes #1665015).
1911     * Fixed switching to the wrong tab when showing the unsaved dialog.
1913     Internationalisation:
1914     * New translations: fi (thanks to Harri Koskinen).
1915     * Updated translations: cs, de, es, fr, hu.
1918 Geany 0.10 (December 21, 2006)
1920     Changes:
1921     * Added a dialog to insert HTML special characters.
1922     * Added new command line option --line to set the initial line for
1923       the first opened file.
1924     * Implemented new, own Undo system to undo/redo encoding changes.
1925     * Added simple parser for filetype Diff to create tags for each
1926       patched file in a diff file.
1927     * Added new encoding "None" to open files without any character
1928       conversions.
1929     * Added Stop button to abort the Run command.
1930     * New filetype VHDL.
1931     * New scintilla lexer for filetype D with several improvements.
1932     * Improved auto completion of multi line comments
1933     * Added option to execute programs in the VTE instead of executing
1934       them in a terminal emulation window
1935     * Removed the limit on the number of files open.
1936     * Save the build includes and arguments when quitting.
1937     * Added Next Message search command and Next Error build command.
1938     * Make search bar automatically wraparound if necessary.
1939     * Applied patch from Bob Doan to prevent unnecessary search
1940       scrolling and add a preference to suppress some of the search
1941       dialogs.
1942     * Added Find Previous, Find All in Document/Session buttons for the
1943       Find dialog.
1944     * Added Replace (but don't Find) button for the Replace dialog.
1945     * Added 'Hide Message Window' popup menu command.
1946     * Added Alt-[1-9] shortcuts to switch to a certain tab number.
1947     * Limit search dialog history to 30 entries.
1948     * Change python default compile command to create a compiled
1949       python .pyc file (thanks to Bajusz Tamás).
1951     Windows changes:
1952     * Fix #1611530 'file has changed' message on Windows after saving.
1953     * Fixed wrong paste behaviour under Windows with some applications.
1955     Bugs fixed:
1956     * Fixed crash when using "Make object" on new files.
1957     * Fixed incompatible use of read command in the created shell
1958       script to execute programs.
1959     * Fixed wrong insert position when the cursor was moved by keyboard
1960       and comments, includes or a date was inserted.
1961     * Fixed some segfaults when inserting comments, dates and
1962       includes at a position prior to some deleted text.
1963     * Fix message window horizontal scrollbar being too tall on some
1964       systems (thanks to Rob van der Linde).
1966     Internationalisation:
1967     * New translations: fr, hu, it, zh_CN, zh_TW.
1968     * Updated translations: be, ca, cs, de, es, vi.
1971 Geany 0.9 (September 29, 2006)
1973     Changes:
1974     * Added function calltips for files open in the current workspace
1975       for C-like languages.
1976     * Open a second instance by default when starting Geany with no
1977       filenames specified on the command-line.
1978     * Added better error message support for D, for both DMD and GDC;
1979       also GCC-style linker error messages are now parsed.
1980     * Text selections now use syntax highlighting foreground colours
1981       (but can still be overridden in filetypes.common).
1982     * Find in Files improvements: fixed string and whole word only
1983       matching options; a directory selector dialog; filenames passed
1984       to Grep are now sorted alphabetically.
1985     * Remember the VTE current directory at startup.
1986     * Show the messages window on build failure or for Find Usage.
1987     * Added -s command-line option to not load session files (-i is now
1988       used to force a new instance).
1989     * Added comment toggle functionality to easily comment and
1990       uncomment a line with one shortcut.
1991     * Separated filetypes PHP and HTML for better usage.
1992     * New filetypes: Diff, Fortran 77 and Ferite.
1993     * Added auto completion tags for PASCAL.
1994     * Improved VTE usage by adding options for selecting the used shell
1995       and ignoring menu bar accelerator (default F10).
1996     * Added menu items to insert configurable date/time strings.
1997     * Removed the whole FIFO code and replaced it with support for
1998       (Unix Domain) Sockets(including Windows support).
2000     Windows changes:
2001     * Implemented Run command (from the build menu) under Windows.
2002     * Enabled socket code on Windows to detect a running instance.
2003     * Enabled notification if file on disk has changed under Windows.
2005     Bugs fixed:
2006     * Fixed a segfault at startup if terminal follow path setting is
2007       enabled.
2008     * Fixed clicking on error messages being dependent on the current
2009       file's directory.
2010     * Fixed a bug when clicking on a recent file got the wrong
2011       filename.
2012     * Fixed a crash when a compiler output reports an error in a blank
2013       line(can happen in LaTeX)
2014     * Fixed a crash when switching between several filetypes.
2015     * Fixed segfault when replacing tabs by spaces.
2017     Internationalisation:
2018     * New translations: cs, nl, vi.
2019     * Updated translations: de, es.
2022 Geany 0.8 (August 09, 2006)
2024         Changes:
2025         * Find in files feature added which uses the Grep tool.
2026         * Added Make object command to compile using the Make tool.
2027         * Editor notebook tabs can now be reordered by drag and drop.
2028         * Added support for back references when using regex replace.
2029         * Added a Find button to the Replace dialog to skip matches.
2030         * Greatly improved the speed of Replace all/in selection.
2031         * Scroll to 1/4 of the view when jumping to a line number.
2032         * Show messages on the status bar and in the Status window.
2033         * Preferences options for Auto-indentation and Line wrapping.
2034         * Use the mouse click position for Go to tag.
2035         * Added separate filetype_extensions.conf system file.
2036         * Added makefiles for building on Windows.
2037         * Added keyboard shortcuts for increase/decrease of line
2038           indentation.
2039         * Added functionality to uncomment code.
2040         * Encoding support
2041         * Added support for Unicode Byte-Order-Mark (BOM)
2042         * Redesigned preferences dialog.
2043         * Added Undo and Redo toolbar buttons.
2044         * New filetype: D
2045         * Added simple printing support.
2046         * Mark errors while compiling source code within Geany with
2047           indicators(small squiggly underlines)
2049         Bugs fixed:
2050         * Use the full path for files opened from the command-line.
2051         * Fixed saving a file from the unsaved file dialog.
2052         * Fixed replacing with regexes the correct matched text length.
2053         * Fixed applying virtual terminal widget settings at startup.
2054         * Fixed prepending items to the Recent files menu.
2055         * Fixed clipboard commands used in the find entry and Scribble.
2056         * Fixed wrong interpretation of syntax highlighting colours
2057         * And some more.
2059         Windows bugs fixed:
2060         * Don't add .c extension when saving with the All files filter.
2061         * Fixed a tool chooser dialog crash when path doesn't exist.
2062         * Fixed locale problems with Windows message dialogs.
2064         Internationalisation:
2065         * New translations: be, es, pt_BR, ru.
2066         * Updated translations: ca, de, pl.
2068         Documentation:
2069         * Added Scintilla keyboard commands for editing appendix.
2070         * Improved search section; added all find and go to commands.
2071         * Added section about character sets.
2074 Geany 0.7 (June 04, 2006)
2076         * user-definable keyboard shortcuts
2077         * filetype definition files can be overridden in Geany's
2078           configuration directory (please see documentation)
2079         * added filetypes Ruby and Tcl/Tk
2080         * improved build system (for Perl, Python, Ruby and others)
2081         * loading of Virtual Terminal Emulation can be disabled in the
2082           preferences dialog
2083         * new menu item "Search" with Find items from Edit menu and new
2084           item "Find Previous"
2085         * fixed the bug which let Geany crash with newer GTK versions
2086         * improved documentation: added documentation for keyboard
2087           shortcuts, the build system and filetype definition files
2088         * new translations: Catalan and Polish
2089         * many small improvements
2090         * fixed lots of bugs (please see ChangeLog for details)
2093 Geany 0.6 (April 30, 2006)
2095         * added option to place new file tabs to the right or left of
2096           the tab list
2097         * improved file open dialog
2098         * improved scrolling of the compiler output window
2099         * rewrote most of the code for compiling files, now all
2100           settings are read from filetype definition files
2101         * now, you can drag files from a file manager into Geany and
2102           they will be opened
2103         * improved handling of filenames which contain non-UTF8 chars
2104         * added user-definable comment characters to all filetype
2105           definition files
2106         * implemented folding
2107         * added file properties dialog
2108         * improved search and find dialogs
2109         * Geany now creates a FIFO, to communicate between different
2110           instances for opening files in an already running instance
2111         * added filetypes SQL and (O)Caml
2112         * many small improvements
2113         * fixed lots of bugs, including #1419473, #1422135, #1421776
2114           and #1441359
2115         * for more details read the ChangeLog
2118 Geany 0.5 (January 27, 2006)
2120         * set the Open File dialog directory to the same directory as
2121           the current file (thanks to Nick Treleaven for this patch)
2122         * fixed some bugs when opening files with non UTF-8 filenames
2123         * updated included Scintilla to version 1.67
2124         * improved auto indention, now "for (...) {" works, too
2125         * added popup menu to sidebar lists, to quickly hide them
2126         * symbol list support for filetypes LaTeX and DocBook
2127         * added .cc, .hh and .hxx extension for filetype C++
2128         * added new keywords for PHP5
2129         * added new option "Beep on errors" to disable beeping
2130         * eliminated compiler (gcc4) warnings
2131         * closed bug #1387828 and #1387839
2132         * fixed lots of bugs (please see ChangeLog for details)
2135 Geany 0.4 (December 21, 2005)
2137         * new filetype: Assembler
2138         * new filetype: Conf for configuration files
2139         * added a terminal emulation widget, needs only libvte.so at
2140           runtime, but it also runs without it, see documentation
2141         * made some general improvements to increase startup speed
2142         * changed "build with make" keyboard shortcut to Shift+F9 to
2143           avoid problems with window managers key bindings
2144         * added auto-closing [ and { brackets in LaTex-Mode
2145         * improved documentation, but it is not yet complete
2146         * improved the symbol list to categorise the tags in a tree
2147         * some new options in the preferences dialog
2148         * added popup menu to the list of open files
2149         * there are lots of other small changes made since last release
2150         * some bugfixes (please see ChangeLog for details)
2153 Geany 0.3 (November 20, 2005)
2155         * Geany now has a mailing list, for details see
2156           http://geany.uvena.de
2157         * added open files list in the left treeview widget
2158         * added toolbar button to open the color chooser
2159         * heavily improved recent files menu
2160         * added shortcut for "walking" between open documents by
2161           pressing STRG+LEFT resp. STRG+RIGHT
2162         * created template files for new files with specified filetype
2163         * added highlighting support for Python (please give feedback)
2164         * extracted all hardcoded styling definitions for all filetypes
2165           so they can be easily edited
2166         * added vertical line to mark long lines
2167         * fixed a bug that caused a segfault if configuration directory
2168           could not created
2169         * fixed a bug which prevented auto-completion from working
2170         * many minor bugfixes (see ChangeLog for details)
2173 Geany 0.2 (October 26, 2005)
2175         * improved file open dialog
2176         * improved Find dialog
2177         * powerful Replace dialog
2178         * gcc4 compilation fix
2179         * minor bugfixes
2182 Geany 0.1 (October 19, 2005)
2184         * first official release