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