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