Save encoding in session as text
[geany-mirror.git] / NEWS
blob23f278386a9ae9697400e9009bffd2a477646680
1 Geany 1.23 (unreleased)
3     Editor
4     * Update Scintilla to version 3.2.1 (#3540469).
6     Search
7     * 'Mark All' now also uses the fully-featured PCRE engine (#3564132).
10 Geany 1.22 (June 18, 2012)
12     General
13     * Bump dependencies to GTK >= 2.16 and GLib >= 2.20.
14     * Switch to Glade 3 and dynamically loaded XML UI description.
15     * Rewrite theming support for better flexibility.
16     * Add support for opening files read-only from the command line.
17     * Always load the default session if configured to do so.
18     * Make all filetypes use named styles to simplify color scheme
19       authoring.
20     * Make 'Replace Spaces by Tabs' only match leading spaces to
21       preserve alignment.
23     Possibly incompatible changes
24     * Theming and filetype style changes mean old filetypes and color
25       schemes are not compatible with this version of Geany.
26     * There are some default keybinding changes but these will only
27       apply to newly created configurations.
28     * Changes to the "project-dialog*" signals may affect plugins.
30     Bug fixes
31     * Fix escaping of session file paths (#3425969).
32     * Fix closing when minimized under Windows (#3421282).
33     * Properly handle remote URIs received through drag 'n drop
34       (#2966770, #3479567).
35     * Fix build with bleeding-edge GLib (#3483388).
36     * Fix color scheme selection in Ubuntu Unity (#3479674).
37     * Fix very slow regex tag parsing on Windows (e.g. for HTML).
38     * Fix detecting a changed file on disk when opening from
39       the command-line (Windows).
40     * Fix quick search entry behavior on Windows.
41     * Fix keybindings conflicts check when swapping a binding.
42     * Fix comments insertion in some cases (#3449635, #3534320).
43     * Add missing Windows mio makefile.
45     Prefs
46     * Split "always wrap search and hide find dialog" pref into
47       "always wrap search" and "hide find dialog" (Dimitar Zhekov).
48     * Add Project Properties overrides for 'Saving files' prefs.
49     * Add hidden VTE preference "send_cmd_prefix" to prefix commands sent
50       to the VTE. (See the manual for details).
52     Interface
53     * Add support for switching to the last used document after closing
54       a tab (Jiří Techet).
55     * Improve the tab switching dialog for better usability (Jiří Techet).
56     * Add support for user-defined labels for 'Send Selection to'
57       custom commands.
58     * Fix sidebar width when on the right (#3514436).
59     * Use case-insensitive document list path comparison on Windows.
60     * Replace Color Schemes menu with custom dialog.
61     * Show selected line count on status bar when whole lines are
62       selected.
64     Editor
65     * Update Scintilla to version 2.29.
66     * Add a "join lines" command (Eugene Arshinov).
67     * Hide autocompletion when the only entry has been typed (#3516212).
69     Search
70     * Add full PCRE regular expressions support.
71     * Extra options passed to grep through Find in Files now follows a
72       real shell-style syntax (#3516263).
73     * Search pattern length is no longer limited to 248 characters.
74     * Fix showing Find/Replace regex compile errors on the status bar.
76     Keybindings
77     * Add Project New/Open/Properties/Close keybindings.
78     * Show overridden keybindings in bold for prefs dialog tree.
80     Tags
81     * Speed up loading of multiple global tags files.
82     * Show global tags file preprocessing errors on stderr & add
83       current directory to include path.
84     * Add C/C++ ignore.tags wildcard format 'PREFIX*'.
86     Filetypes
87     * Add support for regex-based filetype detection.
88     * C snippets no longer apply to all filetypes.
89     * Improve support for HTML embedded filetypes (#2863829, #3127598).
90     * Add filetype Objective-C (Elias Pschernig, P#3325139).
91     * Fix highlighting of ``...R"`` inside C and C++ (#3425107).
92     * Fix TCL keyword highlighting in some situations (#3432877).
93     * Parse PHP functions with multiline argument list (#3037797).
94     * Handle ``/bin/dash`` shebang (#3470986).
95     * Update JavaScript parser from CTags.
96     * Parse D class/struct/interface template bodies and template
97       blocks; ignore 'static if' expressions; parse function
98       @attributes, pure/nothrow and immutable/inout/shared return types.
99     * Fix broken tag/word autocompletion in HTML/PHP documents.
100     * Enable &entity; completion for all XML-based filetypes.
102     Plugins
103     * Split Window: show marker margin.
104     * Split Window: enable basic context menu.
106     API:
107     * document_save_file() now shows the Save As dialog when necessary.
108     * Rename signal "project-dialog-create" to "project-dialog-open" and
109       add new "project-dialog-close" signal.
110     * setptr is deprecated in favour of SETPTR.
111     * Add ui_hookup_object() and ui_lookup_object().
112     * Add ui_lookup_stock_label().
113     * Add build_{activate,get_current,remove,set}_menu_item(),
114       build_get_group_count().
115     * Add stash_group_free_settings().
116     * Add support for plugins written in C++.
118     Internationalization:
119     * Add translations: ar, id, lt, mn, nn, sk
120     * Update translations: de, es, fr, hu, it, ja, kk, lt, nl, pl, pt,
121       pt_BR, sk, sl, sv, tr, zh_CN, zh_TW
124 Geany 0.21 (October 2, 2011)
126     General
127     * Bump dependencies to GTK >= 2.12, GLib >= 2.16 and GIO.
128     * Add support for real-time symbol parsing.
129     * Remove old filetype templates support - use custom file
130       templates instead.
131     * Add support for detecting the indentation width from the file
132       content.
134     Bug fixes
135     * Fix generating tag files (-g) and --ft-names segfault.
136     * Replace dates on template insertion, not when loading templates.
137     * Fix segfault when inserting e.g. fileheader template when the
138       template file is empty (#3070913, lphilpot).
139     * Use the same indentation for all templates (Matthew Brush,
140       #3193527).
141     * Fix loading of non-UTF-8 templates.
142     * Fix completion and word completion with non-ASCII characters
143       (#3313351).
144     * Fix HTML content-type detection (#3300703).
145     * Fix pattern filtering when using Find in Files not to search in
146       sub-directories.
147     * Add a workaround to prevent Geany from crashing during loading of
148       a LaTeX-file containing linebreaks inside headings.
150     Interface
151     * Add 'Save As' toolbar button option (Matthew Brush, #3153490).
152     * Add 'Open in New Window' command in the notebook tab menu
153       (Matthew Brush, #3118059).
154     * Color schemes: use name and description for menu item and
155       tooltip (Matthew Brush).
156     * Shift-Enter in search dialog and toolbar search entries now
157       searches backwards.
158     * Improve `Set Custom Commands` dialog.
159     * Always destroy open and save dialogs after use (#3311258,
160       #3304273, #3201050, #3163742, #3153120, #2985896).
161     * Add UI to edit formerly hidden preferences (Dimitar Zhekov,
162       #3313315).
164     Editor
165     * Update Scintilla to version 2.25.
166     * Fix snippets bug: {ob}pc{cb} replaced by '%' instead of {pc}.
167     * Fix multiple snippet cursor positions for Tabs + Spaces mode.
168     * Avoid triggering autocompletion on PHP open tags (#3199442).
169     * Fix indentation brace matching (#3309606).
171     Configuration files
172     * Support copying filetype definition file group keys from a system
173       keyfile with e.g. [styling=C].
174     * Make filetype group membership configurable using [Groups] in
175       filetype_extensions.conf.
177     Search
178     * Don't auto-enable case-sensitive option when enabling regex in
179       Find/Replace dialogs.
180     * Remember Find and Replace options across restarts (Dimitar Zhekov).
182     Keybindings
183     * Add fixed shortcuts for VTE copy (Ctrl-Shift-C) and paste
184       (Ctrl-Shift-V).
185     * Add new keybinding 'Remove Markers and Error Indicators'.
187     Projects
188     * Store VTE path with the project session (Nicolas Sierro).
190     Filetypes
191     * Add Scala custom filetype (werg).
192     * Add Cython custom filetype (Matthew Brush).
193     * Add support for separate single and multiline comments.
194     * Add support for filetype-specific indentation settings (#3339420,
195       #3390435)
196     * Fix detecting Matlab and Txt2Tags extensions by default (#3167315,
197       #3154637).
198     * Fix detecting non-lowercase self-closing tags e.g. <BR> (#2226117).
199     * Highlight C# and Vala raw and verbatim strings.
200     * Improve JavaScript keyword handling and keyword lists (Jason Oster).
201     * Add filetype Cobol (Seth Keiper).
202     * Add file template for Vala (Mark Trompell).
204     Plugins
205     * File Browser: Make 'Hide object files' preference configurable with
206       file extensions.
207     * Split Window: Fix a crash when changing filetype (Matthew Brush,
208       #3255968).
209     * Split Window: Update styles when the filetype changes (Matthew
210       Brush).
211     * Split Window: Enable code folding (Matthew Brush, #3097780).
212     * Split Window: Fix issues on Windows (Matthew Brush, #2725342).
213     * Class Builder: Improve dialog UI using a table (Matthew Brush).
214     * Export: Add option to insert line numbers (#3197150).
216     Documentation
217     * Add 'Reading styles from another filetype' subsection (Matthew
218       Brush).
219     * Add 'Filenames' subsection for filetype definition files explaining
220       the filename extensions and special cases.
221     * Add section 'Filetype group membership'.
223     Plugin API
224     * Add filetypes_get_sorted_by_name(), utils_find_open_xml_tag_pos()
225       (Eugene Arshinov).
226     * Add plugin_idle_add(), plugin_timeout_add(), plugin_timeout_add_seconds(),
227       ui_menu_add_document_items_sorted(), document_compare_by_display_name(),
228       document_compare_by_tab_order(), document_compare_by_tab_order_reverse().
229     * Deprecate ui_widget_set_tooltip_text().
230     * Fix public inclusion of config.h (#3384026).
231     * Add new signal "document-reload".
233     Internationalisation:
234     * Add translations: fa
235     * Update translations: ca, cs, de, en_GB, es, fi, fr, gl, it, ja, nl, pt,
236       pt_BR, sl, sv, tr, vi, zh_CN, zh_TW
239 Geany 0.20 (January 5, 2011)
241     Fixes:
242     * Improve compatibility with GVFS using GIO to save documents (Alexey
243       Antipov).
244     * Fix crash when closing a modified document (usually without a
245       trailing newline) and choosing Save (fixes #3111058).
246     * Fix crash when using 'Send Selection to Terminal' and the VTE
247       is not loaded, and when using Ctrl-A after enabling the 'Load VTE'
248       pref (Dimitar Zhekov).
249     * Fix a slightly wrong encoding detection on Windows (#3019573).
250     * Fix issue with single-line commenting/uncommenting blocks when using
251       Windows line endings.
252     * Fix saving project indent prefs straight after using project
253       properties.
254     * Fix wrongly changing edited keybindings when cancelling the
255       Preferences dialog.
256     * Fix auto-displaying of sidebar, tab bar, symbols and documents tabs
257       when only plugin tabs are visible (fixes #3101867).
258     * Save build commands for filetype None (Lex Trotman).
259     * Waf: Check for libsocket on OpenSolaris to fix build.
261     Interface:
262     * Color build command fields light grey unless overridden (Lex
263       Trotman).
264     * Replace /home/user with ~ in the documents list (Jon
265       Strait).
266     * Display 'new instance' on title bar for 2nd instances (Eugene
267       Arshinov).
268     * Don't add duplicates to combo box histories.
269     * Reorganise Find in Files dialog and add Files pattern to filter
270       search results.
271     * Implement 'Select All' for the VTE widget.
272     * Reorganise editor popup menu for shorter size - some items were moved
273       to submenus.
274     * Move Go to Marker menu items to Search menu.
275     * Group Open dialog encoding options by submenus (Adam Ples; #3047717).
276     * Show mimetype icon in sidebar Documents list and notebook popup menu
277       (Colomban Wendling).
279     Documents:
280     * Ensure inserted templates always have proper line ending characters
281       according to the current document's preference.
282     * Add per-document indent width setting (Jiří Techet).
283     * Add 'Project->Apply Default Indentation' menu command to override
284       every document's indentation settings.
285     * Display better error messages when saving a document fails (Dimitar
286       Zhekov).
287     * Don't prompt for reloading if the document has not been edited
288       (Jiří Techet).
289     * Add Close button to the detected file changed dialog.
291     Editor:
292     * Fix wrong snippet indentation when original cursor line has
293       non-indentation whitespace (david).
294     * Fix passing quoted arguments when using 'Send Selection to'. This
295       means e.g. sed 's/\./(dot)/g' now works.
296     * Add alternative color scheme based on Python colors
297       (View->Editor->Color Schemes).
298     * Replace HTML automatic <table> tag completion with a 'table' snippet
299       (Eugene Arshinov).
300     * Auto-indent after an HTML/XML line without a closing tag (Eugene
301       Arshinov).
302     * Respect 'Smart' home key pref for Shift[+Alt]+Home (fixes #3100290,
303       Dimitar Zhekov).
304     * Scroll to the current line when moving the cursor to the next
305       cursor position in a snippet (#3139490).
306     * If the current word's tag is on the current line, make Go to Tag
307       Definition look for a tag declaration instead and vice versa.
308     * Make Reflow Lines/Block command use the current indented block, not
309       the whole paragraph (which could have mixed indentation).
311     Configuration:
312     * Load insertion templates from system path, don't create them in
313       the user's config dir.
314     * File templates are now reloaded on saving.
316     Prefs:
317     * Add 'Ensure consistent line endings' file saving pref (Manuel Bua).
318     * Add 'statusbar_template' hidden pref (Dimitar Zhekov).
319     * Add 'new_document_after_close' hidden pref to open a new document
320       automatically after closing all documents.
321     * Add hidden pref 'find_selection_type' with option to use the X
322       selection or to repeat the last search when there's no selection,
323       both off by default.
324     * Add 'gio_unsafe_save_backup' hidden pref (Lex Trotman).
325     * Add filetypes.common 'fold_symbol_highlight' color setting.
326     * Add 'symbol_list_sort_mode' per-filetype setting.
328     Keybindings:
329     * Fix Alt+[0-9] switching tabs even when other modifiers are also held.
330     * Add snippet keybinding support (Eugene Arshinov).
331     * Add 'Insert New Line Before/After Current' keybindings (Eugene
332       Arshinov).
334     Filetypes:
335     * Add Forth filetype (Thomas Huth).
336     * Add Lisp filetype (Mário Silva).
337     * Add Erlang filetype (Taylor Venable).
338     * Ada: Fix wrong comments.
339     * C++: Disable user fold points with new lexer property
340       fold.cpp.comment.explicit.
341     * Python: Update list of builtins for Python 2.6, simplify
342       Compile/Syntax Check command. Use named styles for color scheme
343       support (use alt.conf color scheme if you want the old colors).
344     * Matlab: Support Octave # comment char.
345     * Txt2Tags: add highlighting (Forgeot Eric - #3020632).
346     * Make: fix possible infinite loop in tag parser.
347     * D: Parse template functions, ignore /+ +/ comments, ignore
348       unittest blocks, add keywords 'ref', 'macro' and D2 keywords.
349     * Vala: Parse functions with contracts (#3080232).
350     * Markdown, reStructuredText and Txt2Tags: Sort tags by line number by
351       default.
352     * Basic: Parse property, constructor, destructor as functions
353       (pottersson; #2992167).
354     * HTML: Add HTML5 element names and attributes (Ross McKay).
355     * PHP: Parse final functions (fixes #3111171).
356     * Markup: Add xml_indent_tags filetype setting for documents using the
357       HTML/XML lexers (Eugene Arshinov).
359     Plugins:
360     * File Browser: Add history to path entry.
361     * HTML Characters: Only automatically replace characters when the
362       current document is a Markup document.
364     Internationalisation:
365     * Add translations: kk.
366     * Update translations: cs, de, en_GB, es, fi, fr, hu, ja, nl, pt,
367                            sl, sv, tr, zh_CN.
369     Manual:
370     * Update 'Custom filetypes', 'Ignore Tags' sections.
371     * Add 'HTML Characters', 'Configuration file paths', 'Color schemes
372       menu' sections.
373     * Explain how to grep the Scintilla source for lexer properties.
375     HACKING:
376     * Add 'Bugs to watch out for' section.
378     API:
379     * Improve Stash GUI example.
380     * Fix not loading plugins built against a newer API when Geany doesn't
381       provide the required version given in PLUGIN_VERSION_CHECK().
382     * Make GEANY_API_VERSION, GEANY_ABI_VERSION macros instead of enums
383       so you can protect code with '#if GEANY_API_VERSION >= 200'.
384     * Add signals "build-start", "project-dialog-create" and
385       "project-dialog-confirmed" - to append a Project Properties
386       notebook tab (Jiří Techet).
387     * Add macro foreach_range().
388     * Add GeanyMainWidgets::message_window_notebook (#3061342).
389     * Add main_widgets.project_menu (Jiří Techet).
390     * Add msgwin_set_messages_dir() (Jiří Techet).
391     * Add highlighting_is_{string,comment,code}_style(),
392       editor_find_snippet(), editor_insert_snippet(),
393       utils_find_open_xml_tag() (Eugene Arshinov).
394     * Add ui_combo_box_add_to_history(), editor_goto_pos(),
395       dialogs_show_input(), Add sci_get_lexer().
396     * Add filetypes_get_display_name() as "None" is no longer translated.
399 Geany 0.19.2 (December 01, 2010)
400     Fixes:
401     * Fix bug where Geany did not always report an error message when
402       saving a document fails.
405 Geany 0.19.1 (August 18, 2010)
407     Fixes:
408     * Fix broken autocompletion after using scope completion.
409     * Fix scrolling the editor line in view (e.g. after loading a session
410       and switching document tabs).
411     * Fix using filetype extension patterns with upper case letters on
412       Windows (#3028856).
413     * Fix a slightly wrong encoding detection on Windows (#3019573).
414     * Re-enable comment folding.
415     * Fix not loading plugins built against a newer API when Geany doesn't
416       provide the required version given in PLUGIN_VERSION_CHECK().
417     * Fix infinite loop in Markdown lexer (patch by Colomban Wendling,
418       thanks).
419     * Fix saving non-project filetype error regex.
420     * Focus toolbar item when pressing Go to Line keybinding only when
421       it's not in the toolbar's drop down overflow menu (#3027454).
422     * Escape the name of the current document for markup when using
423       document name for menu items (#3038844).
424     * File Browser: Allow Find in Files when no items are selected.
425     * Fix build menu translation problems.
426     * Fix segfault on Tools->Reload Configuration when no documents are
427       open (#3037079).
428     * Fix building with Waf on Solaris.
429     * Fix a memory leak (thanks to Daniel Marjamäki).
430     * Use g_free instead of free (patch by Daniel Marjamäki, thanks).
432     Tweaks:
433     * Always use white background color when printing (except for text
434       with a white foreground) to save ink (#2968998).
435     * Limit build error editor indicators to 50, but parse all errors in
436       the Compiler tab (#3019823).
437     * Align notebook tab close buttons centred vertically (thanks to
438       Robux.Biz (galyuk)).
439     * Show the Project Properties build tab when choosing 'Set Build
440       Commands' when a project is open to prevent confusion with
441       non-project commands.
443     Manual:
444     * Fix wording - restarting is required for hidden prefs.
445     * Fix Grep --exclude-dir example.
448 Geany 0.19 (June 12, 2010)
450     General:
451     * Build system reworked to be much more configurable (by Lex Trotman).
452     * Use POSIX system/GNU regex engine for find & replace. This alters
453       regex syntax - we now support '?' operator and match newlines.
454     * Support adding custom filetype files.
455     * Add new command line option --list-documents to return a list
456       of currently opened documents
457     * Remove deprecated --debug flag. Please use --verbose/-v instead.
459     Interface:
460     * Add option 'System Default' for toolbar icon style and size to use
461       the GTK default value.
462     * Allow '+<number>' and '-<number>' as values for Goto Line inputs
463       to jump relative to the current line.
464     * Add preference to add new document tabs beside the current one
465       (patch by Colomban Wendling).
466     * Enable type-ahead find for sidebar symbols and documents tabs
467       (patch by Thomas Martitz).
468     * Make Ctrl-click on any notebook tab switch to the last used
469       document.
470     * Add 'Edit->Commands' menu.
471     * Add 'Edit->Plugin Preferences' menu item and keybinding.
472     * Add 'View->Editor->Color Schemes' menu (only shown if color
473       scheme files exist).
475     Prefs:
476     * Hide 'Tabs and Spaces: Hard tab width' preference - it should
477       always be 8. (Hidden setting kept in case users have modified it).
478     * Add sidebar position interface pref.
479     * Add project long line marker customisation (patch from Eugene
480       Arshinov).
482     Editor:
483     * Update Scintilla to 2.12.
484     * Add preference and support for virtual spaces.
485     * Add word part autocompletion for the current selected item when
486       pressing keybinding (default Tab) - Enter still completes normally.
487     * Remove LaTeX autocompletion from Geany's core and move it to the
488       geanyLaTeX plugin.
490     Filetypes:
491     * New filetype: Txt2Tags (patch by Eric Forgeot).
492     * New filetype: Abc (patch by Eric Forgeot).
493     * New filetype: Verilog (patch from Kelvin Gardiner).
494     * New custom filetype: Genie.
495     * Improvements in symbol parsing of PHP and Python files.
496     * Add R tagmanager symbol parser (patch by Jon Senior).
497     * Update Perl tag parser from ctags - removes support for
498       buggy local/my/our but parses constant/format/labels.
499     * Parse more VHDL tags (patch from Kelvin Gardiner).
500     * Highlight D & Java types from a global tags file.
501     * Parse Python lambda functions (patch from Colomban Wendling).
503     Keybindings:
504     * Add keybindings to switch to the sidebar's Document and Symbol list as
505       well as to the Message Window's current tab (patch by Eugene Arshinov).
506     * Add 'Remove Markers' and 'Remove Error Indicators' keybindings.
507     * Make 'Reflow block/lines(s)' keybinding use line breaking column when
508       enabled (patch by Lex Trotman).
509     * Add 'Select to previous/next word part' keybindings.
510     * Add 'Switch to Messages' focus keybinding.
511     * Add 'Move line(s) up/down' keybindings.
512     * Make Switch to Editor keybinding reshow the document statistics line.
514     Templates:
515     * Move filetype template defaults into custom file template files.
516     * Read custom file templates from system as well as user dir.
517     * Add new special template wildcard "{command:...}" to use the output
518       of a shell command in templates.
519     * Support {ob}, {cb} and {pc} to escape wildcard strings with {, }, %
520       for snippets, fileheader and file templates.
521     * Add {project}, {description} template wildcards (#2954737).
522     * Reload templates when saving a document in the templates config dir.
524     Configuration files:
525     * Support more filetypes.common folding icon styles: arrows, +/- and no
526       lines (#2935059).
527     * Support Scintilla lexer properties in [lexer_properties] filetypes.*
528       group.
529     * Add filetypes.xml asp.default.language property (Ross McKay).
531     Plugins:
532     * Classbuilder: Add support for creating PHP classes
533                     (patch by Ondrej Donek).
534     * HTMLchars: Make plugin remember whether replacement of special
535                  characters was activated.
537     Windows:
538     * Support very long build commands.
539     * Add a preference for choosing between GTK and native File Open/Save
540       dialogs (only available on Windows).
542     Internationalisation:
543     * Added translations: ast.
544     * Updated translations: de, en_GB, es, fr, gl, ja, nl, pt, ru, sl, sv,
545                             tr, vi, zh_CN.
547     API:
548     * Improve documentation contents page.
549     * Add Stash mini-library setting, pref & widget functions to API.
550     * Add plugin_configure_single() plugin symbol which is easier to
551       implement than plugin_configure().
552     * Add new plugin signals: "document-before-save", "document-filetype-set",
553       "geany-startup-complete".
554     * Add PLUGIN_SET_TRANSLATABLE_INFO macro to the plugin API so plugins' meta
555       information can be translated already in the plugin manager dialog
556       (patch by Colomban Wendling).
557     * Use full function name for GeanyFunctions function pointers. This
558       avoids naming conflicts e.g. with C++'s 'new' keyword.
559     * GeanyKeyBinding label fields can now contain underscores, which won't
560       be displayed by Geany. This saves adding near-duplicate translation
561       strings.
562     * Add GeanyKeyGroup callback support.
563     * Add more Scintilla function wrappers, foreach_dir(), foreach_str(),
564       utils_get_file_list_full(), document_get_notebook_page(),
565       editor_insert_text_block().
566     * Don't install unnecessary headers.
567     * Remove deprecated header pluginmacros.h - use geanyfunctions.h
568       instead.
569     * Deprecate documents_foreach(), use foreach_document() instead.
570     * Deprecate PLUGIN_KEY_GROUP() macro - use plugin_set_key_group()
571       instead.
574 Geany 0.18.1 (February 14, 2010)
576     Build fixes:
577     * Define G_GNUC_WARN_UNUSED_RESULT to fix build on GLib 2.8.
578     * Use AC_PATH_PROG instead of 'which' for portability (patch by Erik
579       Southworth, thanks).
581     Incompatibilities:
582     * Remove filetypes.common invert_all option - use 'Invert syntax
583       highlighting colors' pref instead (fixes #2854525).
585     Bug fixes:
586     * Fix 'Open Selected File' for unsaved new documents.
587     * Fix updating main menu accelerators after changing keybindings
588       (thanks to Lex Trotman).
589     * Fix using 'Insert date' keybinding when a custom date string has
590       not been set.
591     * Set the cursor color for the split window plugin.
592     * Remove plugin from plugin manager dialog on unloading if it no
593       longer exists or is incompatible.
594     * Fix 'Reflow block' command when at the last paragraph and there's
595       no last newline (patch by Eugene Arshinov, thanks).
596     * Fix opening filenames beginning with two dots (closes #2858487).
597     * Show Find in Files stderr output in messages window instead of
598       debug window so that invalid regex messages can be seen easily.
599     * Speed up sorting in utils_get_file_list(). This reduces the file
600       browser delay on displaying a big directory, e.g. /usr/bin.
601     * Fix a bug with not w3c compatible HTML code on export plugin
602     * Fix non-working Home and End keys on numpads.
603     * Fix loading of files on network resources on Windows.
604     * Fix wrong alignment of printed pages when page headers are disabled
605       (closes #2856822).
607     Improvements:
608     * Extend auto_latex() function to check whether an environment has
609       been closed within the next lines to avoid auto adding double
610       \end{}.
611     * Replace some icons which could cause licensing problems by icons
612       from the Rodent icon theme.
614     Filetype fixes:
615     * Parse contents of D extern{} and version{} blocks.
616     * Fix creating D interface tags properly.
617     * Parse D functions with contracts (fixes #1885480).
618     * Parse D alias statement like typedef.
619     * Improve parsing of LaTeX, PHP and Python files.
621     Documentation:
622     * Add 'Scope autocompletion' section.
623     * Add 'Tools menu items' section to explain configuration files
624       submenu, reload configuration item.
625     * Minor updates/fixes.
627     API:
628     * Add gcc commands to build a plugin to the HowTo.
630     HACKING file:
631     * Add section 'Plugin API/ABI design'.
632     * Add 'Compiler options & warnings' section.
633     * Update Style section to be clearer about code alignment and show
634       some example code.
635     * Add 'Doc-comments' plugin API subsection.
637     Internationalisation:
638     * Added translations: gl
641 Geany 0.18 (August 16, 2009)
643     General:
644     * Fix scrolling horizontally after finding a search match with the
645       search bar or Find Next/Previous which is off-screen.
646     * Remove relative/untidy path elements from filenames when opening
647       documents (#2823998).
648     * Create initial template files with proper platform-specific line
649       ending characters.
650     * Improve inserting of comment templates like File header or licence
651       notices.
653     Interface:
654     * Add 'Show Paths' documents list popup item.
655     * Add filetypes.common to 'Configuration Files' menu.
656     * Implement a graphical toolbar editor.
657     * Add 'Build' toolbar button to the default layout.
658     * Add 'Replace' toolbar button (closes #2798225).
659     * Use a more Tango like icon for 'Save All' (by Jesse Mayes, thanks).
660     * Add a popup menu for the keybinding list in the preferences dialog
661       to easily expand and collapse all groups.
663     Keybindings:
664     * Implement Most-Recently-Used document switching when pressing
665       'Switch to last used document' keybinding (Ctrl-Tab).
666     * Add 'Mark All' keybinding (Ctrl-Shift-M).
667     * Add 'Reflow lines/block' keybinding, (Ctrl-J; thanks to
668       Eugene Arshinov).
669     * Make the Scintilla keybindings 'Delete to end of line' and
670       'Go to end of display line' configurable.
671     * Switching notebook tabs now works for the currently used notebook
672       widget instead of always using the documents notebook.
674     Editor:
675     * Fix a redraw when documents were first drawn uncolourised.
676     * Delay highlighting matching braces by 100ms to speed up scrolling
677       with the arrow keys.
678     * Support 'tab indents, space aligns' style when indenting (#2789109).
679     * Add 'Autocomplete all words in document' pref; also used when forcing
680       autocompletion and there's no symbol names to show.
681     * Add 'Drop rest of word on completion' pref.
682     * Update Scintilla to version 1.79.
683     * Improve displaying and reshowing of calltips.
685     Syntax highlighting:
686     * Reload color schemes via Tools menu (thanks to Eugene Arshinov).
687     * Implement named styles support for filetypes.* using a
688       filetypes.common [named_styles] section; used as
689       "style=named_style,bold". (See the manual for details).
690     * Allow style definitions with missing fields to use the
691       filetypes.common default style's fields.
692     * Make C-like filetype styles use named styles & default background
693       color. (Anyone who wants to likewise update any other filetype's
694       styles, please let us know ;-)).
695     * Allow indentation of wrapped lines (see style 'line_wrap_indent').
696     * Add new styles 'line_height' and 'marker_mark'.
698     Filetypes:
699     * Add Markdown filetype (thanks to Jon Strait).
700     * Highlight D WYSIWYG backtick `strings` and r"strings" (#1895745).
701     * Minor improvements for filetypes: Fortran, Haxe, HTML, Lua,
702       Matlab, Pascal, Python, Tcl.
704     Tags:
705     * Read custom system global tags files from $prefix/share/geany/tags
706       (#2778923).
707     * Autocomplete scoped fields like struct members when typing '.' (and
708       also '->' or '::' in C/C++) if the language's tag parser supports it.
709     * Save field tags for C/C++ when generating a global tags file (you may
710       want to regenerate your tag files).
711     * Parse Python calltips.
712     * Show relative paths in Diff filename tags.
713     * Group reStructuredText symbol list items by scope level.
715     Plugin API:
716     * Add geanyplugin.h single include.
717     * Add plugin_signal_connect() for connecting plugin signals at
718       runtime and also for connecting to any GObject signal.
719     * Add documents_foreach(), filetypes[], documents[], utils_strdupa()
720       and various foreach_type() macros.
721     * Make GeanyDocument::file_type always be non-NULL.
723     Windows:
724     * Fix quoting the build command string on Windows (closes #2791769).
725     * Fix LaTeX view commands on Windows (part of #2807688).
726     * Expand system environment variables (%variableName%) on Windows when
727       running Build commands.
729     Internationalisation:
730     * Added translations: lb, sl, pt_PT
731     * Updated translations: ca, cs, de, en_GB, fi, fr, ja, pt_BR, ru, tr
734 Geany 0.17 (May 02, 2009)
736     Bug fixes:
737     * Fix broken selection of "Document->Set Encoding" menu items.
738     * Fix broken non-incremental search with the toolbar search entry when
739       pressing Enter (closes #2638180).
740     * Fix parsing of Make output (closes #2694479, patch by Andrea Mazzoleni).
741     * Fix crashes on quitting Geany (closes #2533990).
742     * Fix disabled Go to Tag items in the editor menu when using the
743       keyboard (#2780044).
744     * Prevent crashes when two or more top level items in the symbol
745       list have the same name (closes #2778246).
747     Prefs:
748     * Add an option to set an additional plugin lookup path.
749     * Add a hidden preference 'use_safe_file_saving'. This has serious side
750       effects, please read the documentation before enabling this.
752     Interface:
753     * Add 'Send Selection to Terminal' command to the Edit->Format menu.
754     * Change the background colour of the search entries in the Find
755       and Replace dialogs according to the search results.
756     * Add 'Close Other Documents' and 'Close All' menu items to the tab bar
757       menu.
758     * Add an option to allow appending the toolbar to the main menu bar
759       to save some vertical space.
760     * When a project is loaded, replace the project base path with the
761       project name in the Documents sidebar for parent items (closes #2723679).
762     * Make the file open dialog more compact.
763     * Ellipsize tab labels and some status messages for very long
764       filenames (closes #2777348).
765     * Add new toolbar element: Print (patch by Roland Baudin).
766     * Remember the active sidebar page between sessions.
767     * Add "Recent Projects" menu to the Project menu (#2728630,
768       patch by Elias Pschernig).
769     * Add Tools->Configuration Files item for snippets.conf.
771     Filetypes:
772     * Fix wrong Fortran 90 comment characters when inserting templates.
773     * Add filetype ActionScript (patch by Chris Macksey).
774     * Fixes for CSS, Fortran and Ruby parsers.
775     * Add a trivial symbol parser for NSIS files.
777     Windows:
778     * On Windows, change the working directory to the Geany installation
779       path at startup to avoid unwanted directory locking(closes #2626124).
780     * Fix window positioning on startup.
781     * Make build commands on Windows run synchronously to avoid problems
782       with reading build commands' output.
784     Plugins:
785     * HTMLchars: Extend plugin by bulk replace and replace on
786       input for special characters to their HTML entities.
787     * Splitwindow: Add keybindings for the split actions.
788     * VCDiff: Remove plugin from Geany. Use GeanyVC instead.
790     Plugin API:
791     * Deprecate sci_get_text(), sci_get_selected_text() and
792       sci_get_text_range().
793     * Add sci_get_contents(), sci_get_contents_range() and
794       sci_get_selection_contents() as replacement functions to provide
795       an easier and cleaner API (initial patch by Frank).
796     * Make GEANY_FILETYPES_NONE = 0, sort filetype IDs randomly (so we can
797       append new filetypes without breaking the ABI); add
798       filetypes_by_title sorted list to GeanyData.
800     Documentation:
801     * Describe how to build Geany using the Waf build system.
803     Internationalisation:
804     * Updated translations: be, cs, de, es, fi, fr, hu, ja, pt_BR, ru,
805       sv, tr, zh_CN
808 Geany 0.16 (February 15, 2009)
810     Bug fixes:
811     * Fix indenting for Tabs & Spaces mode when inserting snippets.
812     * Fix snippets and smart indent using too much indentation when the
813       line contains whitespace after non-whitespace characters (#2215044).
814     * Fix segfault when showing Find in Files dialog when no documents are
815       open (#2228544).
816     * Fix not switching to 2nd last used document when the last used
817       document has been closed (#1945162).
819     General:
820     * Group child tags by their parents in the symbol list for C-like
821       filetypes, Python, Conf (thanks to Conrad Steenberg).
822     * Use a tree for the Documents sidebar, grouped by path.
823     * Add 'Tools->Configuration Files' menu with items to open
824       filetype_extensions.conf and ignore.tags. These files are also
825       reloaded automatically when saved.
826     * Change configuration directory path to $XDG_CONFIG_HOME/geany
827       (most often this is ~/.config/geany).
828     * Allow to specify files on the command line and from remote instances
829       to be URIs (local and with GIO also remote URIs).
830     * Increase minimum required GTK version to 2.8.
832     Prefs:
833     * Add Project Indentation prefs, which override the Editor
834       Preferences dialog options. For new projects, these default to
835       the editor indent prefs.
836     * Add an interface pref for whether to hide additional widgets when
837       double-clicking on document notebook tabs (off by default).
838     * Add a preference to invert all colours for syntax highlighting.
839     * Add a hidden preference "allow_always_save" to make the Save buttons
840       and menu items always sensitive.
842     Interface:
843     * Rework the toolbar: now all elements can be added/removed/reordered
844       using a simple XML file.
845     * Add new toolbar buttons for Cut, Copy, Paste, Delete, Preferences,
846       Close All and Build (including a submenu for Make actions).
847     * Add a progressbar widget to the statusbar to show progress for time
848       consuming actions.
850     Editor:
851     * Make Ctrl-click go to matching brace if there's no current word.
852     * Make Shift+Mouse wheel scroll the editor view horizontally.
853     * Make the 'Mark' button for Find highlight the results with rounded boxes
854       instead of marking the whole line.
855     * Add auto-closing of braces, brackets and quotes (Guillaume de Rorthais).
856     * Support multiple %cursor% wildcards in Snippets (Thomas Martitz).
858     Filetypes:
859     * Add new filetypes Ada, CMake, Matlab, NSIS, Vala and YAML.
860     * Update HTML character entities (thanks to Tyler D'Agosta).
861     * Parse restructuredText sections in the order of first-used underline
862       character, which can now be any punctuation character (as per the spec).
863     * Remove GTK global tags, replace them with C (C99) tags. The GTK tags
864       file is still available for download on the website.
865     * Minor improvements for filetypes CSS, Fortran, FreeBasic, HTML, Tcl
866       and Vala.
868     Windows:
869     * Improve tab close icon size.
870     * Changes to the Windows installer:
871       - The full installer now includes the GTK 2.14 runtime environment.
872       - Register ".geany" as Geany Project File extension.
873       - Install GTK translation files only if installation of translation
874         files were requested (saves about 22 MB otherwise).
875       - Support silent installations.
877     Plugins:
878     * Add Split Window 'Split Vertically' command (thanks to Moritz Barsnick).
879     * Make Version Diff plugin set the indent type for diffs based on the
880       current file's indent type.
881     * Minor improvements to the filebrowser plugin
883     Plugin API:
884     * Generate plugin API header geanyfunctions.h containing macros to
885       avoid having to type the function pointer names manually.
886     * Deprecate pluginmacros.h in favour of geanyfunctions.h.
887     * Add "editor-notify" to the plugin API.
888     * Add new plugin symbol plugin_help() which is called by Geany when the
889       plugin should show its documentation (if any, symbol is optional).
891     Documentation:
892     * Update Scintilla regular expression info for v1.77 (character
893       classes, ASCII escaping, character sets containing square
894       brackets peculiarities). Adapted from SciTE doc.
895     * Complete 'Hello World' Plugin Howto.
897     Internationalisation:
898     * Updated translations: bg, ca, cs, de, en_GB, fr, hu, it, ja,
899       pt_BR, sv, ru, tr, vi, zh_CN
902 Geany 0.15 (October 19, 2008)
904     General:
905     * Add Previous Message, Previous Error commands (thanks also to Beau
906       Barker).
907     * Add 'Close Other Documents' File menu command (#1976724).
908     * Add Find Document Usage popup menu command & keybinding.
909     * Check that the current file is still on disk (as well as checking the
910       modification time).
911     * Add support for custom file templates (found at startup) in the
912       ~/.geany/templates/files directory, shown underneath filetype templates
913       in the New with Template menu.
914     * Make socket open command support filename:line:column syntax.
915     * Add filetypes.* [build_settings] key 'error_regex' to support custom
916       error message parsing using a GNU-style extended regular expression.
917     * Allow loading projects from command line (#1961083).
918     * Add alternative build system: Waf.
919     * Add Tools menu item to reload configuration data without a restart.
920     * Add support to use template wildcards in snippets.
921     * Increase LSB compliance.
923     Prefs:
924     * Make disk check timeout configurable (zero disables disk checks).
925     * Add search pref: 'Use the current file's directory for Find in Files'
926       (#1930435).
928     Interface:
929     * Make keyboard shortcuts dialog non-modal (#1999384).
930     * Add a debug messages window to easily view debug messages/warnings.
932     Editor:
933     * Update Scintilla to version 1.77 (includes many fixes).
934     * Add basic Line Breaking option in the Document menu and 'Line breaking
935       column' editor pref (for now only works when typing characters past
936       the line breaking column number).
937     * Don't colourise any documents until they need to be drawn (this
938       should make opening a session faster for filetypes that support typename
939       highlighting).
940     * Make Ctrl-click on a word perform Go to Tag Definition.
941     * Add 'Max. symbol name suggestions' autocompletion pref.
942     * Show ellipsis (...) item when there are too many symbol names for
943       autocompletion.
944     * Highlight matching brace indent guides (thanks to Jason Oster;
945       #2104099).
946     * Show brace indent guides on empty lines when appropriate (thanks to
947       Jason Oster; #2105982).
948     * Add 'Tab key indents' pref, on by default.
949     * Implement soft tabs support (#1662173). There's now a 'Tabs & Spaces'
950       Indent Type, and separate Width, Hard Tab Width indent prefs. (Thanks
951       to Joerg Desch for explaining how it needed to work).
952     * Auto-update the line margin width as lines are added (thanks to Jason
953       Oster; #2129157).
954     * Add "Replace spaces by tabs".
956     Windows:
957     * Install plugins into lib/ not into plugins/.
958     * Install Geany's message catalogs into share/locale rather than
959       lib/locale as GTK does since 2.12.2.
961     Keybindings:
962     * Add Go to Start/End of Line keybindings (#1996175).
963     * Add 'Switch to Compiler' keybinding (useful when checking build
964       progress).
965     * Add keybindings for Line wrapping, Line breaking, Toggle fold and
966       Replace Spaces by tabs, Previous/Next word part.
968     Filetypes:
969     * Add OpenGL Shader Language (GLSL) filetype (thanks to Colomban
970       Wendling; #2060961).
971     * Add R language filetype (thanks to Andrew Rowland; #2121502).
972     * Split filetype Fortran into Fortran 77 and Fortran 90.
973     * Add Gettext translation filetype (#2131985).
974     * CSS improvements, thanks to Jason Oster.
976     Embedded Terminal:
977     * Fix hang when restarting the VTE (#1990323) with VTE 0.16.14.
978       (Note that with VTE 0.16.14 the reset sometimes leaves a blank
979       terminal, but pressing enter makes it then behave as normal).
981     Plugins:
982     * Add Split Window plugin (should work OK for viewing; full editing
983       support is not implemented yet).
984     * Merge InstantSave, AutoSave and BackupCopy plugins into the new
985       plugin 'Save Actions'.
987     Documentation:
988     * Add Tips and Tricks appendix.
989     * Updated Installation section.
990     * Update 'Build system' for custom error regexes.
991     * Add a section for internal plugins.
993     Plugin API:
994     * Many changes; see the API documentation (make api-doc) and the
995       geany-devel list archives.
996     * Deprecated: plugin_fields, plugin_info symbols.
998     Internationalisation:
999     * New translations: ko, tr.
1000     * Updated translations: be, ca, de, en_GB, fi, hu, it, ja, pl,
1001       ro, ru, sv, zh_CN
1004 Geany 0.14 (April 19, 2008)
1006     General:
1007     * Don't beep when using Replace All in Session unless all open files
1008       have no replacements (fixes #1893796).
1009     * Only use filetype detection after Save As, not on every save when the
1010       filetype is None (fixes #1891778).
1011     * Make Go to Tag commands look for the tag in the current document
1012       before searching the workspace.
1013     * Check file on disk for changes also when pressing a key.
1014     * Ignore documents with no absolute path when saving session files.
1015     * Fix segfault with Run command when a project is open and the current
1016       file's filetype has no run command.
1017     * Make Next Error and Next Message commands add positions to the
1018       navigation queue, so the user can move backwards through the list items
1019       and return to where they were.
1020     * Make pressing escape in the sidebar focus the editor.
1021     * Make navigation queue position based to restore the line and column when
1022       returning to a previous position (closes #1936927).
1023     * Save sorting order of the symbol list when saving a file (fixes #1917262).
1024     * Improve "Send Selection To" code (fixes #1909452).
1025     * Install header files and add a pkg-config file for external plugins.
1026     * Use monospace font for text entry fields in search dialogs (#1907117).
1027     * Don't open zero byte sized files read-only (e.g. files in /proc).
1029     Filetypes:
1030     * Improve Makefile parser to detect targets.
1031     * Update PHP tags file to latest PHP API docs (closes #1888691).
1032     * Add translucency settings to filetypes.common for semi-transparency.
1033     * Add HTML parser to get h1, h2, h3 symbols as well as link anchors and
1034       JavaScript functions (fixes #1896068).
1035     * Update Javascript, Tcl and Assembler parser.
1037     Interface:
1038     * When closing a tab when using left-to-right tabs, focus the next
1039       document, not the previous.
1040     * Move Load Tags item from File to Tools menu.
1042     Editor:
1043     * Don't scroll the editor view if it is unnecessary when using Find
1044       Next/Previous, Find Selected, incremental search, Go to Marker or Go to
1045       Matching Brace commands.
1046     * Fix bug with showing macro list items all on one line.
1047     * Fix Python auto-indentation when line endings are set to CR/LF.
1048     * Unfold hidden code when the fold point modified (fixes #1923350).
1049     * Update Scintilla to version 1.76.
1050     * Add (basic) column mode editing (patch by "chuck").
1052     Windows:
1053     * Replace untitled file header filename after Save As and add to recent
1054       files on Windows too.
1055     * Resolve Windows shortcuts when opening files.
1056     * Fix modal dialog problems on Windows by not setting taskbar hint
1057       (closes #1916994).
1058     * Add new process spawning implementation. This makes the VCdiff plugin
1059       to work on Windows (patch by Pierre Joye, thanks).
1060     * Fix crash on Windows when a project could not be opened.
1062     Plugins:
1063     * Add configurable plugin keybindings support.
1064     * Add a HTML Characters keybinding to show the dialog.
1065     * Add File Browser keybindings to focus the Path Entry and File List
1066     * Rename VCDiff plugin Version Diff.
1067     * When quitting, remember plugin filenames that couldn't be loaded at
1068       startup as well as active plugins.
1070     Plugin API:
1071     * Add PLUGIN_KEY_GROUP and keybindings_set_item() to setup a keybinding
1072       group.
1073     * keybindings_send_command() arguments have changed because of
1074       keybinding groups - this breaks the API for plugins already using it.
1075     * Make VERSION_CHECK deprecated in favour of PLUGIN_VERSION_CHECK.
1077     Documentation:
1078     * Add descriptions for several options in the preferences dialog
1079       (patch from Robert McGinley).
1081     Internationalisation:
1082     * New translations: ro.
1083     * Updated translations: bg, de, en_GB, es, fr, hu, it, ja, pt_BR, ru.
1086 Geany 0.13 (February 05, 2008)
1088     General:
1089     * Improve configure script and fix some compatibility issues.
1090     * Add support for project session files.
1091     * Add native GTK printing support (only with GTK 2.10+).
1092     * Prevent execution of commands by Geany if the VTE may contain any
1093       text on the prompt (thanks to "Jeff Pohlmeyer for reporting).
1094     * Store more document-related settings when saving session in the
1095       configuration file (including the file encoding).
1096     * Detect in-file specified file encoding by scanning the file using
1097       regular expressions.
1098     * Add binary relocation support.
1100     Filetypes:
1101     * Add configurable default file extension setting for filetype
1102       definition files.
1103     * Fix reST autocompletion.
1105     Tags:
1106     * Show arrays and modifiers like const in calltip return types for
1107       C-like files.
1108     * Update C global tags file for GTK+ 2.12.
1109     * Fix parsing the correct D class name when inheriting, D constructor
1110       tags and ignore D import statements.
1111     * Remove unnecessary tagmanager status file.
1112     * Improve PHP, Ruby and FreeBasic parsers.
1114     Interface:
1115     * Add 'Indent Type' option in the Document menu.
1116     * Add 'Detect from file' Editor indentation pref.
1117     * Show TAB or SP for current document's indent type.
1118     * Add a 'Newline strips trailing spaces' pref (thanks to Catalin
1119       Marinas).
1120     * Add 'Strip Trailing Spaces' document menu item.
1121     * Add combo box input history for 'Make Custom Target' dialog.
1122     * Make Open, Save As dialogs start in project base path (or default
1123       path pref) when the current file has no filename.
1124     * Add 'Make in base path' project file preference.
1125     * Make 'Open Selected File' first try the current file's directory,
1126       falling back to the project base path if no file was found.
1127     * Fix broken window maximization.
1128     * Improve appearance of used treeviews and use rules hints to respect
1129       user colour settings.
1131     Editor:
1132     * Fix hidden lines after deleting a line that is a collapsed fold
1133       point.
1134     * Make Fold All/Unfold All attempt to scroll the current line in view.
1135     * Show line wrap symbol at start of line for wrapped lines.
1136     * Allow scrolling past end of document, so the user can append text
1137       with the last lines drawn at the top of the view.
1138     * Rename "Construct autocompletion" to "Snippets".
1139     * Improve usage of "Unfold all children" option.
1140     * Update Scintilla to version 1.75.
1142     Keybindings:
1143     * Add configurable keybindings for Cut, Copy and Paste.
1144     * Ask the user whether to override an existing keybinding when setting
1145       a combination that is already in use.
1146     * Add 'Override Geany keybindings' VTE prefs dialog option (replaces
1147       hidden pref), which makes the VTE interpret all keyboard shortcuts
1148       except focus group keybindings.
1150     Plugins:
1151     * Add File Browser sidebar plugin.
1152     * Add Version Control Diff plugin (VC Diff), which supports SVN, CVS and
1153       GIT (thanks to Yura Siamashka).
1154     * Add plugin manager dialog to select plugins to load at startup and to
1155       call a plugin configure dialog.
1156     * Add new signals: project_open, project_save, project_close.
1157     * Add Auto Save plugin.
1159     Plugin API:
1160     * Add keybindings_send_command() and some other functions.
1161     * Add pluginmacros.h to define common macros for app, p_utils, etc.
1162     * Add more documentation/comments to demoplugin.c.
1163     * Add configure symbol for plugins which is called by Geany when a
1164       configure dialog for the plugin is requested, optionally.
1165     * Add author field to plugin info struct.
1167     Windows:
1168     * Enable build support.
1169     * Prevent prefs dialog being hidden after using the prefs file dialog.
1170     * Create Geany's configuration directory in user's appdata path
1171       instead of the default home directory.
1173     Documentation:
1174     * Show default shortcuts in Keybindings section.
1175     * Update Project section for project-based session support.
1176     * Add Indentation subsection under Editor section.
1177     * HACKING: Update 'Adding a filetype' section.
1179     Internationalisation:
1180     * New translations: ja, uk, el.
1181     * Updated translations: ca, de, en_GB, fr, it, pt_BR, hu, sv, vi.
1184 Geany 0.12 (October 10, 2007)
1186     Bugs fixed:
1187     * Fixed opening the same file twice from the message window/command-line.
1188     * Fixed Ctrl-Shift keybindings not working when caps lock is on.
1189     * Fixed saving the wrong document when using Save All with unnamed
1190       documents.
1191     * Fixed replacing with '^' or '$' regex chars.
1192     * Fixed hang with Find All/Find Usage with '^' or '$' regex chars.
1193     * Fixed hang when replacing all '[ ]*' regex matches (closes #1757748).
1194     * Fixed displaying error indicators with Make after entering a
1195       subdirectory.
1196     * Fixed a possible segfault when parsing tags (a vString bug).
1197     * Fixed clipboard problems with some applications.
1198     * Fixed crash when trying to open the Save As dialog on Windows.
1199     * Fixed crash when saving a file after setting encoding "None".
1200     * Fixed scrolling bugs when searching text and the cursor is outside of
1201       the current visible area.
1203     Filetypes:
1204     * Added reStructuredText filetype and parser.
1205     * Added Haskell tags support (thanks to Peter Strand).
1206     * Added decorator styling for Python.
1207     * Parse Python global variables and class variables.
1208     * Added support for Java Apache Ant compiler error messages (thanks to
1209       Jon Senior).
1210     * Added new filetypes CSharp and FreeBasic.
1211     * Added filetype Haxe (patch by blackdog, thank you).
1213     Plugins:
1214     * Added basic plugin support (developers: see the HACKING file).
1215     * Added 'Enable plugin support' preference and -p, --no-plugins options.
1216     * Added Class Builder plugin (thanks to Alexander Rodin).
1217     * Added Export plugin to export current file as HTML or LaTeX.
1219     Keyboard shorcuts:
1220     * Common bash Ctrl-[a-z] keyboard shortcuts now work when the VTE is
1221       focused, and there is an 'enable_bash_keys' hidden preference.
1222     * Added 'Move document left' and 'Move document right' keybindings.
1223     * Added Find keybinding.
1224     * Made fixed keybindings overridable.
1225     * Added fixed keybindings for switching to leftmost/rightmost document,
1226       Ctrl-Shift-{PageUp,PageDown}.
1227     * Change Previous/Next Paragraph fixed commands to Ctrl-{Up,Down};
1228       adding Shift extends selection by paragraph. (Scroll by line is now
1229       Alt-{Up,Down}).
1230     * Made pressing escape focus the editor when using incremental search
1231       or Goto Line toolbar fields.
1232     * Added keybinding for select current paragraph.
1233     * Added keybindings for smart indent and indent/deindent by one space.
1234     * Removed convert to lower-/upper-case keybindings.
1235     * Added toggle case keybinding and change shortcut to Ctrl-Alt-U.
1237     General:
1238     * Added preference for 'smart' home key behaviour (thanks to Jeff
1239       Pohlmeyer).
1240     * Added symbol list icons (thanks to Jean-François Wauthy, and KDevelop
1241       for the icons).
1242     * Added 'Current chars' indentation mode (closes #1726880).
1243     * Save and restore the current notebook page when quitting.
1244     * Added support for %e, %f in project run command.
1245     * Ignore punctuation chars when moving by word, and use word end
1246       boundaries when moving by word to the right (like most GTK+ widgets).
1247     * Added hidden editor preference 'use_gtk_word_boundaries'.
1248     * Added auto_complete_whilst_editing hidden preference.
1249     * Speed up Save All for C-like files.
1250     * Don't show file opened/saved/closed messages on the status bar.
1251     * Added --no-preprocessing, -P option when generating tags files to
1252       disable preprocessing of C/C++ source files.
1253     * Added default startup directory option (closes #1704988).
1254     * Use current locale as default encoding for new files.
1255     * Added simple code navigation (thanks to Dave Moore).
1256     * Re-maximize the main window on startup when closed in maximized state
1257       (closes #1730369).
1258     * Added auto focus (to auto focus widgets below mouse cursor).
1259     * Complete rewrite of auto completion to make it user-definable and
1260       much more flexible (please read documentation).
1261     * Added option to set a default encoding when opening files and disable
1262       auto detection of the file encoding.
1263     * Improved comment toggling by adding an additional character to mark.
1264     * Changed the background colour of the search bar in the toolbar
1265       according to the search result.
1266     * Use intltool to make geany.desktop translatable
1267     * Replace Geany's icon by a new one by Sebastian Kraft (thanks).
1268     (Thanks also to Christoph Berg for updating the icon code).
1270     Docs:
1271     * Changed documentation generation tools from DocBook to reST
1272       (thanks to John Gabriele for his great work on this).
1273     * Added Plugins section.
1274     * Added 'Inserting unicode characters' Editing section (thanks to
1275       John Gabriele).
1276     * Added 'Hidden preferences' appendix.
1277     * Added 'Switching documents' keybindings section.
1279     HACKING:
1280     * Added notes on adding a filetype.
1282     Internationalisation:
1283     * New translations: en_GB.
1284     * Updated translations: ca, cs, de, es, fi, fr, hu, it, pl, pt_BR, zh_CN.
1287 Geany 0.11 (May 21, 2007)
1289     Notes for existing users:
1290     * Tab is now used for construct completion (for, if, etc.), but it
1291       is configurable with the new 'Complete construct' keybinding.
1292     * Template files are now stored in ~/.geany/templates/ and the
1293       'template.' filename prefix is no longer used. You will need to
1294       move any custom template files you have.
1295     * Inserting a file header is now optional for filetype templates.
1296       Use the string '{fileheader}' to mark where the file header should
1297       be placed.
1298     * Drag'n'Drop of text inside the editor widget will now move the
1299       text instead of copying it.
1301     Bugs fixed:
1302     * Fix segfault when pressing Ctrl-Enter when there are no workspace
1303       tags.
1304     * Remove error indicators in all documents when linking (#1705374).
1305     * Sort symbol list tags also by line number (#1703575).
1306     * Fix #1717418, Hang on SQL file load.
1307     * Fix #1718532 - Crash when opening a special HTML file.
1308     * Add workaround for PHP closing brace de-indenting.
1309     * Fix reloading of read-only documents.
1311     Project Management:
1312     * Add keybinding to show project properties dialog.
1313     * Add project Run command support.
1314     * Run Make All and Make Custom from the project base directory.
1316     Custom Global Tags:
1317     * Update C global tags for GTK+ 2.10 and it's dependencies.
1318     * Add option --generate-tags (-g) to generate a global tags file
1319       from a list of source files (see docs).
1320     * Load global tag files stored in ~/.geany/tags at startup #.
1321     * Add Load Tags command in the File menu #.
1322     # This is not supported for Pascal, PHP or LaTeX files yet.
1324     Calltips (for C-like files):
1325     * Show up and down arrows when there are multiple calltip matches.
1326     * Show classname in calltips.
1327     * Parse pointers in function return type.
1328     * Add calltip support for D constructors.
1330     Other changes:
1331     * Parse 'Entering directory' Make messages so opening files from
1332       error messages works for subdirectories (thanks to Josef Whiter).
1333     * Make Go to Tag Definition/Declaration work for all tags.
1334     * Support filetype templates for all filetypes (see docs).
1335     * Make file header optional for filetype templates.
1336     * Add 'Find Selected' and 'Find Prev Selected' search commands and
1337       keybindings (thanks to Jeff Pohlmeyer).
1338     * Add Mark button to the Find dialog, and a Remove Markers item to
1339       the Document menu.
1340     * Add 'Recurse in subfolders' and 'Extra options' checkboxes to the
1341       Find in Files dialog.
1342     * Add 'Switch to last used document' keybinding (Ctrl-Tab).
1343     * Add Goto Previous/Next Marker keybindings (Ctrl-, and Ctrl-.).
1344     * Add Toggle Marker keybinding (Ctrl-M).
1345     * Add keybinding for construct completion, and set the default to
1346       Tab.
1347     * Add MimeType associatiations for: C++ header, Pascal, Perl,
1348       Python, httpd-PHP and XML files (thanks to Iñaki Rodriguez).
1349     * Add brace indenting support for Perl and Tcl.
1350     * Make backspace unindent when using spaces for indentation.
1351     * Wrap notebook pages when switching tabs.
1352     * Speed up loading multiple C-like files slightly.
1353     * New filetypes: JavaScript, Lua and Haskell.
1354     * Set several widget names to allow users to define custom styles
1355       in .gtkrc-2.0.
1356     * Add context actions to run custom commands on current selection
1357       or the current word below cursor.
1358     * Add different auto indention modes.
1359     * Improve replacing in rectangle selections.
1360     * Add custom commands to send selected text through some definable
1361       commands and replace the selection with the output.
1362     * Add command line option --column to allow setting the initial
1363       column for the first opened file on command line.
1364     * Improve the auto scrolling of documents.
1365     * Improve loading of the VTE library.
1366     * Add an option for using spaces or tabulators when inserting some
1367       whitespace.
1368     * Add an option to disable Drag'n'Drop in the editor widget.
1370     Documentation:
1371     * Add Project Management, Global Tags, Construct Completion
1372       sections.
1373     * Add Bookmarks section (thanks to John Gabriele).
1374     * Update Filetype Templates, Search sections.
1376     Internationalisation:
1377     * New translations: bg.
1378     * Updated translations: ca, cs, de, es, fr, zh_CN.
1381 Geany 0.10.2 (February 25, 2007)
1383     Bugs fixed:
1384     * Fixed serious crash of complete X session when using the Stop
1385       command when Geany is run from the program menu (closes #1668017).
1388 Geany 0.10.1 (February 23, 2007)
1390     Bugs fixed:
1391     * Wrong tab foreground colour for unmodified documents.
1392     * Fixed crashes when closing dialogs by clicking X on some systems.
1393     * Fixed missing global tags for C files when a C++ source file was
1394       loaded first.
1395     * Fixed autocompletion missing tag matches.
1396     * Fixed a wrong PASCAL autocompletion.
1397     * Set single undo action when toggling multiple lines or stripping
1398       trailing spaces.
1399     * Prevent some possible invalid memory reads.
1400     * Convert config, application and documentation dir paths to locale
1401       encoding before using it.
1402     * Fixed errors when changing directories containing special
1403       characters within the VTE component (thanks to Jeff Pohlmeyer).
1404     * Support newer so-names when loading the VTE library (thanks to
1405       Jeff Pohlmeyer).
1406     * Fixed paste problems on Windows.
1407     * When using Save As the returned filename needs to be converted
1408       into UTF-8.
1409     * Fixed error when parsing of compiler errors by the va_list system.
1410     * Added MimeType entry as suggested by Nick Schermer.
1411     * LaTeX parser: Allow \section*{} and other commands with *.
1412     * Change default keybinding for Close All to Ctrl-Shift-W.
1413     * Allow Make for files with no extension - prevent Build when the
1414       output filename would be the same as the source file.
1415     * Ensure the VTE visual settings are applied when switching to VTE
1416       when the Message Window is hidden.
1417     * Fixed several issues while opening files and improved code.
1418     * Improved the auto scrolling of documents and fixed a bug when
1419       opening files remotely.
1420     * Fixed wrong D function return type after a class definition.
1421     * Added several missing style types for filetype Perl (thanks to
1422       John Gabriele for reporting).
1423     * Prevent right click in Symbol list from selecting a tag.
1424     * Update the symbol list when starting a new document.
1425     * Scroll Compiler and Messages window in view when using Next Error
1426       or Next Message.
1427     * Auto close brackets only when auto completion of constructs is
1428       enabled (closes #1665015).
1429     * Fixed switching to the wrong tab when showing the unsaved dialog.
1431     Internationalisation:
1432     * New translations: fi (thanks to Harri Koskinen).
1433     * Updated translations: cs, de, es, fr, hu.
1436 Geany 0.10 (December 21, 2006)
1438     Changes:
1439     * Added a dialog to insert HTML special characters.
1440     * Added new command line option --line to set the initial line for
1441       the first opened file.
1442     * Implemented new, own Undo system to undo/redo encoding changes.
1443     * Added simple parser for filetype Diff to create tags for each
1444       patched file in a diff file.
1445     * Added new encoding "None" to open files without any character
1446       conversions.
1447     * Added Stop button to abort the Run command.
1448     * New filetype VHDL.
1449     * New scintilla lexer for filetype D with several improvements.
1450     * Improved auto completion of multi line comments
1451     * Added option to execute programs in the VTE instead of executing
1452       them in a terminal emulation window
1453     * Removed the limit on the number of files open.
1454     * Save the build includes and arguments when quitting.
1455     * Added Next Message search command and Next Error build command.
1456     * Make search bar automatically wraparound if necessary.
1457     * Applied patch from Bob Doan to prevent unnecessary search
1458       scrolling and add a preference to suppress some of the search
1459       dialogs.
1460     * Added Find Previous, Find All in Document/Session buttons for the
1461       Find dialog.
1462     * Added Replace (but don't Find) button for the Replace dialog.
1463     * Added 'Hide Message Window' popup menu command.
1464     * Added Alt-[1-9] shortcuts to switch to a certain tab number.
1465     * Limit search dialog history to 30 entries.
1466     * Change python default compile command to create a compiled
1467       python .pyc file (thanks to Bajusz Tamás).
1469     Windows changes:
1470     * Fix #1611530 'file has changed' message on Windows after saving.
1471     * Fixed wrong paste behaviour under Windows with some applications.
1473     Bugs fixed:
1474     * Fixed crash when using "Make object" on new files.
1475     * Fixed incompatible use of read command in the created shell
1476       script to execute programs.
1477     * Fixed wrong insert position when the cursor was moved by keyboard
1478       and comments, includes or a date was inserted.
1479     * Fixed some segfaults when inserting comments, dates and
1480       includes at a position prior to some deleted text.
1481     * Fix message window horizontal scrollbar being too tall on some
1482       systems (thanks to Rob van der Linde).
1484     Internationalisation:
1485     * New translations: fr, hu, it, zh_CN, zh_TW.
1486     * Updated translations: be, ca, cs, de, es, vi.
1489 Geany 0.9 (September 29, 2006)
1491     Changes:
1492     * Added function calltips for files open in the current workspace
1493       for C-like languages.
1494     * Open a second instance by default when starting Geany with no
1495       filenames specified on the command-line.
1496     * Added better error message support for D, for both DMD and GDC;
1497       also GCC-style linker error messages are now parsed.
1498     * Text selections now use syntax highlighting foreground colours
1499       (but can still be overridden in filetypes.common).
1500     * Find in Files improvements: fixed string and whole word only
1501       matching options; a directory selector dialog; filenames passed
1502       to Grep are now sorted alphabetically.
1503     * Remember the VTE current directory at startup.
1504     * Show the messages window on build failure or for Find Usage.
1505     * Added -s command-line option to not load session files (-i is now
1506       used to force a new instance).
1507     * Added comment toggle functionality to easily comment and
1508       uncomment a line with one shortcut.
1509     * Separated filetypes PHP and HTML for better usage.
1510     * New filetypes: Diff, Fortran 77 and Ferite.
1511     * Added auto completion tags for PASCAL.
1512     * Improved VTE usage by adding options for selecting the used shell
1513       and ignoring menu bar accelerator (default F10).
1514     * Added menu items to insert configurable date/time strings.
1515     * Removed the whole FIFO code and replaced it with support for
1516       (Unix Domain) Sockets(including Windows support).
1518     Windows changes:
1519     * Implemented Run command (from the build menu) under Windows.
1520     * Enabled socket code on Windows to detect a running instance.
1521     * Enabled notification if file on disk has changed under Windows.
1523     Bugs fixed:
1524     * Fixed a segfault at startup if terminal follow path setting is
1525       enabled.
1526     * Fixed clicking on error messages being dependent on the current
1527       file's directory.
1528     * Fixed a bug when clicking on a recent file got the wrong
1529       filename.
1530     * Fixed a crash when a compiler output reports an error in a blank
1531       line(can happen in LaTeX)
1532     * Fixed a crash when switching between several filetypes.
1533     * Fixed segfault when replacing tabs by spaces.
1535     Internationalisation:
1536     * New translations: cs, nl, vi.
1537     * Updated translations: de, es.
1540 Geany 0.8 (August 09, 2006)
1542         Changes:
1543         * Find in files feature added which uses the Grep tool.
1544         * Added Make object command to compile using the Make tool.
1545         * Editor notebook tabs can now be reordered by drag and drop.
1546         * Added support for back references when using regex replace.
1547         * Added a Find button to the Replace dialog to skip matches.
1548         * Greatly improved the speed of Replace all/in selection.
1549         * Scroll to 1/4 of the view when jumping to a line number.
1550         * Show messages on the status bar and in the Status window.
1551         * Preferences options for Auto-indentation and Line wrapping.
1552         * Use the mouse click position for Go to tag.
1553         * Added separate filetype_extensions.conf system file.
1554         * Added makefiles for building on Windows.
1555         * Added keyboard shortcuts for increase/decrease of line
1556           indentation.
1557         * Added functionality to uncomment code.
1558         * Encoding support
1559         * Added support for Unicode Byte-Order-Mark (BOM)
1560         * Redesigned preferences dialog.
1561         * Added Undo and Redo toolbar buttons.
1562         * New filetype: D
1563         * Added simple printing support.
1564         * Mark errors while compiling source code within Geany with
1565           indicators(small squiggly underlines)
1567         Bugs fixed:
1568         * Use the full path for files opened from the command-line.
1569         * Fixed saving a file from the unsaved file dialog.
1570         * Fixed replacing with regexes the correct matched text length.
1571         * Fixed applying virtual terminal widget settings at startup.
1572         * Fixed prepending items to the Recent files menu.
1573         * Fixed clipboard commands used in the find entry and Scribble.
1574         * Fixed wrong interpretation of syntax highlighting colours
1575         * And some more.
1577         Windows bugs fixed:
1578         * Don't add .c extension when saving with the All files filter.
1579         * Fixed a tool chooser dialog crash when path doesn't exist.
1580         * Fixed locale problems with Windows message dialogs.
1582         Internationalisation:
1583         * New translations: be, es, pt_BR, ru.
1584         * Updated translations: ca, de, pl.
1586         Documentation:
1587         * Added Scintilla keyboard commands for editing appendix.
1588         * Improved search section; added all find and go to commands.
1589         * Added section about character sets.
1592 Geany 0.7 (June 04, 2006)
1594         * user-definable keyboard shortcuts
1595         * filetype definition files can be overridden in Geany's
1596           configuration directory (please see documentation)
1597         * added filetypes Ruby and Tcl/Tk
1598         * improved build system (for Perl, Python, Ruby and others)
1599         * loading of Virtual Terminal Emulation can be disabled in the
1600           preferences dialog
1601         * new menu item "Search" with Find items from Edit menu and new
1602           item "Find Previous"
1603         * fixed the bug which let Geany crash with newer GTK versions
1604         * improved documentation: added documentation for keyboard
1605           shortcuts, the build system and filetype definition files
1606         * new translations: Catalan and Polish
1607         * many small improvements
1608         * fixed lots of bugs (please see ChangeLog for details)
1611 Geany 0.6 (April 30, 2006)
1613         * added option to place new file tabs to the right or left of
1614           the tab list
1615         * improved file open dialog
1616         * improved scrolling of the compiler output window
1617         * rewrote most of the code for compiling files, now all
1618           settings are read from filetype definition files
1619         * now, you can drag files from a file manager into Geany and
1620           they will be opened
1621         * improved handling of filenames which contain non-UTF8 chars
1622         * added user-definable comment characters to all filetype
1623           definition files
1624         * implemented folding
1625         * added file properties dialog
1626         * improved search and find dialogs
1627         * Geany now creates a FIFO, to communicate between different
1628           instances for opening files in an already running instance
1629         * added filetypes SQL and (O)Caml
1630         * many small improvements
1631         * fixed lots of bugs, including #1419473, #1422135, #1421776
1632           and #1441359
1633         * for more details read the ChangeLog
1636 Geany 0.5 (January 27, 2006)
1638         * set the Open File dialog directory to the same directory as
1639           the current file (thanks to Nick Treleaven for this patch)
1640         * fixed some bugs when opening files with non UTF-8 filenames
1641         * updated included Scintilla to version 1.67
1642         * improved auto indention, now "for (...) {" works, too
1643         * added popup menu to sidebar lists, to quickly hide them
1644         * symbol list support for filetypes LaTeX and DocBook
1645         * added .cc, .hh and .hxx extension for filetype C++
1646         * added new keywords for PHP5
1647         * added new option "Beep on errors" to disable beeping
1648         * eliminated compiler (gcc4) warnings
1649         * closed bug #1387828 and #1387839
1650         * fixed lots of bugs (please see ChangeLog for details)
1653 Geany 0.4 (December 21, 2005)
1655         * new filetype: Assembler
1656         * new filetype: Conf for configuration files
1657         * added a terminal emulation widget, needs only libvte.so at
1658           runtime, but it also runs without it, see documentation
1659         * made some general improvements to increase startup speed
1660         * changed "build with make" keyboard shortcut to Shift+F9 to
1661           avoid problems with window managers key bindings
1662         * added auto-closing [ and { brackets in LaTex-Mode
1663         * improved documentation, but it is not yet complete
1664         * improved the symbol list to categorise the tags in a tree
1665         * some new options in the preferences dialog
1666         * added popup menu to the list of open files
1667         * there are lots of other small changes made since last release
1668         * some bugfixes (please see ChangeLog for details)
1671 Geany 0.3 (November 20, 2005)
1673         * Geany now has a mailing list, for details see
1674           http://geany.uvena.de
1675         * added open files list in the left treeview widget
1676         * added toolbar button to open the color chooser
1677         * heavily improved recent files menu
1678         * added shortcut for "walking" between open documents by
1679           pressing STRG+LEFT resp. STRG+RIGHT
1680         * created template files for new files with specified filetype
1681         * added highlighting support for Python (please give feedback)
1682         * extracted all hardcoded styling definitions for all filetypes
1683           so they can be easily edited
1684         * added vertical line to mark long lines
1685         * fixed a bug that caused a segfault if configuration directory
1686           could not created
1687         * fixed a bug which prevented auto-completion from working
1688         * many minor bugfixes (see ChangeLog for details)
1691 Geany 0.2 (October 26, 2005)
1693         * improved file open dialog
1694         * improved Find dialog
1695         * powerful Replace dialog
1696         * gcc4 compilation fix
1697         * minor bugfixes
1700 Geany 0.1 (October 19, 2005)
1702         * first official release