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