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