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