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