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