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