Add missing header include.
[geany-mirror.git] / NEWS
blobef872d4994b79d5c9692ce49c92c19c5db654805
1 Geany 0.17 (May 02, 2009)
3     Bug fixes:
4     * Fix broken selection of "Document->Set Encoding" menu items.
5     * Fix broken non-incremental search with the toolbar search entry when
6       pressing Enter (closes #2638180).
7     * Fix parsing of Make output (closes #2694479, patch by Andrea Mazzoleni).
8     * Fix crashes on quitting Geany (closes #2533990).
9     * Fix disabled Go to Tag items in the editor menu when using the
10       keyboard (#2780044).
11     * Prevent crashes when two or more top level items in the symbol
12       list have the same name (closes #2778246).
14     Prefs:
15     * Add an option to set an additional plugin lookup path.
16     * Add a hidden preference 'use_safe_file_saving'. This has serious side
17       effects, please read the documentation before enabling this.
19     Interface:
20     * Add 'Send Selection to Terminal' command to the Edit->Format menu.
21     * Change the background colour of the search entries in the Find
22       and Replace dialogs according to the search results.
23     * Add 'Close Other Documents' and 'Close All' menu items to the tab bar
24       menu.
25     * Add an option to allow appending the toolbar to the main menu bar
26       to save some vertical space.
27     * When a project is loaded, replace the project base path with the
28       project name in the Documents sidebar for parent items (closes #2723679).
29     * Make the file open dialog more compact.
30     * Ellipsize tab labels and some status messages for very long
31       filenames (closes #2777348).
32     * Add new toolbar element: Print (patch by Roland Baudin).
33     * Remember the active sidebar page between sessions.
34     * Add "Recent Projects" menu to the Project menu (#2728630,
35       patch by Elias Pschernig).
36     * Add Tools->Configuration Files item for snippets.conf.
38     Filetypes:
39     * Fix wrong Fortran 90 comment characters when inserting templates.
40     * Add filetype ActionScript (patch by Chris Macksey).
41     * Fixes for CSS, Fortran and Ruby parsers.
42     * Add a trivial symbol parser for NSIS files.
44     Windows:
45     * On Windows, change the working directory to the Geany installation
46       path at startup to avoid unwanted directory locking(closes #2626124).
47     * Fix window positioning on startup.
48     * Make build commands on Windows run synchronously to avoid problems
49       with reading build commands' output.
51     Plugins:
52     * HTMLchars: Extend plugin by bulk replace and replace on
53       input for special characters to their HTML entities.
54     * Splitwindow: Add keybindings for the split actions.
55     * VCDiff: Remove plugin from Geany. Use GeanyVC instead.
57     Plugin API:
58     * Deprecate sci_get_text(), sci_get_selected_text() and
59       sci_get_text_range().
60     * Add sci_get_contents(), sci_get_contents_range() and
61       sci_get_selection_contents() as replacement functions to provide
62       an easier and cleaner API (initial patch by Frank).
63     * Make GEANY_FILETYPES_NONE = 0, sort filetype IDs randomly (so we can
64       append new filetypes without breaking the ABI); add
65       filetypes_by_title sorted list to GeanyData.
67     Documentation:
68     * Describe how to build Geany using the Waf build system.
70     Internationalisation:
71     * Updated translations: be, cs, de, es, fi, fr, hu, ja, pt_BR, ru,
72       sv, tr, zh_CN
75 Geany 0.16 (February 15, 2009)
77     Bug fixes:
78     * Fix indenting for Tabs & Spaces mode when inserting snippets.
79     * Fix snippets and smart indent using too much indentation when the
80       line contains whitespace after non-whitespace characters (#2215044).
81     * Fix segfault when showing Find in Files dialog when no documents are
82       open (#2228544).
83     * Fix not switching to 2nd last used document when the last used
84       document has been closed (#1945162).
86     General:
87     * Group child tags by their parents in the symbol list for C-like
88       filetypes, Python, Conf (thanks to Conrad Steenberg).
89     * Use a tree for the Documents sidebar, grouped by path.
90     * Add 'Tools->Configuration Files' menu with items to open
91       filetype_extensions.conf and ignore.tags. These files are also
92       reloaded automatically when saved.
93     * Change configuration directory path to $XDG_CONFIG_HOME/geany
94       (most often this is ~/.config/geany).
95     * Allow to specify files on the command line and from remote instances
96       to be URIs (local and with GIO also remote URIs).
97     * Increase minimum required GTK version to 2.8.
99     Prefs:
100     * Add Project Indentation prefs, which override the Editor
101       Preferences dialog options. For new projects, these default to
102       the editor indent prefs.
103     * Add an interface pref for whether to hide additional widgets when
104       double-clicking on document notebook tabs (off by default).
105     * Add a preference to invert all colours for syntax highlighting.
106     * Add a hidden preference "allow_always_save" to make the Save buttons
107       and menu items always sensitive.
109     Interface:
110     * Rework the toolbar: now all elements can be added/removed/reordered
111       using a simple XML file.
112     * Add new toolbar buttons for Cut, Copy, Paste, Delete, Preferences,
113       Close All and Build (including a submenu for Make actions).
114     * Add a progressbar widget to the statusbar to show progress for time
115       consuming actions.
117     Editor:
118     * Make Ctrl-click go to matching brace if there's no current word.
119     * Make Shift+Mouse wheel scroll the editor view horizontally.
120     * Make the 'Mark' button for Find highlight the results with rounded boxes
121       instead of marking the whole line.
122     * Add auto-closing of braces, brackets and quotes (Guillaume de Rorthais).
123     * Support multiple %cursor% wildcards in Snippets (Thomas Martitz).
125     Filetypes:
126     * Add new filetypes Ada, CMake, Matlab, NSIS, Vala and YAML.
127     * Update HTML character entities (thanks to Tyler D'Agosta).
128     * Parse restructuredText sections in the order of first-used underline
129       character, which can now be any punctuation character (as per the spec).
130     * Remove GTK global tags, replace them with C (C99) tags. The GTK tags
131       file is still available for download on the website.
132     * Minor improvements for filetypes CSS, Fortran, FreeBasic, HTML, Tcl
133       and Vala.
135     Windows:
136     * Improve tab close icon size.
137     * Changes to the Windows installer:
138       - The full installer now includes the GTK 2.14 runtime environment.
139       - Register ".geany" as Geany Project File extension.
140       - Install GTK translation files only if installation of translation
141         files were requested (saves about 22 MB otherwise).
142       - Support silent installations.
144     Plugins:
145     * Add Split Window 'Split Vertically' command (thanks to Moritz Barsnick).
146     * Make Version Diff plugin set the indent type for diffs based on the
147       current file's indent type.
148     * Minor improvements to the filebrowser plugin
150     Plugin API:
151     * Generate plugin API header geanyfunctions.h containing macros to
152       avoid having to type the function pointer names manually.
153     * Deprecate pluginmacros.h in favour of geanyfunctions.h.
154     * Add "editor-notify" to the plugin API.
155     * Add new plugin symbol plugin_help() which is called by Geany when the
156       plugin should show its documentation (if any, symbol is optional).
158     Documentation:
159     * Update Scintilla regular expression info for v1.77 (character
160       classes, ASCII escaping, character sets containing square
161       brackets peculiarities). Adapted from SciTE doc.
162     * Complete 'Hello World' Plugin Howto.
164     Internationalisation:
165     * Updated translations: bg, ca, cs, de, en_GB, fr, hu, it, ja,
166       pt_BR, sv, ru, tr, vi, zh_CN
169 Geany 0.15 (October 19, 2008)
171     General:
172     * Add Previous Message, Previous Error commands (thanks also to Beau
173       Barker).
174     * Add 'Close Other Documents' File menu command (#1976724).
175     * Add Find Document Usage popup menu command & keybinding.
176     * Check that the current file is still on disk (as well as checking the
177       modification time).
178     * Add support for custom file templates (found at startup) in the
179       ~/.geany/templates/files directory, shown underneath filetype templates
180       in the New with Template menu.
181     * Make socket open command support filename:line:column syntax.
182     * Add filetypes.* [build_settings] key 'error_regex' to support custom
183       error message parsing using a GNU-style extended regular expression.
184     * Allow loading projects from command line (#1961083).
185     * Add alternative build system: Waf.
186     * Add Tools menu item to reload configuration data without a restart.
187     * Add support to use template wildcards in snippets.
188     * Increase LSB compliance.
190     Prefs:
191     * Make disk check timeout configurable (zero disables disk checks).
192     * Add search pref: 'Use the current file's directory for Find in Files'
193       (#1930435).
195     Interface:
196     * Make keyboard shortcuts dialog non-modal (#1999384).
197     * Add a debug messages window to easily view debug messages/warnings.
199     Editor:
200     * Update Scintilla to version 1.77 (includes many fixes).
201     * Add basic Line Breaking option in the Document menu and 'Line breaking
202       column' editor pref (for now only works when typing characters past
203       the line breaking column number).
204     * Don't colourise any documents until they need to be drawn (this
205       should make opening a session faster for filetypes that support typename
206       highlighting).
207     * Make Ctrl-click on a word perform Go to Tag Definition.
208     * Add 'Max. symbol name suggestions' autocompletion pref.
209     * Show ellipsis (...) item when there are too many symbol names for
210       autocompletion.
211     * Highlight matching brace indent guides (thanks to Jason Oster;
212       #2104099).
213     * Show brace indent guides on empty lines when appropriate (thanks to
214       Jason Oster; #2105982).
215     * Add 'Tab key indents' pref, on by default.
216     * Implement soft tabs support (#1662173). There's now a 'Tabs & Spaces'
217       Indent Type, and separate Width, Hard Tab Width indent prefs. (Thanks
218       to Joerg Desch for explaining how it needed to work).
219     * Auto-update the line margin width as lines are added (thanks to Jason
220       Oster; #2129157).
221     * Add "Replace spaces by tabs".
223     Windows:
224     * Install plugins into lib/ not into plugins/.
225     * Install Geany's message catalogs into share/locale rather than
226       lib/locale as GTK does since 2.12.2.
228     Keybindings:
229     * Add Go to Start/End of Line keybindings (#1996175).
230     * Add 'Switch to Compiler' keybinding (useful when checking build
231       progress).
232     * Add keybindings for Line wrapping, Line breaking, Toggle fold and
233       Replace Spaces by tabs, Previous/Next word part.
235     Filetypes:
236     * Add OpenGL Shader Language (GLSL) filetype (thanks to Colomban
237       Wendling; #2060961).
238     * Add R language filetype (thanks to Andrew Rowland; #2121502).
239     * Split filetype Fortran into Fortran 77 and Fortran 90.
240     * Add Gettext translation filetype (#2131985).
241     * CSS improvements, thanks to Jason Oster.
243     Embedded Terminal:
244     * Fix hang when restarting the VTE (#1990323) with VTE 0.16.14.
245       (Note that with VTE 0.16.14 the reset sometimes leaves a blank
246       terminal, but pressing enter makes it then behave as normal).
248     Plugins:
249     * Add Split Window plugin (should work OK for viewing; full editing
250       support is not implemented yet).
251     * Merge InstantSave, AutoSave and BackupCopy plugins into the new
252       plugin 'Save Actions'.
254     Documentation:
255     * Add Tips and Tricks appendix.
256     * Updated Installation section.
257     * Update 'Build system' for custom error regexes.
258     * Add a section for internal plugins.
260     Plugin API:
261     * Many changes; see the API documentation (make api-doc) and the
262       geany-devel list archives.
263     * Deprecated: plugin_fields, plugin_info symbols.
265     Internationalisation:
266     * New translations: ko, tr.
267     * Updated translations: be, ca, de, en_GB, fi, hu, it, ja, pl,
268       ro, ru, sv, zh_CN
271 Geany 0.14 (April 19, 2008)
273     General:
274     * Don't beep when using Replace All in Session unless all open files
275       have no replacements (fixes #1893796).
276     * Only use filetype detection after Save As, not on every save when the
277       filetype is None (fixes #1891778).
278     * Make Go to Tag commands look for the tag in the current document
279       before searching the workspace.
280     * Check file on disk for changes also when pressing a key.
281     * Ignore documents with no absolute path when saving session files.
282     * Fix segfault with Run command when a project is open and the current
283       file's filetype has no run command.
284     * Make Next Error and Next Message commands add positions to the
285       navigation queue, so the user can move backwards through the list items
286       and return to where they were.
287     * Make pressing escape in the sidebar focus the editor.
288     * Make navigation queue position based to restore the line and column when
289       returning to a previous position (closes #1936927).
290     * Save sorting order of the symbol list when saving a file (fixes #1917262).
291     * Improve "Send Selection To" code (fixes #1909452).
292     * Install header files and add a pkg-config file for external plugins.
293     * Use monospace font for text entry fields in search dialogs (#1907117).
294     * Don't open zero byte sized files read-only (e.g. files in /proc).
296     Filetypes:
297     * Improve Makefile parser to detect targets.
298     * Update PHP tags file to latest PHP API docs (closes #1888691).
299     * Add translucency settings to filetypes.common for semi-transparency.
300     * Add HTML parser to get h1, h2, h3 symbols as well as link anchors and
301       JavaScript functions (fixes #1896068).
302     * Update Javascript, TCL and Assembler parser.
304     Interface:
305     * When closing a tab when using left-to-right tabs, focus the next
306       document, not the previous.
307     * Move Load Tags item from File to Tools menu.
309     Editor:
310     * Don't scroll the editor view if it is unnecessary when using Find
311       Next/Previous, Find Selected, incremental search, Go to Marker or Go to
312       Matching Brace commands.
313     * Fix bug with showing macro list items all on one line.
314     * Fix Python auto-indentation when line endings are set to CR/LF.
315     * Unfold hidden code when the fold point modified (fixes #1923350).
316     * Update Scintilla to version 1.76.
317     * Add (basic) column mode editing (patch by "chuck").
319     Windows:
320     * Replace untitled file header filename after Save As and add to recent
321       files on Windows too.
322     * Resolve Windows shortcuts when opening files.
323     * Fix modal dialog problems on Windows by not setting taskbar hint
324       (closes #1916994).
325     * Add new process spawning implementation. This makes the VCdiff plugin
326       to work on Windows (patch by Pierre Joye, thanks).
327     * Fix crash on Windows when a project could not be opened.
329     Plugins:
330     * Add configurable plugin keybindings support.
331     * Add a HTML Characters keybinding to show the dialog.
332     * Add File Browser keybindings to focus the Path Entry and File List
333     * Rename VCDiff plugin Version Diff.
334     * When quitting, remember plugin filenames that couldn't be loaded at
335       startup as well as active plugins.
337     Plugin API:
338     * Add PLUGIN_KEY_GROUP and keybindings_set_item() to setup a keybinding
339       group.
340     * keybindings_send_command() arguments have changed because of
341       keybinding groups - this breaks the API for plugins already using it.
342     * Make VERSION_CHECK deprecated in favour of PLUGIN_VERSION_CHECK.
344     Documentation:
345     * Add descriptions for several options in the preferences dialog
346       (patch from Robert McGinley).
348     Internationalisation:
349     * New translations: ro.
350     * Updated translations: bg, de, en_GB, es, fr, hu, it, ja, pt_BR, ru.
353 Geany 0.13 (February 05, 2008)
355     General:
356     * Improve configure script and fix some compatibility issues.
357     * Add support for project session files.
358     * Add native GTK printing support (only with GTK 2.10+).
359     * Prevent execution of commands by Geany if the VTE may contain any
360       text on the prompt (thanks to "Jeff Pohlmeyer for reporting).
361     * Store more document-related settings when saving session in the
362       configuration file (including the file encoding).
363     * Detect in-file specified file encoding by scanning the file using
364       regular expressions.
365     * Add binary relocation support.
367     Filetypes:
368     * Add configurable default file extension setting for filetype
369       definition files.
370     * Fix reST autocompletion.
372     Tags:
373     * Show arrays and modifiers like const in calltip return types for
374       C-like files.
375     * Update C global tags file for GTK+ 2.12.
376     * Fix parsing the correct D class name when inheriting, D constructor
377       tags and ignore D import statements.
378     * Remove unnecessary tagmanager status file.
379     * Improve PHP, Ruby and FreeBasic parsers.
381     Interface:
382     * Add 'Indent Type' option in the Document menu.
383     * Add 'Detect from file' Editor indentation pref.
384     * Show TAB or SP for current document's indent type.
385     * Add a 'Newline strips trailing spaces' pref (thanks to Catalin
386       Marinas).
387     * Add 'Strip Trailing Spaces' document menu item.
388     * Add combo box input history for 'Make Custom Target' dialog.
389     * Make Open, Save As dialogs start in project base path (or default
390       path pref) when the current file has no filename.
391     * Add 'Make in base path' project file preference.
392     * Make 'Open Selected File' first try the current file's directory,
393       falling back to the project base path if no file was found.
394     * Fix broken window maximization.
395     * Improve appearance of used treeviews and use rules hints to respect
396       user colour settings.
398     Editor:
399     * Fix hidden lines after deleting a line that is a collapsed fold
400       point.
401     * Make Fold All/Unfold All attempt to scroll the current line in view.
402     * Show line wrap symbol at start of line for wrapped lines.
403     * Allow scrolling past end of document, so the user can append text
404       with the last lines drawn at the top of the view.
405     * Rename "Construct autocompletion" to "Snippets".
406     * Improve usage of "Unfold all children" option.
407     * Update Scintilla to version 1.75.
409     Keybindings:
410     * Add configurable keybindings for Cut, Copy and Paste.
411     * Ask the user whether to override an existing keybinding when setting
412       a combination that is already in use.
413     * Add 'Override Geany keybindings' VTE prefs dialog option (replaces
414       hidden pref), which makes the VTE interpret all keyboard shortcuts
415       except focus group keybindings.
417     Plugins:
418     * Add File Browser sidebar plugin.
419     * Add Version Control Diff plugin (VC Diff), which supports SVN, CVS and
420       GIT (thanks to Yura Siamashka).
421     * Add plugin manager dialog to select plugins to load at startup and to
422       call a plugin configure dialog.
423     * Add new signals: project_open, project_save, project_close.
424     * Add Auto Save plugin.
426     Plugin API:
427     * Add keybindings_send_command() and some other functions.
428     * Add pluginmacros.h to define common macros for app, p_utils, etc.
429     * Add more documentation/comments to demoplugin.c.
430     * Add configure symbol for plugins which is called by Geany when a
431       configure dialog for the plugin is requested, optionally.
432     * Add author field to plugin info struct.
434     Windows:
435     * Enable build support.
436     * Prevent prefs dialog being hidden after using the prefs file dialog.
437     * Create Geany's configuration directory in user's appdata path
438       instead of the default home directory.
440     Documentation:
441     * Show default shortcuts in Keybindings section.
442     * Update Project section for project-based session support.
443     * Add Indentation subsection under Editor section.
444     * HACKING: Update 'Adding a filetype' section.
446     Internationalisation:
447     * New translations: ja, uk, el.
448     * Updated translations: ca, de, en_GB, fr, it, pt_BR, hu, sv, vi.
451 Geany 0.12 (October 10, 2007)
453     Bugs fixed:
454     * Fixed opening the same file twice from the message window/command-line.
455     * Fixed Ctrl-Shift keybindings not working when caps lock is on.
456     * Fixed saving the wrong document when using Save All with unnamed
457       documents.
458     * Fixed replacing with '^' or '$' regex chars.
459     * Fixed hang with Find All/Find Usage with '^' or '$' regex chars.
460     * Fixed hang when replacing all '[ ]*' regex matches (closes #1757748).
461     * Fixed displaying error indicators with Make after entering a
462       subdirectory.
463     * Fixed a possible segfault when parsing tags (a vString bug).
464     * Fixed clipboard problems with some applications.
465     * Fixed crash when trying to open the Save As dialog on Windows.
466     * Fixed crash when saving a file after setting encoding "None".
467     * Fixed scrolling bugs when searching text and the cursor is outside of
468       the current visible area.
470     Filetypes:
471     * Added reStructuredText filetype and parser.
472     * Added Haskell tags support (thanks to Peter Strand).
473     * Added decorator styling for Python.
474     * Parse Python global variables and class variables.
475     * Added support for Java Apache Ant compiler error messages (thanks to
476       Jon Senior).
477     * Added new filetypes CSharp and FreeBasic.
478     * Added filetype Haxe (patch by blackdog, thank you).
480     Plugins:
481     * Added basic plugin support (developers: see the HACKING file).
482     * Added 'Enable plugin support' preference and -p, --no-plugins options.
483     * Added Class Builder plugin (thanks to Alexander Rodin).
484     * Added Export plugin to export current file as HTML or LaTeX.
486     Keyboard shorcuts:
487     * Common bash Ctrl-[a-z] keyboard shortcuts now work when the VTE is
488       focused, and there is an 'enable_bash_keys' hidden preference.
489     * Added 'Move document left' and 'Move document right' keybindings.
490     * Added Find keybinding.
491     * Made fixed keybindings overridable.
492     * Added fixed keybindings for switching to leftmost/rightmost document,
493       Ctrl-Shift-{PageUp,PageDown}.
494     * Change Previous/Next Paragraph fixed commands to Ctrl-{Up,Down};
495       adding Shift extends selection by paragraph. (Scroll by line is now
496       Alt-{Up,Down}).
497     * Made pressing escape focus the editor when using incremental search
498       or Goto Line toolbar fields.
499     * Added keybinding for select current paragraph.
500     * Added keybindings for smart indent and indent/deindent by one space.
501     * Removed convert to lower-/upper-case keybindings.
502     * Added toggle case keybinding and change shortcut to Ctrl-Alt-U.
504     General:
505     * Added preference for 'smart' home key behaviour (thanks to Jeff
506       Pohlmeyer).
507     * Added symbol list icons (thanks to Jean-François Wauthy, and KDevelop
508       for the icons).
509     * Added 'Current chars' indentation mode (closes #1726880).
510     * Save and restore the current notebook page when quitting.
511     * Added support for %e, %f in project run command.
512     * Ignore punctuation chars when moving by word, and use word end
513       boundaries when moving by word to the right (like most GTK+ widgets).
514     * Added hidden editor preference 'use_gtk_word_boundaries'.
515     * Added auto_complete_whilst_editing hidden preference.
516     * Speed up Save All for C-like files.
517     * Don't show file opened/saved/closed messages on the status bar.
518     * Added --no-preprocessing, -P option when generating tags files to
519       disable preprocessing of C/C++ source files.
520     * Added default startup directory option (closes #1704988).
521     * Use current locale as default encoding for new files.
522     * Added simple code navigation (thanks to Dave Moore).
523     * Re-maximize the main window on startup when closed in maximized state
524       (closes #1730369).
525     * Added auto focus (to auto focus widgets below mouse cursor).
526     * Complete rewrite of auto completion to make it user-definable and
527       much more flexible (please read documentation).
528     * Added option to set a default encoding when opening files and disable
529       auto detection of the file encoding.
530     * Improved comment toggling by adding an additional character to mark.
531     * Changed the background colour of the search bar in the toolbar
532       according to the search result.
533     * Use intltool to make geany.desktop translatable
534     * Replace Geany's icon by a new one by Sebastian Kraft (thanks).
535     (Thanks also to Christoph Berg for updating the icon code).
537     Docs:
538     * Changed documentation generation tools from DocBook to reST
539       (thanks to John Gabriele for his great work on this).
540     * Added Plugins section.
541     * Added 'Inserting unicode characters' Editing section (thanks to
542       John Gabriele).
543     * Added 'Hidden preferences' appendix.
544     * Added 'Switching documents' keybindings section.
546     HACKING:
547     * Added notes on adding a filetype.
549     Internationalisation:
550     * New translations: en_GB.
551     * Updated translations: ca, cs, de, es, fi, fr, hu, it, pl, pt_BR, zh_CN.
554 Geany 0.11 (May 21, 2007)
556     Notes for existing users:
557     * Tab is now used for construct completion (for, if, etc.), but it
558       is configurable with the new 'Complete construct' keybinding.
559     * Template files are now stored in ~/.geany/templates/ and the
560       'template.' filename prefix is no longer used. You will need to
561       move any custom template files you have.
562     * Inserting a file header is now optional for filetype templates.
563       Use the string '{fileheader}' to mark where the file header should
564       be placed.
565     * Drag'n'Drop of text inside the editor widget will now move the
566       text instead of copying it.
568     Bugs fixed:
569     * Fix segfault when pressing Ctrl-Enter when there are no workspace
570       tags.
571     * Remove error indicators in all documents when linking (#1705374).
572     * Sort symbol list tags also by line number (#1703575).
573     * Fix #1717418, Hang on SQL file load.
574     * Fix #1718532 - Crash when opening a special HTML file.
575     * Add workaround for PHP closing brace de-indenting.
576     * Fix reloading of read-only documents.
578     Project Management:
579     * Add keybinding to show project properties dialog.
580     * Add project Run command support.
581     * Run Make All and Make Custom from the project base directory.
583     Custom Global Tags:
584     * Update C global tags for GTK+ 2.10 and it's dependencies.
585     * Add option --generate-tags (-g) to generate a global tags file
586       from a list of source files (see docs).
587     * Load global tag files stored in ~/.geany/tags at startup #.
588     * Add Load Tags command in the File menu #.
589     # This is not supported for Pascal, PHP or LaTeX files yet.
591     Calltips (for C-like files):
592     * Show up and down arrows when there are multiple calltip matches.
593     * Show classname in calltips.
594     * Parse pointers in function return type.
595     * Add calltip support for D constructors.
597     Other changes:
598     * Parse 'Entering directory' Make messages so opening files from
599       error messages works for subdirectories (thanks to Josef Whiter).
600     * Make Go to Tag Definition/Declaration work for all tags.
601     * Support filetype templates for all filetypes (see docs).
602     * Make file header optional for filetype templates.
603     * Add 'Find Selected' and 'Find Prev Selected' search commands and
604       keybindings (thanks to Jeff Pohlmeyer).
605     * Add Mark button to the Find dialog, and a Remove Markers item to
606       the Document menu.
607     * Add 'Recurse in subfolders' and 'Extra options' checkboxes to the
608       Find in Files dialog.
609     * Add 'Switch to last used document' keybinding (Ctrl-Tab).
610     * Add Goto Previous/Next Marker keybindings (Ctrl-, and Ctrl-.).
611     * Add Toggle Marker keybinding (Ctrl-M).
612     * Add keybinding for construct completion, and set the default to
613       Tab.
614     * Add MimeType associatiations for: C++ header, Pascal, Perl,
615       Python, httpd-PHP and XML files (thanks to Iñaki Rodriguez).
616     * Add brace indenting support for Perl and TCL.
617     * Make backspace unindent when using spaces for indentation.
618     * Wrap notebook pages when switching tabs.
619     * Speed up loading multiple C-like files slightly.
620     * New filetypes: JavaScript, Lua and Haskell.
621     * Set several widget names to allow users to define custom styles
622       in .gtkrc-2.0.
623     * Add context actions to run custom commands on current selection
624       or the current word below cursor.
625     * Add different auto indention modes.
626     * Improve replacing in rectangle selections.
627     * Add custom commands to send selected text through some definable
628       commands and replace the selection with the output.
629     * Add command line option --column to allow setting the initial
630       column for the first opened file on command line.
631     * Improve the auto scrolling of documents.
632     * Improve loading of the VTE library.
633     * Add an option for using spaces or tabulators when inserting some
634       whitespace.
635     * Add an option to disable Drag'n'Drop in the editor widget.
637     Documentation:
638     * Add Project Management, Global Tags, Construct Completion
639       sections.
640     * Add Bookmarks section (thanks to John Gabriele).
641     * Update Filetype Templates, Search sections.
643     Internationalisation:
644     * New translations: bg.
645     * Updated translations: ca, cs, de, es, fr, zh_CN.
648 Geany 0.10.2 (February 25, 2007)
650     Bugs fixed:
651     * Fixed serious crash of complete X session when using the Stop
652       command when Geany is run from the program menu (closes #1668017).
655 Geany 0.10.1 (February 23, 2007)
657     Bugs fixed:
658     * Wrong tab foreground colour for unmodified documents.
659     * Fixed crashes when closing dialogs by clicking X on some systems.
660     * Fixed missing global tags for C files when a C++ source file was
661       loaded first.
662     * Fixed autocompletion missing tag matches.
663     * Fixed a wrong PASCAL autocompletion.
664     * Set single undo action when toggling multiple lines or stripping
665       trailing spaces.
666     * Prevent some possible invalid memory reads.
667     * Convert config, application and documentation dir paths to locale
668       encoding before using it.
669     * Fixed errors when changing directories containing special
670       characters within the VTE component (thanks to Jeff Pohlmeyer).
671     * Support newer so-names when loading the VTE library (thanks to
672       Jeff Pohlmeyer).
673     * Fixed paste problems on Windows.
674     * When using Save As the returned filename needs to be converted
675       into UTF-8.
676     * Fixed error when parsing of compiler errors by the va_list system.
677     * Added MimeType entry as suggested by Nick Schermer.
678     * LaTeX parser: Allow \section*{} and other commands with *.
679     * Change default keybinding for Close All to Ctrl-Shift-W.
680     * Allow Make for files with no extension - prevent Build when the
681       output filename would be the same as the source file.
682     * Ensure the VTE visual settings are applied when switching to VTE
683       when the Message Window is hidden.
684     * Fixed several issues while opening files and improved code.
685     * Improved the auto scrolling of documents and fixed a bug when
686       opening files remotely.
687     * Fixed wrong D function return type after a class definition.
688     * Added several missing style types for filetype Perl (thanks to
689       John Gabriele for reporting).
690     * Prevent right click in Symbol list from selecting a tag.
691     * Update the symbol list when starting a new document.
692     * Scroll Compiler and Messages window in view when using Next Error
693       or Next Message.
694     * Auto close brackets only when auto completion of constructs is
695       enabled (closes #1665015).
696     * Fixed switching to the wrong tab when showing the unsaved dialog.
698     Internationalisation:
699     * New translations: fi (thanks to Harri Koskinen).
700     * Updated translations: cs, de, es, fr, hu.
703 Geany 0.10 (December 21, 2006)
705     Changes:
706     * Added a dialog to insert HTML special characters.
707     * Added new command line option --line to set the initial line for
708       the first opened file.
709     * Implemented new, own Undo system to undo/redo encoding changes.
710     * Added simple parser for filetype Diff to create tags for each
711       patched file in a diff file.
712     * Added new encoding "None" to open files without any character
713       conversions.
714     * Added Stop button to abort the Run command.
715     * New filetype VHDL.
716     * New scintilla lexer for filetype D with several improvements.
717     * Improved auto completion of multi line comments
718     * Added option to execute programs in the VTE instead of executing
719       them in a terminal emulation window
720     * Removed the limit on the number of files open.
721     * Save the build includes and arguments when quitting.
722     * Added Next Message search command and Next Error build command.
723     * Make search bar automatically wraparound if necessary.
724     * Applied patch from Bob Doan to prevent unnecessary search
725       scrolling and add a preference to suppress some of the search
726       dialogs.
727     * Added Find Previous, Find All in Document/Session buttons for the
728       Find dialog.
729     * Added Replace (but don't Find) button for the Replace dialog.
730     * Added 'Hide Message Window' popup menu command.
731     * Added Alt-[1-9] shortcuts to switch to a certain tab number.
732     * Limit search dialog history to 30 entries.
733     * Change python default compile command to create a compiled
734       python .pyc file (thanks to Bajusz Tamás).
736     Windows changes:
737     * Fix #1611530 'file has changed' message on Windows after saving.
738     * Fixed wrong paste behaviour under Windows with some applications.
740     Bugs fixed:
741     * Fixed crash when using "Make object" on new files.
742     * Fixed incompatible use of read command in the created shell
743       script to execute programs.
744     * Fixed wrong insert position when the cursor was moved by keyboard
745       and comments, includes or a date was inserted.
746     * Fixed some segfaults when inserting comments, dates and
747       includes at a position prior to some deleted text.
748     * Fix message window horizontal scrollbar being too tall on some
749       systems (thanks to Rob van der Linde).
751     Internationalisation:
752     * New translations: fr, hu, it, zh_CN, zh_TW.
753     * Updated translations: be, ca, cs, de, es, vi.
756 Geany 0.9 (September 29, 2006)
758     Changes:
759     * Added function calltips for files open in the current workspace
760       for C-like languages.
761     * Open a second instance by default when starting Geany with no
762       filenames specified on the command-line.
763     * Added better error message support for D, for both DMD and GDC;
764       also GCC-style linker error messages are now parsed.
765     * Text selections now use syntax highlighting foreground colours
766       (but can still be overridden in filetypes.common).
767     * Find in Files improvements: fixed string and whole word only
768       matching options; a directory selector dialog; filenames passed
769       to Grep are now sorted alphabetically.
770     * Remember the VTE current directory at startup.
771     * Show the messages window on build failure or for Find Usage.
772     * Added -s command-line option to not load session files (-i is now
773       used to force a new instance).
774     * Added comment toggle functionality to easily comment and
775       uncomment a line with one shortcut.
776     * Separated filetypes PHP and HTML for better usage.
777     * New filetypes: Diff, Fortran 77 and Ferite.
778     * Added auto completion tags for PASCAL.
779     * Improved VTE usage by adding options for selecting the used shell
780       and ignoring menu bar accelerator (default F10).
781     * Added menu items to insert configurable date/time strings.
782     * Removed the whole FIFO code and replaced it with support for
783       (Unix Domain) Sockets(including Windows support).
785     Windows changes:
786     * Implemented Run command (from the build menu) under Windows.
787     * Enabled socket code on Windows to detect a running instance.
788     * Enabled notification if file on disk has changed under Windows.
790     Bugs fixed:
791     * Fixed a segfault at startup if terminal follow path setting is
792       enabled.
793     * Fixed clicking on error messages being dependent on the current
794       file's directory.
795     * Fixed a bug when clicking on a recent file got the wrong
796       filename.
797     * Fixed a crash when a compiler output reports an error in a blank
798       line(can happen in LaTeX)
799     * Fixed a crash when switching between several filetypes.
800     * Fixed segfault when replacing tabs by spaces.
802     Internationalisation:
803     * New translations: cs, nl, vi.
804     * Updated translations: de, es.
807 Geany 0.8 (August 09, 2006)
809         Changes:
810         * Find in files feature added which uses the Grep tool.
811         * Added Make object command to compile using the Make tool.
812         * Editor notebook tabs can now be reordered by drag and drop.
813         * Added support for back references when using regex replace.
814         * Added a Find button to the Replace dialog to skip matches.
815         * Greatly improved the speed of Replace all/in selection.
816         * Scroll to 1/4 of the view when jumping to a line number.
817         * Show messages on the status bar and in the Status window.
818         * Preferences options for Auto-indentation and Line wrapping.
819         * Use the mouse click position for Go to tag.
820         * Added separate filetype_extensions.conf system file.
821         * Added makefiles for building on Windows.
822         * Added keyboard shortcuts for increase/decrease of line
823           indentation.
824         * Added functionality to uncomment code.
825         * Encoding support
826         * Added support for Unicode Byte-Order-Mark (BOM)
827         * Redesigned preferences dialog.
828         * Added Undo and Redo toolbar buttons.
829         * New filetype: D
830         * Added simple printing support.
831         * Mark errors while compiling source code within Geany with
832           indicators(small squiggly underlines)
834         Bugs fixed:
835         * Use the full path for files opened from the command-line.
836         * Fixed saving a file from the unsaved file dialog.
837         * Fixed replacing with regexes the correct matched text length.
838         * Fixed applying virtual terminal widget settings at startup.
839         * Fixed prepending items to the Recent files menu.
840         * Fixed clipboard commands used in the find entry and Scribble.
841         * Fixed wrong interpretation of syntax highlighting colours
842         * And some more.
844         Windows bugs fixed:
845         * Don't add .c extension when saving with the All files filter.
846         * Fixed a tool chooser dialog crash when path doesn't exist.
847         * Fixed locale problems with Windows message dialogs.
849         Internationalisation:
850         * New translations: be, es, pt_BR, ru.
851         * Updated translations: ca, de, pl.
853         Documentation:
854         * Added Scintilla keyboard commands for editing appendix.
855         * Improved search section; added all find and go to commands.
856         * Added section about character sets.
859 Geany 0.7 (June 04, 2006)
861         * user-definable keyboard shortcuts
862         * filetype definition files can be overridden in Geany's
863           configuration directory (please see documentation)
864         * added filetypes Ruby and Tcl/Tk
865         * improved build system (for Perl, Python, Ruby and others)
866         * loading of Virtual Terminal Emulation can be disabled in the
867           preferences dialog
868         * new menu item "Search" with Find items from Edit menu and new
869           item "Find Previous"
870         * fixed the bug which let Geany crash with newer GTK versions
871         * improved documentation: added documentation for keyboard
872           shortcuts, the build system and filetype definition files
873         * new translations: Catalan and Polish
874         * many small improvements
875         * fixed lots of bugs (please see ChangeLog for details)
878 Geany 0.6 (April 30, 2006)
880         * added option to place new file tabs to the right or left of
881           the tab list
882         * improved file open dialog
883         * improved scrolling of the compiler output window
884         * rewrote most of the code for compiling files, now all
885           settings are read from filetype definition files
886         * now, you can drag files from a file manager into Geany and
887           they will be opened
888         * improved handling of filenames which contain non-UTF8 chars
889         * added user-definable comment characters to all filetype
890           definition files
891         * implemented folding
892         * added file properties dialog
893         * improved search and find dialogs
894         * Geany now creates a FIFO, to communicate between different
895           instances for opening files in an already running instance
896         * added filetypes SQL and (O)Caml
897         * many small improvements
898         * fixed lots of bugs, including #1419473, #1422135, #1421776
899           and #1441359
900         * for more details read the ChangeLog
903 Geany 0.5 (January 27, 2006)
905         * set the Open File dialog directory to the same directory as
906           the current file (thanks to Nick Treleaven for this patch)
907         * fixed some bugs when opening files with non UTF-8 filenames
908         * updated included Scintilla to version 1.67
909         * improved auto indention, now "for (...) {" works, too
910         * added popup menu to sidebar lists, to quickly hide them
911         * symbol list support for filetypes LaTeX and DocBook
912         * added .cc, .hh and .hxx extension for filetype C++
913         * added new keywords for PHP5
914         * added new option "Beep on errors" to disable beeping
915         * eliminated compiler (gcc4) warnings
916         * closed bug #1387828 and #1387839
917         * fixed lots of bugs (please see ChangeLog for details)
920 Geany 0.4 (December 21, 2005)
922         * new filetype: Assembler
923         * new filetype: Conf for configuration files
924         * added a terminal emulation widget, needs only libvte.so at
925           runtime, but it also runs without it, see documentation
926         * made some general improvements to increase startup speed
927         * changed "build with make" keyboard shortcut to Shift+F9 to
928           avoid problems with window managers key bindings
929         * added auto-closing [ and { brackets in LaTex-Mode
930         * improved documentation, but it is not yet complete
931         * improved the symbol list to categorise the tags in a tree
932         * some new options in the preferences dialog
933         * added popup menu to the list of open files
934         * there are lots of other small changes made since last release
935         * some bugfixes (please see ChangeLog for details)
938 Geany 0.3 (November 20, 2005)
940         * Geany now has a mailing list, for details see
941           http://geany.uvena.de
942         * added open files list in the left treeview widget
943         * added toolbar button to open the color chooser
944         * heavily improved recent files menu
945         * added shortcut for "walking" between open documents by
946           pressing STRG+LEFT resp. STRG+RIGHT
947         * created template files for new files with specified filetype
948         * added highlighting support for Python (please give feedback)
949         * extracted all hardcoded styling definitions for all filetypes
950           so they can be easily edited
951         * added vertical line to mark long lines
952         * fixed a bug that caused a segfault if configuration directory
953           could not created
954         * fixed a bug which prevented auto-completion from working
955         * many minor bugfixes (see ChangeLog for details)
958 Geany 0.2 (October 26, 2005)
960         * improved file open dialog
961         * improved Find dialog
962         * powerful Replace dialog
963         * gcc4 compilation fix
964         * minor bugfixes
967 Geany 0.1 (October 19, 2005)
969         * first official release