Fix segfault on Tools->Reload Configuration when no documents are
[geany-mirror.git] / NEWS
blob71dce5a55c9ea514ed506cdd5512d3f5bfdd11e6
1 Geany 0.19.1 (TBA)
3     Fixes:
4     * Fix broken autocompletion after using scope completion.
5     * Fix scrolling the editor line in view (e.g. after loading a session
6       and switching document tabs).
7     * Fix using filetype extension patterns with upper case letters on
8       Windows (#3028856).
9     * Re-enable comment folding.
10     * Fix not loading plugins built against a newer API when Geany doesn't
11       provide the required version given in PLUGIN_VERSION_CHECK().
12     * Focus toolbar item when pressing Go to Line keybinding only when
13       it's not in the toolbar's drop down overflow menu (#3027454).
14     * Escape the name of the current document for markup when using
15       document name for menu items (#3038844).
16     * File Browser: Allow Find in Files when no items are selected.
17     * Fix build menu translation problems.
18     * Fix segfault on Tools->Reload Configuration when no documents are
19       open (#3037079).
20     * Fix a memory leak (thanks to Daniel Marjamäki).
21     * Use g_free instead of free (patch by Daniel Marjamäki, thanks).
23     Tweaks:
24     * Always use white background color when printing (except for text
25       with a white foreground) to save ink (#2968998).
26     * Limit build error editor indicators to 50, but parse all errors in
27       the Compiler tab (#3019823).
28     * Align notebook tab close buttons centred vertically (thanks to
29       Robux.Biz (galyuk)).
30     * Show the Project Properties build tab when choosing 'Set Build
31       Commands' when a project is open to prevent confusion with
32       non-project commands.
34     Manual:
35     * Fix wording - restarting is required for hidden prefs.
36     * Fix Grep --exclude-dir example.
39 Geany 0.19 (June 12, 2010)
41     General:
42     * Build system reworked to be much more configurable (by Lex Trotman).
43     * Use POSIX system/GNU regex engine for find & replace. This alters
44       regex syntax - we now support '?' operator and match newlines.
45     * Support adding custom filetype files.
46     * Add new command line option --list-documents to return a list
47       of currently opened documents
48     * Remove deprecated --debug flag. Please use --verbose/-v instead.
50     Interface:
51     * Add option 'System Default' for toolbar icon style and size to use
52       the GTK default value.
53     * Allow '+<number>' and '-<number>' as values for Goto Line inputs
54       to jump relative to the current line.
55     * Add preference to add new document tabs beside the current one
56       (patch by Colomban Wendling).
57     * Enable type-ahead find for sidebar symbols and documents tabs
58       (patch by Thomas Martitz).
59     * Make Ctrl-click on any notebook tab switch to the last used
60       document.
61     * Add 'Edit->Commands' menu.
62     * Add 'Edit->Plugin Preferences' menu item and keybinding.
63     * Add 'View->Editor->Color Schemes' menu (only shown if color
64       scheme files exist).
66     Prefs:
67     * Hide 'Tabs and Spaces: Hard tab width' preference - it should
68       always be 8. (Hidden setting kept in case users have modified it).
69     * Add sidebar position interface pref.
70     * Add project long line marker customisation (patch from Eugene
71       Arshinov).
73     Editor:
74     * Update Scintilla to 2.12.
75     * Add preference and support for virtual spaces.
76     * Add word part autocompletion for the current selected item when
77       pressing keybinding (default Tab) - Enter still completes normally.
78     * Remove LaTeX autocompletion from Geany's core and move it to the
79       geanyLaTeX plugin.
81     Filetypes:
82     * New filetype: Txt2Tags (patch by Eric Forgeot).
83     * New filetype: Abc (patch by Eric Forgeot).
84     * New filetype: Verilog (patch from Kelvin Gardiner).
85     * New custom filetype: Genie.
86     * Improvements in symbol parsing of PHP and Python files.
87     * Add R tagmanager symbol parser (patch by Jon Senior).
88     * Update Perl tag parser from ctags - removes support for
89       buggy local/my/our but parses constant/format/labels.
90     * Parse more VHDL tags (patch from Kelvin Gardiner).
91     * Highlight D & Java types from a global tags file.
92     * Parse Python lambda functions (patch from Colomban Wendling).
94     Keybindings:
95     * Add keybindings to switch to the sidebar's Document and Symbol list as
96       well as to the Message Window's current tab (patch by Eugene Arshinov).
97     * Add 'Remove Markers' and 'Remove Error Indicators' keybindings.
98     * Make 'Reflow block/lines(s)' keybinding use line breaking column when
99       enabled (patch by Lex Trotman).
100     * Add 'Select to previous/next word part' keybindings.
101     * Add 'Switch to Messages' focus keybinding.
102     * Add 'Move line(s) up/down' keybindings.
103     * Make Switch to Editor keybinding reshow the document statistics line.
105     Templates:
106     * Move filetype template defaults into custom file template files.
107     * Read custom file templates from system as well as user dir.
108     * Add new special template wildcard "{command:...}" to use the output
109       of a shell command in templates.
110     * Support {ob}, {cb} and {pc} to escape wildcard strings with {, }, %
111       for snippets, fileheader and file templates.
112     * Add {project}, {description} template wildcards (#2954737).
113     * Reload templates when saving a document in the templates config dir.
115     Configuration files:
116     * Support more filetypes.common folding icon styles: arrows, +/- and no
117       lines (#2935059).
118     * Support Scintilla lexer properties in [lexer_properties] filetypes.*
119       group.
120     * Add filetypes.xml asp.default.language property (Ross McKay).
122     Plugins:
123     * Classbuilder: Add support for creating PHP classes
124                     (patch by Ondrej Donek).
125     * HTMLchars: Make plugin remember whether replacement of special
126                  characters was activated.
128     Windows:
129     * Support very long build commands.
130     * Add a preference for choosing between GTK and native File Open/Save
131       dialogs (only available on Windows).
133     Internationalisation:
134     * Added translations: ast.
135     * Updated translations: de, en_GB, es, fr, gl, ja, nl, pt, ru, sl, sv,
136                             tr, vi, zh_CN.
138     API:
139     * Improve documentation contents page.
140     * Add Stash mini-library setting, pref & widget functions to API.
141     * Add plugin_configure_single() plugin symbol which is easier to
142       implement than plugin_configure().
143     * Add new plugin signals: "document-before-save", "document-filetype-set",
144       "geany-startup-complete".
145     * Add PLUGIN_SET_TRANSLATABLE_INFO macro to the plugin API so plugins' meta
146       information can be translated already in the plugin manager dialog
147       (patch by Colomban Wendling).
148     * Use full function name for GeanyFunctions function pointers. This
149       avoids naming conflicts e.g. with C++'s 'new' keyword.
150     * GeanyKeyBinding label fields can now contain underscores, which won't
151       be displayed by Geany. This saves adding near-duplicate translation
152       strings.
153     * Add GeanyKeyGroup callback support.
154     * Add more Scintilla function wrappers, foreach_dir(), foreach_str(),
155       utils_get_file_list_full(), document_get_notebook_page(),
156       editor_insert_text_block().
157     * Don't install unnecessary headers.
158     * Remove deprecated header pluginmacros.h - use geanyfunctions.h
159       instead.
160     * Deprecate documents_foreach(), use foreach_document() instead.
161     * Deprecate PLUGIN_KEY_GROUP() macro - use plugin_set_key_group()
162       instead.
165 Geany 0.18.1 (February 14, 2010)
167     Build fixes:
168     * Define G_GNUC_WARN_UNUSED_RESULT to fix build on GLib 2.8.
169     * Use AC_PATH_PROG instead of 'which' for portability (patch by Erik
170       Southworth, thanks).
172     Incompatibilities:
173     * Remove filetypes.common invert_all option - use 'Invert syntax
174       highlighting colors' pref instead (fixes #2854525).
176     Bug fixes:
177     * Fix 'Open Selected File' for unsaved new documents.
178     * Fix updating main menu accelerators after changing keybindings
179       (thanks to Lex Trotman).
180     * Fix using 'Insert date' keybinding when a custom date string has
181       not been set.
182     * Set the cursor color for the split window plugin.
183     * Remove plugin from plugin manager dialog on unloading if it no
184       longer exists or is incompatible.
185     * Fix 'Reflow block' command when at the last paragraph and there's
186       no last newline (patch by Eugene Arshinov, thanks).
187     * Fix opening filenames beginning with two dots (closes #2858487).
188     * Show Find in Files stderr output in messages window instead of
189       debug window so that invalid regex messages can be seen easily.
190     * Speed up sorting in utils_get_file_list(). This reduces the file
191       browser delay on displaying a big directory, e.g. /usr/bin.
192     * Fix a bug with not w3c compatible HTML code on export plugin
193     * Fix non-working Home and End keys on numpads.
194     * Fix loading of files on network resources on Windows.
195     * Fix wrong alignment of printed pages when page headers are disabled
196       (closes #2856822).
198     Improvements:
199     * Extend auto_latex() function to check whether an environment has
200       been closed within the next lines to avoid auto adding double
201       \end{}.
202     * Replace some icons which could cause licensing problems by icons
203       from the Rodent icon theme.
205     Filetype fixes:
206     * Parse contents of D extern{} and version{} blocks.
207     * Fix creating D interface tags properly.
208     * Parse D functions with contracts (fixes #1885480).
209     * Parse D alias statement like typedef.
210     * Improve parsing of LaTeX, PHP and Python files.
212     Documentation:
213     * Add 'Scope autocompletion' section.
214     * Add 'Tools menu items' section to explain configuration files
215       submenu, reload configuration item.
216     * Minor updates/fixes.
218     API:
219     * Add gcc commands to build a plugin to the HowTo.
221     HACKING file:
222     * Add section 'Plugin API/ABI design'.
223     * Add 'Compiler options & warnings' section.
224     * Update Style section to be clearer about code alignment and show
225       some example code.
226     * Add 'Doc-comments' plugin API subsection.
228     Internationalisation:
229     * Added translations: gl
232 Geany 0.18 (August 16, 2009)
234     General:
235     * Fix scrolling horizontally after finding a search match with the
236       search bar or Find Next/Previous which is off-screen.
237     * Remove relative/untidy path elements from filenames when opening
238       documents (#2823998).
239     * Create initial template files with proper platform-specific line
240       ending characters.
241     * Improve inserting of comment templates like File header or licence
242       notices.
244     Interface:
245     * Add 'Show Paths' documents list popup item.
246     * Add filetypes.common to 'Configuration Files' menu.
247     * Implement a graphical toolbar editor.
248     * Add 'Build' toolbar button to the default layout.
249     * Add 'Replace' toolbar button (closes #2798225).
250     * Use a more Tango like icon for 'Save All' (by Jesse Mayes, thanks).
251     * Add a popup menu for the keybinding list in the preferences dialog
252       to easily expand and collapse all groups.
254     Keybindings:
255     * Implement Most-Recently-Used document switching when pressing
256       'Switch to last used document' keybinding (Ctrl-Tab).
257     * Add 'Mark All' keybinding (Ctrl-Shift-M).
258     * Add 'Reflow lines/block' keybinding, (Ctrl-J; thanks to
259       Eugene Arshinov).
260     * Make the Scintilla keybindings 'Delete to end of line' and
261       'Go to end of display line' configurable.
262     * Switching notebook tabs now works for the currently used notebook
263       widget instead of always using the documents notebook.
265     Editor:
266     * Fix a redraw when documents were first drawn uncolourised.
267     * Delay highlighting matching braces by 100ms to speed up scrolling
268       with the arrow keys.
269     * Support 'tab indents, space aligns' style when indenting (#2789109).
270     * Add 'Autocomplete all words in document' pref; also used when forcing
271       autocompletion and there's no symbol names to show.
272     * Add 'Drop rest of word on completion' pref.
273     * Update Scintilla to version 1.79.
274     * Improve displaying and reshowing of calltips.
276     Syntax highlighting:
277     * Reload color schemes via Tools menu (thanks to Eugene Arshinov).
278     * Implement named styles support for filetypes.* using a
279       filetypes.common [named_styles] section; used as
280       "style=named_style,bold". (See the manual for details).
281     * Allow style definitions with missing fields to use the
282       filetypes.common default style's fields.
283     * Make C-like filetype styles use named styles & default background
284       color. (Anyone who wants to likewise update any other filetype's
285       styles, please let us know ;-)).
286     * Allow indentation of wrapped lines (see style 'line_wrap_indent').
287     * Add new styles 'line_height' and 'marker_mark'.
289     Filetypes:
290     * Add Markdown filetype (thanks to Jon Strait).
291     * Highlight D WYSIWYG backtick `strings` and r"strings" (#1895745).
292     * Minor improvements for filetypes: Fortran, Haxe, HTML, Lua,
293       Matlab, Pascal, Python, Tcl.
295     Tags:
296     * Read custom system global tags files from $prefix/share/geany/tags
297       (#2778923).
298     * Autocomplete scoped fields like struct members when typing '.' (and
299       also '->' or '::' in C/C++) if the language's tag parser supports it.
300     * Save field tags for C/C++ when generating a global tags file (you may
301       want to regenerate your tag files).
302     * Parse Python calltips.
303     * Show relative paths in Diff filename tags.
304     * Group reStructuredText symbol list items by scope level.
306     Plugin API:
307     * Add geanyplugin.h single include.
308     * Add plugin_signal_connect() for connecting plugin signals at
309       runtime and also for connecting to any GObject signal.
310     * Add documents_foreach(), filetypes[], documents[], utils_strdupa()
311       and various foreach_type() macros.
312     * Make GeanyDocument::file_type always be non-NULL.
314     Windows:
315     * Fix quoting the build command string on Windows (closes #2791769).
316     * Fix LaTeX view commands on Windows (part of #2807688).
317     * Expand system environment variables (%variableName%) on Windows when
318       running Build commands.
320     Internationalisation:
321     * Added translations: lb, sl, pt_PT
322     * Updated translations: ca, cs, de, en_GB, fi, fr, ja, pt_BR, ru, tr
325 Geany 0.17 (May 02, 2009)
327     Bug fixes:
328     * Fix broken selection of "Document->Set Encoding" menu items.
329     * Fix broken non-incremental search with the toolbar search entry when
330       pressing Enter (closes #2638180).
331     * Fix parsing of Make output (closes #2694479, patch by Andrea Mazzoleni).
332     * Fix crashes on quitting Geany (closes #2533990).
333     * Fix disabled Go to Tag items in the editor menu when using the
334       keyboard (#2780044).
335     * Prevent crashes when two or more top level items in the symbol
336       list have the same name (closes #2778246).
338     Prefs:
339     * Add an option to set an additional plugin lookup path.
340     * Add a hidden preference 'use_safe_file_saving'. This has serious side
341       effects, please read the documentation before enabling this.
343     Interface:
344     * Add 'Send Selection to Terminal' command to the Edit->Format menu.
345     * Change the background colour of the search entries in the Find
346       and Replace dialogs according to the search results.
347     * Add 'Close Other Documents' and 'Close All' menu items to the tab bar
348       menu.
349     * Add an option to allow appending the toolbar to the main menu bar
350       to save some vertical space.
351     * When a project is loaded, replace the project base path with the
352       project name in the Documents sidebar for parent items (closes #2723679).
353     * Make the file open dialog more compact.
354     * Ellipsize tab labels and some status messages for very long
355       filenames (closes #2777348).
356     * Add new toolbar element: Print (patch by Roland Baudin).
357     * Remember the active sidebar page between sessions.
358     * Add "Recent Projects" menu to the Project menu (#2728630,
359       patch by Elias Pschernig).
360     * Add Tools->Configuration Files item for snippets.conf.
362     Filetypes:
363     * Fix wrong Fortran 90 comment characters when inserting templates.
364     * Add filetype ActionScript (patch by Chris Macksey).
365     * Fixes for CSS, Fortran and Ruby parsers.
366     * Add a trivial symbol parser for NSIS files.
368     Windows:
369     * On Windows, change the working directory to the Geany installation
370       path at startup to avoid unwanted directory locking(closes #2626124).
371     * Fix window positioning on startup.
372     * Make build commands on Windows run synchronously to avoid problems
373       with reading build commands' output.
375     Plugins:
376     * HTMLchars: Extend plugin by bulk replace and replace on
377       input for special characters to their HTML entities.
378     * Splitwindow: Add keybindings for the split actions.
379     * VCDiff: Remove plugin from Geany. Use GeanyVC instead.
381     Plugin API:
382     * Deprecate sci_get_text(), sci_get_selected_text() and
383       sci_get_text_range().
384     * Add sci_get_contents(), sci_get_contents_range() and
385       sci_get_selection_contents() as replacement functions to provide
386       an easier and cleaner API (initial patch by Frank).
387     * Make GEANY_FILETYPES_NONE = 0, sort filetype IDs randomly (so we can
388       append new filetypes without breaking the ABI); add
389       filetypes_by_title sorted list to GeanyData.
391     Documentation:
392     * Describe how to build Geany using the Waf build system.
394     Internationalisation:
395     * Updated translations: be, cs, de, es, fi, fr, hu, ja, pt_BR, ru,
396       sv, tr, zh_CN
399 Geany 0.16 (February 15, 2009)
401     Bug fixes:
402     * Fix indenting for Tabs & Spaces mode when inserting snippets.
403     * Fix snippets and smart indent using too much indentation when the
404       line contains whitespace after non-whitespace characters (#2215044).
405     * Fix segfault when showing Find in Files dialog when no documents are
406       open (#2228544).
407     * Fix not switching to 2nd last used document when the last used
408       document has been closed (#1945162).
410     General:
411     * Group child tags by their parents in the symbol list for C-like
412       filetypes, Python, Conf (thanks to Conrad Steenberg).
413     * Use a tree for the Documents sidebar, grouped by path.
414     * Add 'Tools->Configuration Files' menu with items to open
415       filetype_extensions.conf and ignore.tags. These files are also
416       reloaded automatically when saved.
417     * Change configuration directory path to $XDG_CONFIG_HOME/geany
418       (most often this is ~/.config/geany).
419     * Allow to specify files on the command line and from remote instances
420       to be URIs (local and with GIO also remote URIs).
421     * Increase minimum required GTK version to 2.8.
423     Prefs:
424     * Add Project Indentation prefs, which override the Editor
425       Preferences dialog options. For new projects, these default to
426       the editor indent prefs.
427     * Add an interface pref for whether to hide additional widgets when
428       double-clicking on document notebook tabs (off by default).
429     * Add a preference to invert all colours for syntax highlighting.
430     * Add a hidden preference "allow_always_save" to make the Save buttons
431       and menu items always sensitive.
433     Interface:
434     * Rework the toolbar: now all elements can be added/removed/reordered
435       using a simple XML file.
436     * Add new toolbar buttons for Cut, Copy, Paste, Delete, Preferences,
437       Close All and Build (including a submenu for Make actions).
438     * Add a progressbar widget to the statusbar to show progress for time
439       consuming actions.
441     Editor:
442     * Make Ctrl-click go to matching brace if there's no current word.
443     * Make Shift+Mouse wheel scroll the editor view horizontally.
444     * Make the 'Mark' button for Find highlight the results with rounded boxes
445       instead of marking the whole line.
446     * Add auto-closing of braces, brackets and quotes (Guillaume de Rorthais).
447     * Support multiple %cursor% wildcards in Snippets (Thomas Martitz).
449     Filetypes:
450     * Add new filetypes Ada, CMake, Matlab, NSIS, Vala and YAML.
451     * Update HTML character entities (thanks to Tyler D'Agosta).
452     * Parse restructuredText sections in the order of first-used underline
453       character, which can now be any punctuation character (as per the spec).
454     * Remove GTK global tags, replace them with C (C99) tags. The GTK tags
455       file is still available for download on the website.
456     * Minor improvements for filetypes CSS, Fortran, FreeBasic, HTML, Tcl
457       and Vala.
459     Windows:
460     * Improve tab close icon size.
461     * Changes to the Windows installer:
462       - The full installer now includes the GTK 2.14 runtime environment.
463       - Register ".geany" as Geany Project File extension.
464       - Install GTK translation files only if installation of translation
465         files were requested (saves about 22 MB otherwise).
466       - Support silent installations.
468     Plugins:
469     * Add Split Window 'Split Vertically' command (thanks to Moritz Barsnick).
470     * Make Version Diff plugin set the indent type for diffs based on the
471       current file's indent type.
472     * Minor improvements to the filebrowser plugin
474     Plugin API:
475     * Generate plugin API header geanyfunctions.h containing macros to
476       avoid having to type the function pointer names manually.
477     * Deprecate pluginmacros.h in favour of geanyfunctions.h.
478     * Add "editor-notify" to the plugin API.
479     * Add new plugin symbol plugin_help() which is called by Geany when the
480       plugin should show its documentation (if any, symbol is optional).
482     Documentation:
483     * Update Scintilla regular expression info for v1.77 (character
484       classes, ASCII escaping, character sets containing square
485       brackets peculiarities). Adapted from SciTE doc.
486     * Complete 'Hello World' Plugin Howto.
488     Internationalisation:
489     * Updated translations: bg, ca, cs, de, en_GB, fr, hu, it, ja,
490       pt_BR, sv, ru, tr, vi, zh_CN
493 Geany 0.15 (October 19, 2008)
495     General:
496     * Add Previous Message, Previous Error commands (thanks also to Beau
497       Barker).
498     * Add 'Close Other Documents' File menu command (#1976724).
499     * Add Find Document Usage popup menu command & keybinding.
500     * Check that the current file is still on disk (as well as checking the
501       modification time).
502     * Add support for custom file templates (found at startup) in the
503       ~/.geany/templates/files directory, shown underneath filetype templates
504       in the New with Template menu.
505     * Make socket open command support filename:line:column syntax.
506     * Add filetypes.* [build_settings] key 'error_regex' to support custom
507       error message parsing using a GNU-style extended regular expression.
508     * Allow loading projects from command line (#1961083).
509     * Add alternative build system: Waf.
510     * Add Tools menu item to reload configuration data without a restart.
511     * Add support to use template wildcards in snippets.
512     * Increase LSB compliance.
514     Prefs:
515     * Make disk check timeout configurable (zero disables disk checks).
516     * Add search pref: 'Use the current file's directory for Find in Files'
517       (#1930435).
519     Interface:
520     * Make keyboard shortcuts dialog non-modal (#1999384).
521     * Add a debug messages window to easily view debug messages/warnings.
523     Editor:
524     * Update Scintilla to version 1.77 (includes many fixes).
525     * Add basic Line Breaking option in the Document menu and 'Line breaking
526       column' editor pref (for now only works when typing characters past
527       the line breaking column number).
528     * Don't colourise any documents until they need to be drawn (this
529       should make opening a session faster for filetypes that support typename
530       highlighting).
531     * Make Ctrl-click on a word perform Go to Tag Definition.
532     * Add 'Max. symbol name suggestions' autocompletion pref.
533     * Show ellipsis (...) item when there are too many symbol names for
534       autocompletion.
535     * Highlight matching brace indent guides (thanks to Jason Oster;
536       #2104099).
537     * Show brace indent guides on empty lines when appropriate (thanks to
538       Jason Oster; #2105982).
539     * Add 'Tab key indents' pref, on by default.
540     * Implement soft tabs support (#1662173). There's now a 'Tabs & Spaces'
541       Indent Type, and separate Width, Hard Tab Width indent prefs. (Thanks
542       to Joerg Desch for explaining how it needed to work).
543     * Auto-update the line margin width as lines are added (thanks to Jason
544       Oster; #2129157).
545     * Add "Replace spaces by tabs".
547     Windows:
548     * Install plugins into lib/ not into plugins/.
549     * Install Geany's message catalogs into share/locale rather than
550       lib/locale as GTK does since 2.12.2.
552     Keybindings:
553     * Add Go to Start/End of Line keybindings (#1996175).
554     * Add 'Switch to Compiler' keybinding (useful when checking build
555       progress).
556     * Add keybindings for Line wrapping, Line breaking, Toggle fold and
557       Replace Spaces by tabs, Previous/Next word part.
559     Filetypes:
560     * Add OpenGL Shader Language (GLSL) filetype (thanks to Colomban
561       Wendling; #2060961).
562     * Add R language filetype (thanks to Andrew Rowland; #2121502).
563     * Split filetype Fortran into Fortran 77 and Fortran 90.
564     * Add Gettext translation filetype (#2131985).
565     * CSS improvements, thanks to Jason Oster.
567     Embedded Terminal:
568     * Fix hang when restarting the VTE (#1990323) with VTE 0.16.14.
569       (Note that with VTE 0.16.14 the reset sometimes leaves a blank
570       terminal, but pressing enter makes it then behave as normal).
572     Plugins:
573     * Add Split Window plugin (should work OK for viewing; full editing
574       support is not implemented yet).
575     * Merge InstantSave, AutoSave and BackupCopy plugins into the new
576       plugin 'Save Actions'.
578     Documentation:
579     * Add Tips and Tricks appendix.
580     * Updated Installation section.
581     * Update 'Build system' for custom error regexes.
582     * Add a section for internal plugins.
584     Plugin API:
585     * Many changes; see the API documentation (make api-doc) and the
586       geany-devel list archives.
587     * Deprecated: plugin_fields, plugin_info symbols.
589     Internationalisation:
590     * New translations: ko, tr.
591     * Updated translations: be, ca, de, en_GB, fi, hu, it, ja, pl,
592       ro, ru, sv, zh_CN
595 Geany 0.14 (April 19, 2008)
597     General:
598     * Don't beep when using Replace All in Session unless all open files
599       have no replacements (fixes #1893796).
600     * Only use filetype detection after Save As, not on every save when the
601       filetype is None (fixes #1891778).
602     * Make Go to Tag commands look for the tag in the current document
603       before searching the workspace.
604     * Check file on disk for changes also when pressing a key.
605     * Ignore documents with no absolute path when saving session files.
606     * Fix segfault with Run command when a project is open and the current
607       file's filetype has no run command.
608     * Make Next Error and Next Message commands add positions to the
609       navigation queue, so the user can move backwards through the list items
610       and return to where they were.
611     * Make pressing escape in the sidebar focus the editor.
612     * Make navigation queue position based to restore the line and column when
613       returning to a previous position (closes #1936927).
614     * Save sorting order of the symbol list when saving a file (fixes #1917262).
615     * Improve "Send Selection To" code (fixes #1909452).
616     * Install header files and add a pkg-config file for external plugins.
617     * Use monospace font for text entry fields in search dialogs (#1907117).
618     * Don't open zero byte sized files read-only (e.g. files in /proc).
620     Filetypes:
621     * Improve Makefile parser to detect targets.
622     * Update PHP tags file to latest PHP API docs (closes #1888691).
623     * Add translucency settings to filetypes.common for semi-transparency.
624     * Add HTML parser to get h1, h2, h3 symbols as well as link anchors and
625       JavaScript functions (fixes #1896068).
626     * Update Javascript, Tcl and Assembler parser.
628     Interface:
629     * When closing a tab when using left-to-right tabs, focus the next
630       document, not the previous.
631     * Move Load Tags item from File to Tools menu.
633     Editor:
634     * Don't scroll the editor view if it is unnecessary when using Find
635       Next/Previous, Find Selected, incremental search, Go to Marker or Go to
636       Matching Brace commands.
637     * Fix bug with showing macro list items all on one line.
638     * Fix Python auto-indentation when line endings are set to CR/LF.
639     * Unfold hidden code when the fold point modified (fixes #1923350).
640     * Update Scintilla to version 1.76.
641     * Add (basic) column mode editing (patch by "chuck").
643     Windows:
644     * Replace untitled file header filename after Save As and add to recent
645       files on Windows too.
646     * Resolve Windows shortcuts when opening files.
647     * Fix modal dialog problems on Windows by not setting taskbar hint
648       (closes #1916994).
649     * Add new process spawning implementation. This makes the VCdiff plugin
650       to work on Windows (patch by Pierre Joye, thanks).
651     * Fix crash on Windows when a project could not be opened.
653     Plugins:
654     * Add configurable plugin keybindings support.
655     * Add a HTML Characters keybinding to show the dialog.
656     * Add File Browser keybindings to focus the Path Entry and File List
657     * Rename VCDiff plugin Version Diff.
658     * When quitting, remember plugin filenames that couldn't be loaded at
659       startup as well as active plugins.
661     Plugin API:
662     * Add PLUGIN_KEY_GROUP and keybindings_set_item() to setup a keybinding
663       group.
664     * keybindings_send_command() arguments have changed because of
665       keybinding groups - this breaks the API for plugins already using it.
666     * Make VERSION_CHECK deprecated in favour of PLUGIN_VERSION_CHECK.
668     Documentation:
669     * Add descriptions for several options in the preferences dialog
670       (patch from Robert McGinley).
672     Internationalisation:
673     * New translations: ro.
674     * Updated translations: bg, de, en_GB, es, fr, hu, it, ja, pt_BR, ru.
677 Geany 0.13 (February 05, 2008)
679     General:
680     * Improve configure script and fix some compatibility issues.
681     * Add support for project session files.
682     * Add native GTK printing support (only with GTK 2.10+).
683     * Prevent execution of commands by Geany if the VTE may contain any
684       text on the prompt (thanks to "Jeff Pohlmeyer for reporting).
685     * Store more document-related settings when saving session in the
686       configuration file (including the file encoding).
687     * Detect in-file specified file encoding by scanning the file using
688       regular expressions.
689     * Add binary relocation support.
691     Filetypes:
692     * Add configurable default file extension setting for filetype
693       definition files.
694     * Fix reST autocompletion.
696     Tags:
697     * Show arrays and modifiers like const in calltip return types for
698       C-like files.
699     * Update C global tags file for GTK+ 2.12.
700     * Fix parsing the correct D class name when inheriting, D constructor
701       tags and ignore D import statements.
702     * Remove unnecessary tagmanager status file.
703     * Improve PHP, Ruby and FreeBasic parsers.
705     Interface:
706     * Add 'Indent Type' option in the Document menu.
707     * Add 'Detect from file' Editor indentation pref.
708     * Show TAB or SP for current document's indent type.
709     * Add a 'Newline strips trailing spaces' pref (thanks to Catalin
710       Marinas).
711     * Add 'Strip Trailing Spaces' document menu item.
712     * Add combo box input history for 'Make Custom Target' dialog.
713     * Make Open, Save As dialogs start in project base path (or default
714       path pref) when the current file has no filename.
715     * Add 'Make in base path' project file preference.
716     * Make 'Open Selected File' first try the current file's directory,
717       falling back to the project base path if no file was found.
718     * Fix broken window maximization.
719     * Improve appearance of used treeviews and use rules hints to respect
720       user colour settings.
722     Editor:
723     * Fix hidden lines after deleting a line that is a collapsed fold
724       point.
725     * Make Fold All/Unfold All attempt to scroll the current line in view.
726     * Show line wrap symbol at start of line for wrapped lines.
727     * Allow scrolling past end of document, so the user can append text
728       with the last lines drawn at the top of the view.
729     * Rename "Construct autocompletion" to "Snippets".
730     * Improve usage of "Unfold all children" option.
731     * Update Scintilla to version 1.75.
733     Keybindings:
734     * Add configurable keybindings for Cut, Copy and Paste.
735     * Ask the user whether to override an existing keybinding when setting
736       a combination that is already in use.
737     * Add 'Override Geany keybindings' VTE prefs dialog option (replaces
738       hidden pref), which makes the VTE interpret all keyboard shortcuts
739       except focus group keybindings.
741     Plugins:
742     * Add File Browser sidebar plugin.
743     * Add Version Control Diff plugin (VC Diff), which supports SVN, CVS and
744       GIT (thanks to Yura Siamashka).
745     * Add plugin manager dialog to select plugins to load at startup and to
746       call a plugin configure dialog.
747     * Add new signals: project_open, project_save, project_close.
748     * Add Auto Save plugin.
750     Plugin API:
751     * Add keybindings_send_command() and some other functions.
752     * Add pluginmacros.h to define common macros for app, p_utils, etc.
753     * Add more documentation/comments to demoplugin.c.
754     * Add configure symbol for plugins which is called by Geany when a
755       configure dialog for the plugin is requested, optionally.
756     * Add author field to plugin info struct.
758     Windows:
759     * Enable build support.
760     * Prevent prefs dialog being hidden after using the prefs file dialog.
761     * Create Geany's configuration directory in user's appdata path
762       instead of the default home directory.
764     Documentation:
765     * Show default shortcuts in Keybindings section.
766     * Update Project section for project-based session support.
767     * Add Indentation subsection under Editor section.
768     * HACKING: Update 'Adding a filetype' section.
770     Internationalisation:
771     * New translations: ja, uk, el.
772     * Updated translations: ca, de, en_GB, fr, it, pt_BR, hu, sv, vi.
775 Geany 0.12 (October 10, 2007)
777     Bugs fixed:
778     * Fixed opening the same file twice from the message window/command-line.
779     * Fixed Ctrl-Shift keybindings not working when caps lock is on.
780     * Fixed saving the wrong document when using Save All with unnamed
781       documents.
782     * Fixed replacing with '^' or '$' regex chars.
783     * Fixed hang with Find All/Find Usage with '^' or '$' regex chars.
784     * Fixed hang when replacing all '[ ]*' regex matches (closes #1757748).
785     * Fixed displaying error indicators with Make after entering a
786       subdirectory.
787     * Fixed a possible segfault when parsing tags (a vString bug).
788     * Fixed clipboard problems with some applications.
789     * Fixed crash when trying to open the Save As dialog on Windows.
790     * Fixed crash when saving a file after setting encoding "None".
791     * Fixed scrolling bugs when searching text and the cursor is outside of
792       the current visible area.
794     Filetypes:
795     * Added reStructuredText filetype and parser.
796     * Added Haskell tags support (thanks to Peter Strand).
797     * Added decorator styling for Python.
798     * Parse Python global variables and class variables.
799     * Added support for Java Apache Ant compiler error messages (thanks to
800       Jon Senior).
801     * Added new filetypes CSharp and FreeBasic.
802     * Added filetype Haxe (patch by blackdog, thank you).
804     Plugins:
805     * Added basic plugin support (developers: see the HACKING file).
806     * Added 'Enable plugin support' preference and -p, --no-plugins options.
807     * Added Class Builder plugin (thanks to Alexander Rodin).
808     * Added Export plugin to export current file as HTML or LaTeX.
810     Keyboard shorcuts:
811     * Common bash Ctrl-[a-z] keyboard shortcuts now work when the VTE is
812       focused, and there is an 'enable_bash_keys' hidden preference.
813     * Added 'Move document left' and 'Move document right' keybindings.
814     * Added Find keybinding.
815     * Made fixed keybindings overridable.
816     * Added fixed keybindings for switching to leftmost/rightmost document,
817       Ctrl-Shift-{PageUp,PageDown}.
818     * Change Previous/Next Paragraph fixed commands to Ctrl-{Up,Down};
819       adding Shift extends selection by paragraph. (Scroll by line is now
820       Alt-{Up,Down}).
821     * Made pressing escape focus the editor when using incremental search
822       or Goto Line toolbar fields.
823     * Added keybinding for select current paragraph.
824     * Added keybindings for smart indent and indent/deindent by one space.
825     * Removed convert to lower-/upper-case keybindings.
826     * Added toggle case keybinding and change shortcut to Ctrl-Alt-U.
828     General:
829     * Added preference for 'smart' home key behaviour (thanks to Jeff
830       Pohlmeyer).
831     * Added symbol list icons (thanks to Jean-François Wauthy, and KDevelop
832       for the icons).
833     * Added 'Current chars' indentation mode (closes #1726880).
834     * Save and restore the current notebook page when quitting.
835     * Added support for %e, %f in project run command.
836     * Ignore punctuation chars when moving by word, and use word end
837       boundaries when moving by word to the right (like most GTK+ widgets).
838     * Added hidden editor preference 'use_gtk_word_boundaries'.
839     * Added auto_complete_whilst_editing hidden preference.
840     * Speed up Save All for C-like files.
841     * Don't show file opened/saved/closed messages on the status bar.
842     * Added --no-preprocessing, -P option when generating tags files to
843       disable preprocessing of C/C++ source files.
844     * Added default startup directory option (closes #1704988).
845     * Use current locale as default encoding for new files.
846     * Added simple code navigation (thanks to Dave Moore).
847     * Re-maximize the main window on startup when closed in maximized state
848       (closes #1730369).
849     * Added auto focus (to auto focus widgets below mouse cursor).
850     * Complete rewrite of auto completion to make it user-definable and
851       much more flexible (please read documentation).
852     * Added option to set a default encoding when opening files and disable
853       auto detection of the file encoding.
854     * Improved comment toggling by adding an additional character to mark.
855     * Changed the background colour of the search bar in the toolbar
856       according to the search result.
857     * Use intltool to make geany.desktop translatable
858     * Replace Geany's icon by a new one by Sebastian Kraft (thanks).
859     (Thanks also to Christoph Berg for updating the icon code).
861     Docs:
862     * Changed documentation generation tools from DocBook to reST
863       (thanks to John Gabriele for his great work on this).
864     * Added Plugins section.
865     * Added 'Inserting unicode characters' Editing section (thanks to
866       John Gabriele).
867     * Added 'Hidden preferences' appendix.
868     * Added 'Switching documents' keybindings section.
870     HACKING:
871     * Added notes on adding a filetype.
873     Internationalisation:
874     * New translations: en_GB.
875     * Updated translations: ca, cs, de, es, fi, fr, hu, it, pl, pt_BR, zh_CN.
878 Geany 0.11 (May 21, 2007)
880     Notes for existing users:
881     * Tab is now used for construct completion (for, if, etc.), but it
882       is configurable with the new 'Complete construct' keybinding.
883     * Template files are now stored in ~/.geany/templates/ and the
884       'template.' filename prefix is no longer used. You will need to
885       move any custom template files you have.
886     * Inserting a file header is now optional for filetype templates.
887       Use the string '{fileheader}' to mark where the file header should
888       be placed.
889     * Drag'n'Drop of text inside the editor widget will now move the
890       text instead of copying it.
892     Bugs fixed:
893     * Fix segfault when pressing Ctrl-Enter when there are no workspace
894       tags.
895     * Remove error indicators in all documents when linking (#1705374).
896     * Sort symbol list tags also by line number (#1703575).
897     * Fix #1717418, Hang on SQL file load.
898     * Fix #1718532 - Crash when opening a special HTML file.
899     * Add workaround for PHP closing brace de-indenting.
900     * Fix reloading of read-only documents.
902     Project Management:
903     * Add keybinding to show project properties dialog.
904     * Add project Run command support.
905     * Run Make All and Make Custom from the project base directory.
907     Custom Global Tags:
908     * Update C global tags for GTK+ 2.10 and it's dependencies.
909     * Add option --generate-tags (-g) to generate a global tags file
910       from a list of source files (see docs).
911     * Load global tag files stored in ~/.geany/tags at startup #.
912     * Add Load Tags command in the File menu #.
913     # This is not supported for Pascal, PHP or LaTeX files yet.
915     Calltips (for C-like files):
916     * Show up and down arrows when there are multiple calltip matches.
917     * Show classname in calltips.
918     * Parse pointers in function return type.
919     * Add calltip support for D constructors.
921     Other changes:
922     * Parse 'Entering directory' Make messages so opening files from
923       error messages works for subdirectories (thanks to Josef Whiter).
924     * Make Go to Tag Definition/Declaration work for all tags.
925     * Support filetype templates for all filetypes (see docs).
926     * Make file header optional for filetype templates.
927     * Add 'Find Selected' and 'Find Prev Selected' search commands and
928       keybindings (thanks to Jeff Pohlmeyer).
929     * Add Mark button to the Find dialog, and a Remove Markers item to
930       the Document menu.
931     * Add 'Recurse in subfolders' and 'Extra options' checkboxes to the
932       Find in Files dialog.
933     * Add 'Switch to last used document' keybinding (Ctrl-Tab).
934     * Add Goto Previous/Next Marker keybindings (Ctrl-, and Ctrl-.).
935     * Add Toggle Marker keybinding (Ctrl-M).
936     * Add keybinding for construct completion, and set the default to
937       Tab.
938     * Add MimeType associatiations for: C++ header, Pascal, Perl,
939       Python, httpd-PHP and XML files (thanks to Iñaki Rodriguez).
940     * Add brace indenting support for Perl and Tcl.
941     * Make backspace unindent when using spaces for indentation.
942     * Wrap notebook pages when switching tabs.
943     * Speed up loading multiple C-like files slightly.
944     * New filetypes: JavaScript, Lua and Haskell.
945     * Set several widget names to allow users to define custom styles
946       in .gtkrc-2.0.
947     * Add context actions to run custom commands on current selection
948       or the current word below cursor.
949     * Add different auto indention modes.
950     * Improve replacing in rectangle selections.
951     * Add custom commands to send selected text through some definable
952       commands and replace the selection with the output.
953     * Add command line option --column to allow setting the initial
954       column for the first opened file on command line.
955     * Improve the auto scrolling of documents.
956     * Improve loading of the VTE library.
957     * Add an option for using spaces or tabulators when inserting some
958       whitespace.
959     * Add an option to disable Drag'n'Drop in the editor widget.
961     Documentation:
962     * Add Project Management, Global Tags, Construct Completion
963       sections.
964     * Add Bookmarks section (thanks to John Gabriele).
965     * Update Filetype Templates, Search sections.
967     Internationalisation:
968     * New translations: bg.
969     * Updated translations: ca, cs, de, es, fr, zh_CN.
972 Geany 0.10.2 (February 25, 2007)
974     Bugs fixed:
975     * Fixed serious crash of complete X session when using the Stop
976       command when Geany is run from the program menu (closes #1668017).
979 Geany 0.10.1 (February 23, 2007)
981     Bugs fixed:
982     * Wrong tab foreground colour for unmodified documents.
983     * Fixed crashes when closing dialogs by clicking X on some systems.
984     * Fixed missing global tags for C files when a C++ source file was
985       loaded first.
986     * Fixed autocompletion missing tag matches.
987     * Fixed a wrong PASCAL autocompletion.
988     * Set single undo action when toggling multiple lines or stripping
989       trailing spaces.
990     * Prevent some possible invalid memory reads.
991     * Convert config, application and documentation dir paths to locale
992       encoding before using it.
993     * Fixed errors when changing directories containing special
994       characters within the VTE component (thanks to Jeff Pohlmeyer).
995     * Support newer so-names when loading the VTE library (thanks to
996       Jeff Pohlmeyer).
997     * Fixed paste problems on Windows.
998     * When using Save As the returned filename needs to be converted
999       into UTF-8.
1000     * Fixed error when parsing of compiler errors by the va_list system.
1001     * Added MimeType entry as suggested by Nick Schermer.
1002     * LaTeX parser: Allow \section*{} and other commands with *.
1003     * Change default keybinding for Close All to Ctrl-Shift-W.
1004     * Allow Make for files with no extension - prevent Build when the
1005       output filename would be the same as the source file.
1006     * Ensure the VTE visual settings are applied when switching to VTE
1007       when the Message Window is hidden.
1008     * Fixed several issues while opening files and improved code.
1009     * Improved the auto scrolling of documents and fixed a bug when
1010       opening files remotely.
1011     * Fixed wrong D function return type after a class definition.
1012     * Added several missing style types for filetype Perl (thanks to
1013       John Gabriele for reporting).
1014     * Prevent right click in Symbol list from selecting a tag.
1015     * Update the symbol list when starting a new document.
1016     * Scroll Compiler and Messages window in view when using Next Error
1017       or Next Message.
1018     * Auto close brackets only when auto completion of constructs is
1019       enabled (closes #1665015).
1020     * Fixed switching to the wrong tab when showing the unsaved dialog.
1022     Internationalisation:
1023     * New translations: fi (thanks to Harri Koskinen).
1024     * Updated translations: cs, de, es, fr, hu.
1027 Geany 0.10 (December 21, 2006)
1029     Changes:
1030     * Added a dialog to insert HTML special characters.
1031     * Added new command line option --line to set the initial line for
1032       the first opened file.
1033     * Implemented new, own Undo system to undo/redo encoding changes.
1034     * Added simple parser for filetype Diff to create tags for each
1035       patched file in a diff file.
1036     * Added new encoding "None" to open files without any character
1037       conversions.
1038     * Added Stop button to abort the Run command.
1039     * New filetype VHDL.
1040     * New scintilla lexer for filetype D with several improvements.
1041     * Improved auto completion of multi line comments
1042     * Added option to execute programs in the VTE instead of executing
1043       them in a terminal emulation window
1044     * Removed the limit on the number of files open.
1045     * Save the build includes and arguments when quitting.
1046     * Added Next Message search command and Next Error build command.
1047     * Make search bar automatically wraparound if necessary.
1048     * Applied patch from Bob Doan to prevent unnecessary search
1049       scrolling and add a preference to suppress some of the search
1050       dialogs.
1051     * Added Find Previous, Find All in Document/Session buttons for the
1052       Find dialog.
1053     * Added Replace (but don't Find) button for the Replace dialog.
1054     * Added 'Hide Message Window' popup menu command.
1055     * Added Alt-[1-9] shortcuts to switch to a certain tab number.
1056     * Limit search dialog history to 30 entries.
1057     * Change python default compile command to create a compiled
1058       python .pyc file (thanks to Bajusz Tamás).
1060     Windows changes:
1061     * Fix #1611530 'file has changed' message on Windows after saving.
1062     * Fixed wrong paste behaviour under Windows with some applications.
1064     Bugs fixed:
1065     * Fixed crash when using "Make object" on new files.
1066     * Fixed incompatible use of read command in the created shell
1067       script to execute programs.
1068     * Fixed wrong insert position when the cursor was moved by keyboard
1069       and comments, includes or a date was inserted.
1070     * Fixed some segfaults when inserting comments, dates and
1071       includes at a position prior to some deleted text.
1072     * Fix message window horizontal scrollbar being too tall on some
1073       systems (thanks to Rob van der Linde).
1075     Internationalisation:
1076     * New translations: fr, hu, it, zh_CN, zh_TW.
1077     * Updated translations: be, ca, cs, de, es, vi.
1080 Geany 0.9 (September 29, 2006)
1082     Changes:
1083     * Added function calltips for files open in the current workspace
1084       for C-like languages.
1085     * Open a second instance by default when starting Geany with no
1086       filenames specified on the command-line.
1087     * Added better error message support for D, for both DMD and GDC;
1088       also GCC-style linker error messages are now parsed.
1089     * Text selections now use syntax highlighting foreground colours
1090       (but can still be overridden in filetypes.common).
1091     * Find in Files improvements: fixed string and whole word only
1092       matching options; a directory selector dialog; filenames passed
1093       to Grep are now sorted alphabetically.
1094     * Remember the VTE current directory at startup.
1095     * Show the messages window on build failure or for Find Usage.
1096     * Added -s command-line option to not load session files (-i is now
1097       used to force a new instance).
1098     * Added comment toggle functionality to easily comment and
1099       uncomment a line with one shortcut.
1100     * Separated filetypes PHP and HTML for better usage.
1101     * New filetypes: Diff, Fortran 77 and Ferite.
1102     * Added auto completion tags for PASCAL.
1103     * Improved VTE usage by adding options for selecting the used shell
1104       and ignoring menu bar accelerator (default F10).
1105     * Added menu items to insert configurable date/time strings.
1106     * Removed the whole FIFO code and replaced it with support for
1107       (Unix Domain) Sockets(including Windows support).
1109     Windows changes:
1110     * Implemented Run command (from the build menu) under Windows.
1111     * Enabled socket code on Windows to detect a running instance.
1112     * Enabled notification if file on disk has changed under Windows.
1114     Bugs fixed:
1115     * Fixed a segfault at startup if terminal follow path setting is
1116       enabled.
1117     * Fixed clicking on error messages being dependent on the current
1118       file's directory.
1119     * Fixed a bug when clicking on a recent file got the wrong
1120       filename.
1121     * Fixed a crash when a compiler output reports an error in a blank
1122       line(can happen in LaTeX)
1123     * Fixed a crash when switching between several filetypes.
1124     * Fixed segfault when replacing tabs by spaces.
1126     Internationalisation:
1127     * New translations: cs, nl, vi.
1128     * Updated translations: de, es.
1131 Geany 0.8 (August 09, 2006)
1133         Changes:
1134         * Find in files feature added which uses the Grep tool.
1135         * Added Make object command to compile using the Make tool.
1136         * Editor notebook tabs can now be reordered by drag and drop.
1137         * Added support for back references when using regex replace.
1138         * Added a Find button to the Replace dialog to skip matches.
1139         * Greatly improved the speed of Replace all/in selection.
1140         * Scroll to 1/4 of the view when jumping to a line number.
1141         * Show messages on the status bar and in the Status window.
1142         * Preferences options for Auto-indentation and Line wrapping.
1143         * Use the mouse click position for Go to tag.
1144         * Added separate filetype_extensions.conf system file.
1145         * Added makefiles for building on Windows.
1146         * Added keyboard shortcuts for increase/decrease of line
1147           indentation.
1148         * Added functionality to uncomment code.
1149         * Encoding support
1150         * Added support for Unicode Byte-Order-Mark (BOM)
1151         * Redesigned preferences dialog.
1152         * Added Undo and Redo toolbar buttons.
1153         * New filetype: D
1154         * Added simple printing support.
1155         * Mark errors while compiling source code within Geany with
1156           indicators(small squiggly underlines)
1158         Bugs fixed:
1159         * Use the full path for files opened from the command-line.
1160         * Fixed saving a file from the unsaved file dialog.
1161         * Fixed replacing with regexes the correct matched text length.
1162         * Fixed applying virtual terminal widget settings at startup.
1163         * Fixed prepending items to the Recent files menu.
1164         * Fixed clipboard commands used in the find entry and Scribble.
1165         * Fixed wrong interpretation of syntax highlighting colours
1166         * And some more.
1168         Windows bugs fixed:
1169         * Don't add .c extension when saving with the All files filter.
1170         * Fixed a tool chooser dialog crash when path doesn't exist.
1171         * Fixed locale problems with Windows message dialogs.
1173         Internationalisation:
1174         * New translations: be, es, pt_BR, ru.
1175         * Updated translations: ca, de, pl.
1177         Documentation:
1178         * Added Scintilla keyboard commands for editing appendix.
1179         * Improved search section; added all find and go to commands.
1180         * Added section about character sets.
1183 Geany 0.7 (June 04, 2006)
1185         * user-definable keyboard shortcuts
1186         * filetype definition files can be overridden in Geany's
1187           configuration directory (please see documentation)
1188         * added filetypes Ruby and Tcl/Tk
1189         * improved build system (for Perl, Python, Ruby and others)
1190         * loading of Virtual Terminal Emulation can be disabled in the
1191           preferences dialog
1192         * new menu item "Search" with Find items from Edit menu and new
1193           item "Find Previous"
1194         * fixed the bug which let Geany crash with newer GTK versions
1195         * improved documentation: added documentation for keyboard
1196           shortcuts, the build system and filetype definition files
1197         * new translations: Catalan and Polish
1198         * many small improvements
1199         * fixed lots of bugs (please see ChangeLog for details)
1202 Geany 0.6 (April 30, 2006)
1204         * added option to place new file tabs to the right or left of
1205           the tab list
1206         * improved file open dialog
1207         * improved scrolling of the compiler output window
1208         * rewrote most of the code for compiling files, now all
1209           settings are read from filetype definition files
1210         * now, you can drag files from a file manager into Geany and
1211           they will be opened
1212         * improved handling of filenames which contain non-UTF8 chars
1213         * added user-definable comment characters to all filetype
1214           definition files
1215         * implemented folding
1216         * added file properties dialog
1217         * improved search and find dialogs
1218         * Geany now creates a FIFO, to communicate between different
1219           instances for opening files in an already running instance
1220         * added filetypes SQL and (O)Caml
1221         * many small improvements
1222         * fixed lots of bugs, including #1419473, #1422135, #1421776
1223           and #1441359
1224         * for more details read the ChangeLog
1227 Geany 0.5 (January 27, 2006)
1229         * set the Open File dialog directory to the same directory as
1230           the current file (thanks to Nick Treleaven for this patch)
1231         * fixed some bugs when opening files with non UTF-8 filenames
1232         * updated included Scintilla to version 1.67
1233         * improved auto indention, now "for (...) {" works, too
1234         * added popup menu to sidebar lists, to quickly hide them
1235         * symbol list support for filetypes LaTeX and DocBook
1236         * added .cc, .hh and .hxx extension for filetype C++
1237         * added new keywords for PHP5
1238         * added new option "Beep on errors" to disable beeping
1239         * eliminated compiler (gcc4) warnings
1240         * closed bug #1387828 and #1387839
1241         * fixed lots of bugs (please see ChangeLog for details)
1244 Geany 0.4 (December 21, 2005)
1246         * new filetype: Assembler
1247         * new filetype: Conf for configuration files
1248         * added a terminal emulation widget, needs only libvte.so at
1249           runtime, but it also runs without it, see documentation
1250         * made some general improvements to increase startup speed
1251         * changed "build with make" keyboard shortcut to Shift+F9 to
1252           avoid problems with window managers key bindings
1253         * added auto-closing [ and { brackets in LaTex-Mode
1254         * improved documentation, but it is not yet complete
1255         * improved the symbol list to categorise the tags in a tree
1256         * some new options in the preferences dialog
1257         * added popup menu to the list of open files
1258         * there are lots of other small changes made since last release
1259         * some bugfixes (please see ChangeLog for details)
1262 Geany 0.3 (November 20, 2005)
1264         * Geany now has a mailing list, for details see
1265           http://geany.uvena.de
1266         * added open files list in the left treeview widget
1267         * added toolbar button to open the color chooser
1268         * heavily improved recent files menu
1269         * added shortcut for "walking" between open documents by
1270           pressing STRG+LEFT resp. STRG+RIGHT
1271         * created template files for new files with specified filetype
1272         * added highlighting support for Python (please give feedback)
1273         * extracted all hardcoded styling definitions for all filetypes
1274           so they can be easily edited
1275         * added vertical line to mark long lines
1276         * fixed a bug that caused a segfault if configuration directory
1277           could not created
1278         * fixed a bug which prevented auto-completion from working
1279         * many minor bugfixes (see ChangeLog for details)
1282 Geany 0.2 (October 26, 2005)
1284         * improved file open dialog
1285         * improved Find dialog
1286         * powerful Replace dialog
1287         * gcc4 compilation fix
1288         * minor bugfixes
1291 Geany 0.1 (October 19, 2005)
1293         * first official release