correct the keyword list for javascript (thanks to Jonas!)
[geany-mirror.git] / ChangeLog
blob5fda3286813a08173e3b310f29312ec6b4838483
1 2010-02-20 Dominic Hopf <dmaphy(at)googlemail(dot)com>
2  * doc/geany.txt:
3    add more detailed hints about reloading configuration (thanks to Tony Rick)
4  * data/filetypes.javascript:
5    correct the keyword list for JavaScript (thanks to Jonas)
7 2010-02-14  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
9  * New release: Geany 0.18.1 "Balfour".
12 2010-02-13  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
14  * src/keybindings.c:
15    Add special cases for handling the Select All keybinding (Ctrl-A) in
16    the toolbar search and goto line text entries (closes #2948040).
17    Strip trailing spaces after reflowing a paragraph, patch by
18    Dominik Wagenfuehr, thanks (closes #2945497).
21 2010-02-07  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
23  * src/geanymenubuttonaction.c, src/templates.c:
24    Partly revert last commit:
25    Unref the new files toolbar menu when freeing templates as it
26    was done before but unref it *after* the menu has been removed
27    from the GeanyMenuButtonAction.
28  * src/encodings.c:
29    Fix possible endless loop when trying to detect the encoding of
30    non-text files (patch by Alexey Antipov, thanks).
33 2010-02-06  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
35  * src/document.c:
36    Allow saving remote files using g_file_set_contents() as well
37    (patch by Алексей Антипов, thanks).
38  * data/filetypes.python:
39    Adjust style for secondary keywords to be less aggressive.
40    Add Python 2.5 builtins keywords.
41  * src/geanymenubuttonaction.c, src/templates.c:
42    Unref the new files toolbar menu when setting a new menu to fix
43    possible crashes when reloading configuration.
44  * src/filetypes.c:
45    When reloading configuration, process the current document at last
46    so the symbol list will be updated correctly.
49 2010-02-01  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
51  * src/symbols.c:
52    Explicitly read filetype configuration files before generating
53    global tags to get settings for custom filetypes.
56 2010-02-01  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
58  * src/plugins.c:
59    Fix GLib warning when toggling 'no plugins available' item.
62 2010-01-31  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
64  * icons/Makefile.am:
65    Include geany.ico in the distribution tarball.
66  * Makefile.am:
67    Fix 'make distcheck' by removing data/latex.tags from EXTRA_DIST.
68  * scripts/create_py_tags.py:
69    Make the script a bit more robust with newer Python versions.
70  * src/templates.c:
71    Use utils_spawn_sync() instead of g_spawn_sync().
74 2010-01-31  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
76  * plugins/export.c:
77    Close meta tag for export date properly.
80 2010-01-28  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
82  * geany.spec.in:
83    Update RPM Spec file (patch by Dominic Hopf, thanks).
86 2010-01-28  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
88  * src/plugindata.h:
89    Fix renaming sci_send_message(), sci_send_command() function pointers.
92 2010-01-25  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
94  * src/highlighting.c, src/highlighting.h, src/sciwrappers.c,
95    src/plugindata.h, doc/Doxyfile.in, doc/pluginsymbols.c,
96    plugins/geanyfunctions.h, plugins/Makefile.am,
97    plugins/pluginmacros.h, plugins/genapi.py, ChangeLog, wscript:
98    Use full function name for GeanyFunctions function pointers. This
99    avoids naming conflicts e.g. with C++'s 'new' keyword.
100    Remove deprecated header pluginmacros.h - use geanyfunctions.h instead.
103 2010-01-24  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
105  * src/utils.c, src/utils.h, src/vte.c:
106    Add utils_copy_environment() and make use of it.
107  * data/snippets.conf, doc/geany.html, doc/geany.txt, src/callbacks.c,
108    src/editor.c, src/templates.c, src/templates.h:
109    Add new special template wildcard "{command:...}" to use the
110    output of a command in templates.
111    Adjust template functions to mostly work with GeanyDocuments.
112    Minor cleanups in the template code.
113  * src/gb.c:
114    Replace the old icons with smiley icons from the Rodent icon theme.
115    Fix showing the same icon for two or more slots.
116    Minor cleanups.
117  * src/editor.c, src/editor.h, src/keybindings.c:
118    Rename fold_symbol_click() to editor_toggle_fold().
119    Use editor_toggle_fold() when the 'Toggle current fold' keybinding
120    was used to respect the 'Fold/unfold all children' preference
121    (closes #2935053).
124 2010-01-22  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
126  * src/build.c:
127    Prevent possible segfault in get_build_group().
128  * src/callbacks.c:
129    Fix GLib warning & beep if trying to insert multiline comment for a
130    filetype that doesn't support it.
133 2010-01-18  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
135  * doc/plugins.dox:
136    Add gcc commands to build a plugin to the HowTo.
137  * src/search.c, src/document.c, src/document.h:
138    Show 'Replaced X matches in Y documents' message when using Replace in
139    Session.
142 2010-01-17  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
144  * scripts/plugin_test.c:
145    Add a little test program which can load and test Geany plugins to
146    verify it is loadable at runtime and all necessary symbols are
147    defined.
148  * doc/plugins.dox, src/geanyobject.c, src/geanyobject.h, src/main.c,
149    src/plugindata.h:
150    Add new signal: "geany-startup-complete" which is sent once all
151    initialization and startup tasks has been done.
152  * README.I18N, configure.ac, wscript, po/LINGUAS:
153    Remove po/LINGUAS from the repository.
154    Generate it automatically if needed by reading available
155    message catalogs from the po directory.
156    Also respect the LINGUAS environment variable properly.
159 2010-01-16  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
161  * src/editor.c:
162    Remove editor_auto_latex() from Geany core and move it to geanyLaTeX
163    plugin.
166 2010-01-12  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
168  * src/editor.c, src/templates.c, src/templates.h:
169    Refactor templates_replace_all() into templates_replace_valist()
170    to save some code duplication.
173 2010-01-11  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
175  * plugins/geanyfunctions.h, src/editor.c, src/editor.h,
176    src/plugindata.h, src/plugins.c:
177    Add editor_insert_text_block() to plugin API.
180 2010-01-01  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
182  * *.*:
183    Update copyright information.
184  * src/keybindings.c, src/keybindings.h, src/plugindata.h,
185    doc/geany.txt, doc/geany.html:
186    Add keybinding to open the last closed tab (closes #2912692).
189 2009-12-31  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
191  * autogen.sh, configure.in, configure.ac:
192    Rename configure.in to configure.ac.
193  * plugins/geanyfunctions.h, src/plugins.c, src/plugindata.h,
194    src/sciwrappers.c:
195    Add sci_find_text() to the plugin API.
196  * doc/geany.html, doc/geany.txt, geany.glade, src/callbacks.c,
197    src/interface.c, src/prefs.c:
198    Add a checkbox in the preferences dialog to explicitly toggle
199    the visibility of the sidebar (closes #2923340).
202 2009-12-29  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
204  * src/editor.c, src/plugins.c, src/plugindata.h,
205    plugins/geanyfunctions.h:
206    Add editor_get_eol_char_name(), editor_get_eol_char_len() and
207    editor_get_eol_char() to the plugin API.
208  * src/callbacks.c, src/plugins.c, src/plugins.h:
209    Fix sensitivity of the Edit->Plugin Preferences menu item
210    if plugins are loaded which do not provide a configuration dialog.
211  * scripts/create_py_tags.py:
212    Rewrite and extend the Python tags parsing script to use
213    Python's inspect module to read symbols from Python modules
214    including scope information.
215  * data/filetypes.restructuredtext:
216    Add the default comment character sequence for reStructuredText.
217  * src/callbacks.c:
218    Show the Find/Goto dialogs if the corresponding toolbar buttons are
219    clicked but their text fields are not part of the toolbar (#2920807).
220  * data/filetypes.common, doc/geany.html, doc/geany.txt,
221    src/highlighting.c:
222    Add new style to change foreground and background colours for
223    calltips (patch by Dimitar Zhekov, thanks, closes #2919229).
224  * src/search.c:
225    Remember the window position of the Find, Replace and Find in Files
226    dialogs (closes #2877988).
229 2009-12-26  Frank Lanitz  <frank@frank.uvena.de>
231  * doc/plugins.dox:
232    Fix a minor typo inside plugin API reference.
235 2009-12-20  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
237  * src/dialog.c, src/dialogs.h, src/document.c, src/prefs.c:
238    Make dialogs_show_prompt() more flexible to take up to three
239    button/response code pairs to be shown.
240    Add a close button to the dialog when asking to Re-Save a
241    deleted file
242    (closes #2916954, based on a patch by Dominik Stadler, thanks).
243  * src/editor.c:
244    Fix LaTeX environment auto completion with CR/LF line endings.
245    Add some sanity checks.
246  * src/document.c:
247    When closing a document after it was deleted from the filesystem,
248    don't ask whether it should be saved first.
249    Mark the document only as changed if it is not closed afterwards.
250    Prevent possible segfaults if the document was closed when it is
251    missing from the filesystem.
252  * src/keybindings.c, src/keyfile.c, src/main.c, src/msgwindow.c,
253    src/msgwindow.h, src/prefs.c:
254    Add MessageWindow::scribble and use it instead of searching the
255    widget pointer everytime.
256  * src/keyfile.c, src/msgwindow.c, src/msgwindow.h, src/ui_utils.h:
257    Add preferences for hiding single tabs from the messages window
258    (no GUI preferences yet, still to be implemented).
259  * src/callbacks.c, src/prefs.c, src/toolbar.c, src/toolbar.h:
260    Set the correct parent window for the toolbar editor
261    dialog (closes #2913334).
262  * src/win32.c, src/win32.h, src/ui_utils.c:
263    Rename win32_show_project_folder_dialog() to
264    win32_show_folder_dialog() as it is not related and not used by any
265    project management related code.
266  * src/ui_utils.c, src/win32.c, src/win32.h, src/dialogs.c:
267    Rename win32_show_file_dialog() to win32_show_document_open_dialog()
268    as it is specialised for opening documents.
269    Implement win32_show_file_dialog() as a generic file open dialog and
270    use it with ui_path_box_new().
273 2009-12-20  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
275  * src/editor.c:
276    Extend auto_latex() function to check whether an environment has been
277    closed within the next lines to avoid auto adding double \end{}.
278  * data/latex.tags:
279    Remove LaTeX tags from SVN. Can be found at
280    http://download.geany.org/contrib/tags/ if needed.
283 2009-12-19  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
285  * src/callbacks.c, src/dialogs.c, src/document.c, src/document.h:
286    Add document_need_save_as().
287    Show the Save As also for documents created from filetype templates
288    instead of saving them directly with the untitled filename.
291 2009-12-09  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
293  * geany.glade, src/interface.c:
294    Move 'Send Selection to Terminal' menu item from Format to Commands
295    submenu.
296  * src/msgwindow.c:
297    When going to a build error, try the current document's path if
298    the parsed filename doesn't exist. (This can happen when we receive
299    build messages in the wrong order - after the 'Leaving directory'
300    messages).
301  * src/msgwindow.c:
302    Refactor msgwin_goto_compiler_file_line().
303  * src/interface.c, src/keybindings.c, geany.glade:
304    Capitalize, add mnemonics, sync with kb.c the Edit->Commands menu item
305    labels.
306  * src/search.c:
307    Refactor/reformat on_replace_dialog_response().
310 2009-12-08  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
312  * geany.spec.in:
313    Improve geany.spec (split the package into a binary and devel
314    package, update BuildRequires and other minor improvements).
315    Patch by Dominic Hopf, thanks.
318 2009-12-08  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
320  * src/filetypes.c, src/filetypes.h:
321    Make group for custom filetypes.
322  * data/filetypes.Genie.conf, data/filetype_extensions.conf:
323    Add custom filetype Genie.
326 2009-12-07  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
328  * src/highlighting.c:
329    Highlight D & Java types from a global tags file.
330  * src/highlighting.c, doc/geany.txt, doc/geany.html:
331    Add debug message warning if recursive lexer_filetype is set.
332  * src/highlighting.c, src/sciwrappers.c, src/sciwrappers.h:
333    Remove duplicate sci_set_keywords(), make argument const.
334  * src/highlighting.c:
335    Only show debug message once if recursive lexer_filetype is set.
336    Tidy highlighting_init_styles code for filetype None handling.
337  * scintilla/makefile.win32, scintilla/KeyWords.cxx,
338    scintilla/LexVerilog.cxx, scintilla/Makefile.am, src/highlighting.c,
339    src/filetypes.c, src/filetypes.h, src/symbols.c, THANKS,
340    tagmanager/parsers.h, tagmanager/makefile.win32,
341    tagmanager/verilog.c, tagmanager/Makefile.am,
342    data/filetypes.verilog, data/filetype_extensions.conf, wscript:
343    Apply patch from Kelvin Gardiner to add Verilog filetype (thanks).
344  * src/highlighting.c:
345    Fix segfault on startup (oops).
346  * data/filetypes.verilog:
347    Fix using common style colours for Verilog.
350 2009-12-03  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
352  * src/highlighting.c, data/filetypes.cpp, data/filetypes.vala,
353    data/filetypes.glsl, data/filetypes.cs, data/filetypes.c:
354    Move C-like filetype properties into configuration files.
355  * src/highlighting.c, data/filetypes.cpp, data/filetypes.cs,
356    data/filetypes.c:
357    Remove now unnecessary "styling_within_preprocessor" C style key.
358  * src/highlighting.c, data/filetypes.cpp, data/filetypes.vala,
359    data/filetypes.glsl, data/filetypes.cs:
360    Use lexer_filetype=C configuration file key instead of duplicate
361    styleset functions for C++, C#, GLSL, Vala.
364 2009-12-02  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
366  * doc/geany.txt, doc/geany.html:
367    Warn about not using BOM for configuration files (confuses GKeyFile
368    parser, at least on my system).
369  * src/filetypes.c:
370    Add/improve debug messages for custom filetypes.
373 2009-11-30  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
375  * data/latex.tags:
376    Add a couple of further latex-beamer commands to list of LaTeX tags.
379 2009-11-30  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
381  * plugins/filebrowser.c:
382    Add an in-entry clear icon to the filebrowser plugin's filter
383    entry (patch by Dominic Hopf, thanks).
384  * src/prefs.c, src/ui_utils.c:
385    Fix two compiler warnings about possibly uninitialised variables.
388 2009-11-29  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
390  * src/main.c, src/main.h, src/plugins.c, src/plugindata.h,
391    plugins/geanyfunctions.h:
392    Add main_is_realized() to the plugin API.
393  * tagmanager/include/tm_tagmanager.h:
394    Update partly outdated and wrong doc comment.
395  * src/main.c, src/main.h, src/socket.c:
396    Allow opening Geany projects remotely.
397  * doc/geany.txt, doc/geany.html, src/vte.c, src/vte.h, src/keyfile.c:
398    Add a hidden pref to allow executing text which was sent to the
399    terminal directly, i.e. do not strip trailing newline characters.
400    Also fix the stripping of trailing newline characters if there was
401    more than one.
404 2009-11-26  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
406  * src/about.c, THANKS:
407    Add Peter Scholtens and Ayke van Laethem to list of translators. Move
408    Kurt de Bree into section of previous translators.
411 2009-11-26  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
413  * src/about.c, src/symbols.c, THANKS, tagmanager/vhdl.c:
414    Fix VHDL symbol list to display all tags (patch from Kelvin Gardiner,
415    thanks).
418 2009-11-24  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
420  * src/highlighting.c:
421    Make stylesets take a ft_id argument so they can be reused fully with
422    custom filetypes, so custom styles and keywords can be set.
423  * src/highlighting.c:
424    Fix setting filetype properties when both the system and the user file
425    have properties set.
426  * src/symbols.c, tagmanager/vhdl.c:
427    Parse VHDL signals.
428  * src/highlighting.c:
429    Fix lexer settings for custom filetypes.
432 2009-11-23  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
434  * tagmanager/php.c:
435    Remove duplicate regular expression for parsing classes.
436    Fix and improve parsing of constants (patch by Harold Aling, thanks).
437  * doc/geany.1.in, doc/geany.html, doc/geany.txt, src/main.c,
438    src/main.h, THANKS, src/about.c:
439    Add new command line option "--socket-file" to be able to specify
440    separate socket filenames for instances
441    (closes #2896027, patch by Jörn Reder, thanks).
442  * src/keybindings.c, src/keybindings.h:
443    Add keybindings_check_event() to manually check GdkKeyEvents against
444    Geany's keybindings.
445  * src/callbacks.c, src/utils.c, src/utils.h:
446    Add and use utils_get_help_url().
447  * geany.glade, src/interface.c, src/prefs.c:
448    Add a Help button to the preferences dialog.
449    Handle Help keybinding events for the preferences dialog especially
450    and open the manual with the corresponding anchor link to the current
451    preferences page (same goes for the new Help button).
454 2009-11-22  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
456  * src/toolbar.c, src/geanymenubuttonaction.c,
457    src/geanymenubuttonaction.h:
458    Use separate tooltips for toolbar menu buttons and their attached
459    drop-down arrows.
460  * tagmanager/latex.c:
461    Improve parsing of sections and chapters by ignoring shortnames
462    like \section[shortname]{label} (closes #2890477).
465 2009-11-19  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
467  * src/geanymenubuttonaction.c:
468    Try to fix Gtk warning when using Tools->Reload Configuration.
471 2009-11-18  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
473  * src/highlighting.c, doc/geany.txt, doc/geany.html,
474    data/filetypes.nsis, data/filetypes.php, data/filetypes.perl,
475    data/filetypes.pascal, data/filetypes.docbook,
476    data/filetypes.python, data/filetypes.conf:
477    Use filetypes.foo [lexer_properties] group instead of hardcoding
478    lexer properties (more flexible e.g. for custom filetypes).
479  * src/highlighting.c, data/filetypes.xml, data/filetypes.html:
480    Replace filetypes.xml html_asp_default_language key with
481    filetypes.html asp.default.language property in [lexer_properties]
482    group.
485 2009-11-17  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
487  * doc/geany.txt, doc/geany.html:
488    Fix slightly wrong description of how to insert Unicode characters.
489  * src/ui_utils.c:
490    Implement GTK_FILE_CHOOSER_ACTION_OPEN mode in
491    ui_setup_open_button_callback().
492  * src/prefs.c, src/prefs.c, src/vte.c:
493    Refactor color and font button callback functions in the
494    preferences dialog. Move the VTE related callback functions
495    into vte.c.
496    Make use of ui_setup_open_button_callback().
497  * src/printing.c:
498    Improve printing status texts (patch by Dominic Hopf, thanks).
499  * src/prefs.c, src/vte.c:
500    Use the default dialog title set by ui_setup_open_button_callback()
501    to be more consistent and to save one string.
504 2009-11-16  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
506  * tagmanager/c.c:
507    Separate DKinds from CKinds.
508    Don't generate macro tags for D, Java.
511 2009-11-12  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
513  * tagmanager/ctags.c, tagmanager/general.h:
514    Make TagManager Assert statements cause g_warning on failure.
515  * src/keybindings.c:
516    Fix reflow paragraph command when cursor < anchor using
517    sci_fix_selection().
520 2009-11-10  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
522  * tagmanager/perl.c:
523    Fix Geany segfault with constant tags (#2895168).
524  * src/symbols.c:
525    Fix invalid tree iter access when using tv_iters.tag_other but not
526    using tv_iters.tag_variable.
527  * HACKING, tagmanager/perl.c:
528    Fix parsing Perl format statements ("other" type doesn't seem to work).
529  * tagmanager/tm_tag.c, tagmanager/perl.c, HACKING:
530    Fix using "other" tag type.
533 2009-11-09  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
535  * src/vte.c:
536    Remove useless comment about applying settings only when libvte.so
537    could be loaded which is only displayed *if* libvte.so is loaded.
538  * src/editor.c:
539    Allow autocompletion for HTML entities even within a word.
540  * src/geanymenubuttonaction.c:
541    Only set the menu of the button if a non-empty GtkMenu is passed to
542    geany_menu_button_action_set_menu() so the menu arrow keeps
543    insensitive.
546 2009-11-07  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
548  * tagmanager/c.c:
549    Fix parsing some Java code (e.g. filetypes.java) after r4407.
552 2009-11-06  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
554  * tagmanager/c.c:
555    Parse D functions with contracts (fixes #1885480).
556    Parse D alias statement like typedef.
557    (Ignore some more D keywords).
558  * tagmanager/c.c:
559    Fix creating D interface tags properly.
560  * tagmanager/c.c:
561    Parse contents of D extern{} and version{} blocks.
564 2009-11-05  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
566  * src/main.c:
567    Remove old code.
570 2009-11-05  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
572  * src/plugindata.h, HACKING:
573    Deprecate PLUGIN_KEY_GROUP() macro - use plugin_set_key_group()
574    instead.
575  * src/callbacks.c:
576    Show number of files saved on status bar when using Save All.
577  * src/highlighting.c:
578    Use default color scheme if pref color scheme file doesn't exist.
579  * src/keybindings.c:
580    Fix moving correct lines after selecting whole line(s).
583 2009-11-04  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
585  * tagmanager/makefile.win32:
586    Fix broken build on Windows because of a typo
587    (patch by Timothy Boronczyk, thanks).
590 2009-11-04  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
592  * src/highlighting.c, src/highlighting.h, src/keyfile.c, src/main.c,
593    src/editor.h:
594    Add 'View->Editor->Color Schemes' menu, for now only shown if color
595    scheme files exist in a colorschemes config directory. Color scheme
596    files must end in ".conf" and currently only the [named_styles]
597    section is read.
598  * src/templates.c, src/utils.c, src/highlighting.c, src/utils.h:
599    Add utils_get_config_files().
600  * src/highlighting.c:
601    Fix issue with default color not being reset if overridden with a
602    system default color.
603  * src/highlighting.c:
604    Only reload filetype files when changing color scheme, not all
605    configuration files.
606  * src/filetypes.c, src/document.c, src/document.h, doc/Doxyfile.in:
607    Deprecate documents_foreach() as it looks more like a function; use
608    foreach_document() instead.
609    Generate dox even for GEANY_DISABLE_DEPRECATED declarations.
612 2009-10-30  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
614  * src/stash.c, src/stash.h:
615    Use typedef instead of pointer for widget_id function arguments.
618 2009-10-29  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
620  * src/pluginutils.c:
621    Don't expand Plugin Preferences page spacing vertically to fill the
622    height of the dialog.
623  * src/interface.c, src/keybindings.c, src/keybindings.h, src/prefs.c,
624    geany.glade, plugins/splitwindow.c:
625    Allow GeanyKeyBinding label field to contain underscores, which won't
626    be displayed by Geany. This saves adding near-duplicate translation
627    strings.
628    Add mnemonics for 3 Edit->Format menu items.
629    Add keybindings_get_label().
630  * src/interface.c, geany.glade:
631    Use GtkVBoxes for Encoding prefs combo boxes to reduce width of prefs
632    dialog.
635 2009-10-28  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
637  * src/ui_utils.c:
638    Desensitize Edit->Commands menu item when no docs are open.
639  * src/interface.c, src/keybindings.c, src/callbacks.c,
640    src/callbacks.h, geany.glade:
641    Add 'Reflow, Transpose, Smart line indent' Edit->Format menu items.
642  * src/sciwrappers.c, src/sciwrappers.h, src/editor.c:
643    Add general function sci_get_string() that works with any string
644    buffer messages that follow the Windows message convention.
645  * src/pluginprivate.h, src/interface.c, src/keybindings.c,
646    src/keybindings.h, src/callbacks.c, src/callbacks.h,
647    src/pluginutils.c, src/pluginutils.h, geany.glade:
648    Add 'Edit->Plugin Preferences' menu item and keybinding.
649    Don't include plugindata.h in pluginutils.h because it redefines the
650    GEANY() macro for plugin use.
651  * doc/geany.txt, doc/geany.html:
652    Update for Plugin Preferences keybinding.
655 2009-10-27  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
657  * src/editor.c:
658    Sort document word completion list.
659  * src/interface.c, src/keybindings.c, src/callbacks.c,
660    src/callbacks.h, geany.glade:
661    Add some useful commands to editor popup menu under "Commands"
662    submenu (thanks to Lex).
663    Move 'Duplicate line or selection' from Format -> Commands submenu.
664  * src/prefs.c, src/ui_utils.c, doc/geany.txt, doc/geany.html:
665    Enable switching the sidebar to the right on Windows again, as it
666    apparently works after all.
667  * src/editor.c:
668    Fix using tab to autocomplete in some other situations that word part
669    completion doesn't apply in.
670  * src/templates.c, src/interface.c, src/ui_utils.c, geany.glade:
671    Add Edit->Commands submenu which is shared with the editor popup menu.
672  * src/interface.c, src/keybindings.c, src/ui_utils.c, geany.glade:
673    Change editor popup Commands submenu to start as child of menubar Edit
674    menu, as this is more usual e.g. for keybindings initialization.
675  * src/interface.c, src/keybindings.c, src/tools.c, src/ui_utils.c,
676    geany.glade:
677    Share a single Format submenu for menubar Edit and popup menu.
680 2009-10-26  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
682  * src/build.c:
683    Fix a compiler warning about an uninitialised variable.
684  * wscript:
685    Don't install unnecessary headers: dialogs.h, main.h, plugins.h,
686    sciwrappers.h, build.h (for the Waf build system,
687    accordingly to r4366).
690 2009-10-26  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
692  * src/prefs.h, src/search.h, src/support.h, src/templates.h,
693    src/toolbar.c, src/toolbar.h:
694    Add missing dox for types/files in the API.
695  * src/filetypes.h, src/Makefile.am, plugins/geanyplugin.h:
696    Don't install unnecessary headers: dialogs.h, main.h, plugins.h,
697    sciwrappers.h, build.h. (This helps to get compiler warnings for uses
698    of functions not in the API).
699    Warning: any plugins that include these headers should remove them.
700  * src/build.c, src/build.h:
701    Move function doc-comments to build.c so they stay in sync. Note:
702    these functions are still not in the API.
703  * HACKING:
704    Add 'Doc-comments' plugin API subsection.
705  * plugins/filebrowser.c:
706    Fix packing configure widgets equally.
707    Use spacing multiples of 6 as recommended by Gnome HIG.
708  * src/prefs.c, src/ui_utils.c, doc/geany.txt, doc/geany.html:
709    Disable switching the sidebar to the right on Windows as it will
710    probably fail like the Split Window plugin.
711  * src/document.c:
712    Improve 'Detect from file' indentation pref by ignoring lines with
713    indentation wider than 24 characters as this is more likely to be
714    alignment than indentation.
717 2009-10-25  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
719  * plugins/saveactions.c:
720    Fix adding the filetype's default extension when using the
721    Instant Save plugin (closes #2885142).
722  * src/main.c:
723    Before looking for line and column numbers specified as part
724    of a filename, ensure the file doesn't exist on disk. This allows
725    opening of files like "test:0".
726  * src/sidebar.c:
727    Rename "select" variables into "selection" to avoid shadowed names.
728  * plugins/geanyfunctions.h, src/plugins.c, src/plugindata.h:
729    Add ui_widget_modify_font_from_string() and sci_goto_line()
730    to the plugin API.
731  * plugins/filebrowser.c:
732    Rename "select" variables into "selection" to avoid shadowed names.
733    Make use of ui_widget_modify_font_from_string().
736 2009-10-23  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
738  * src/interface.c, src/ui_utils.h, src/prefs.c, src/keyfile.c,
739    src/main.c, src/ui_utils.c, doc/geany.txt, doc/geany.html,
740    geany.glade:
741    Add sidebar position interface pref.
744 2009-10-23  Lex Trotman  <elextr.at.gmail.dot.com>
746  * doc/geany.txt, doc/geany.html:
747    Add missing underscores to links.
750 2009-10-22  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
752  * src/keybindings.c, src/keybindings.h, doc/geany.txt, doc/geany.html:
753    Add 'Move line(s) up/down' keybindings.
756 2009-10-22  Lex Trotman  <elextr.at.gmail.dot.com>
758  * src/build.c, src/build.h, src/filetypes.h:
759    Include code for project filetype execute commands and fix bug in
760    saving project filetypes list.
761  * src/project.c, src/build.c, doc/geany.txt:
762    Make non-project execute configuration save to filetypes not geany.conf.
763    Fix closing of project failing to remove build commands dialog entry.
766 2009-10-21  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
768  * src/project.c, src/ui_utils.c:
769    Set border width for project properties build table.
770  * geany.glade, src/interface.c:
771    Don't expand hard tab width alignment.
774 2009-10-20  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
776  * src/highlighting.c, src/filetypes.c, src/document.c, src/symbols.c,
777    doc/geany.txt, doc/geany.html:
778    Support loading global tags files for custom filetypes.
779  * src/keybindings.c, src/keybindings.h, src/editor.c, src/editor.h,
780    doc/geany.txt, doc/geany.html:
781    Add 'Word part completion' keybinding so keys other than Tab can be
782    used, or to clear/change the combination so Tab does full completion
783    like before.
784  * src/keybindings.c, src/keybindings.h, doc/geany.txt, doc/geany.html:
785    Add 'Select to previous/next word part' keybindings.
786  * src/keybindings.c, src/keybindings.h, doc/geany.txt, doc/geany.html:
787    Add 'Switch to Messages' focus keybinding.
790 2009-10-19  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
792  * doc/geany.txt, doc/geany.html:
793    Add 'Custom filetypes' section.
794  * src/filetypes.c, src/filetypes.h, src/document.c,
795    doc/geany.txt, doc/geany.html, tagmanager/tm_source_file.c,
796    tagmanager/include/tm_source_file.h:
797    Add filetype "tag_parser" key so custom filetypes can use an existing
798    tag parser.
799    Add tm_source_file_get_named_lang().
800  * src/highlighting.c, src/filetypes.c, src/filetypes.h, doc/geany.txt,
801    doc/geany.html:
802    Add filetype "lexer_filetype" key so custom filetypes can use an
803    existing lexer.
806 2009-10-19  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
808  * THANKS, src/about.c:
809    Add Xhacker Liu for his work at zh_CN translation to long list of
810    translators.
813 2009-10-16  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
815  * src/sciwrappers.c:
816    Remove unnecessary line number margin padding.
817  * scintilla/include/Scintilla.h, scintilla/include/Scintilla.iface,
818    scintilla/ScintillaBase.h, scintilla/ScintillaBase.cxx,
819    src/editor.c:
820    Improve word part autocompletion so AC list is not cancelled and
821    reshown (this also stops the selection changing).
822    Add SCI_AUTOCGETCURRENTTEXT message (will be sent upstream).
823  * src/editor.c:
824    Improve CamelCase word part autocompletion for runs of capital letters.
825  * src/editor.c:
826    Don't complete snippets if there's a selection.
829 2009-10-16  Lex Trotman  <elextr(at)gmail(dot)com>
831  * src/build.c:
832    Fix crash opening project when Geany started with no geany.conf.
835 2009-10-15  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
837  * scintilla/ScintillaBase.h, scintilla/ScintillaBase.cxx, src/utils.c,
838    src/utils.h, src/sciwrappers.c, src/editor.c, doc/geany.txt,
839    doc/geany.html:
840    Add word part autocompletion for the current selected item when
841    pressing Tab - Enter still completes normally.
842    Add foreach_str() API macro.
843    Temporarily modify scintilla to say if tab was used for
844    autocompletion.
845  * src/templates.c, src/build.c, src/utils.c, src/utils.h,
846    src/project.c, src/search.c, src/editor.c, src/ui_utils.c,
847    plugins/classbuilder.c:
848    Revert r4301 - utils_free_pointers() taking 4 arguments.
849  * src/highlighting.c, src/highlighting.h, src/plugindata.h,
850    src/document.c, src/plugins.c, plugins/geanyfunctions.h,
851    plugins/splitwindow.c:
852    Add highlighting_set_styles() to API, use for Split Window plugin so
853    filetypes.common settings get set too.
854    Make highlighting_set_styles() take GeanyFiletype pointer instead of
855    filetype id.
856  * src/document.c, src/editor.c, plugins/splitwindow.c:
857    Call editor_apply_update_prefs() from editor_create_widget() so
858    correct tab width and other settings are applied for Split Window
859    plugin.
862 2009-10-14  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
864  * src/keybindings.c:
865    Don't include trailing newlines when using reflow command.
866  * src/notebook.c:
867    Add stock close buttons to notebook tab popup menu.
868  * src/plugindata.h, src/document.c, src/plugins.c, src/ui_utils.c,
869    plugins/geanyfunctions.h:
870    Add document_get_notebook_page() to API.
871    Minor edits of dox.
872  * data/templates/files/file.html, data/templates/files/file.php:
873    Fix wrong escaping (patch by dmaphy, thanks - closes #2878138).
874  * src/interface.c, src/ui_utils.c, geany.glade:
875    Move Tools configuration items to top of menu.
876  * src/keybindings.c, src/search.c:
877    Fix warning when using Find in Files with no documents open; make
878    keybinding work in this case.
881 2009-10-13  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
883  * src/notebook.c, src/plugindata.h, src/plugins.c, src/ui_utils.c,
884    src/ui_utils.h, plugins/geanyfunctions.h, plugins/splitwindow.c:
885    Make Split Window 'Show current document' button have a drop-down menu
886    to select the other documents.
887    Add new API function ui_menu_add_document_items().
890 2009-10-13  Lex Trotman  <elextr(at)gmail(dot)com>
892  * src/build.c:
893    Fix sensitivity settings for compile and build toolbar items.
896 2009-10-12  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
898  * src/templates.c:
899    Don't use filetype submenus for templates (slower to navigate, often
900    only 1 per-filetype anyway).
901  * src/templates.c:
902    Put old filetype template menu items in 'Old' submenu as they should
903    be removed after the 0.19 release.
904  * src/keybindings.c, src/keybindings.h, src/pluginutils.c:
905    Add GeanyKeyGroup callback support, which allow keybinding callbacks
906    to be ignored if inappropriate so a later keybinding with the same
907    key combination can intercept it. (Also group callbacks are usually
908    tidier than separate callbacks).
909    Remove special handling for GEANY_KEYS_EDIT_COMPLETESNIPPET.
910  * src/templates.c, src/build.c, src/utils.c, src/utils.h,
911    src/project.c, src/search.c, src/editor.c, src/ui_utils.c,
912    plugins/classbuilder.c:
913    Make utils_free_pointers() take 4 arguments, add to API.
914  * src/templates.c, src/tools.c, src/ui_utils.c:
915    Fix memory leaks with gtk_container_get_children().
918 2009-10-12  Lex Trotman  <elextr(at)gmail(dot)com>
920  * src/build.c:
921    Ensure that old style build config is not loaded if it does not exist.
924 2009-10-12  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
926  * THANKS, src/about.c, po/LINGUAS, po/gl.po:
927    Added Galician translation. Thanks to José Manuel Castroagudín Silva.
930 2009-10-11  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
932  * geany.glade, THANKS, src/about.c, src/document.c, src/encodings.c,
933    src/interface.c:
934    Apply set default encoding for existing files only if the files are
935    non-Unicode (patch by Alexey Antipov, thanks).
938 2009-10-04  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
940  * src/highlighting.c:
941    Move new_styleset() and preprocessor setup code into styleset_c_like().
942  * src/highlighting.c:
943    Call apply_filetype_properties() from styleset_c_like().
946 2009-10-03  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
948  * doc/geany.txt, doc/geany.html:
949    Improve information about predefined keybindings which are
950    commonly used across applications (patch by Lex Trotman, thanks).
951  * src/printing.c:
952    Enable embedded page setup properties in the (Unix) Print dialog
953    on newer GTK versions (closes #2870596).
954  * src/highlighting.c:
955    Map global types (read from tags files) to keyword style for
956    filetype Java.
959 2009-10-01  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
961  * src/templates.c:
962    Fix wrong creation of filetype template menu items for custom
963    filetypes.
964  * src/highlighting.c:
965    Use jscript_keyword for SCE_HB[A]_WORD markup styles.
966  * src/templates.c:
967    Group 'New with template' items by filetype submenu (currently only for
968    toolbar menu).
969    Show custom file template items before filetype template items.
970  * src/templates.c, src/interface.c, src/geanymenubuttonaction.c,
971    geany.glade:
972    Only use one 'New with template' submenu - reparent as needed.
973  * src/templates.c:
974    Don't create templates/filetype.none either.
975  * src/templates.c:
976    Warn if custom template file no longer exists.
979 2009-09-30  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
981  * src/symbols.c:
982    Add missing icon for Java packages in the Symbol List.
985 2009-09-30  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
987  * src/highlighting.c, data/filetypes.vala:
988    Add Vala keywords to conf file.
989  * src/templates.c, doc/geany.txt, doc/geany.html:
990    Read custom file templates from $prefix/share/geany/templates/files as
991    well as user dir.
992  * src/templates.c, data/templates, data/templates/files,
993    data/templates/files/file.rb, data/templates/files/file.html,
994    data/templates/files/main.java, data/templates/files/main.c,
995    data/templates/files/main.cxx, data/templates/files/file.php,
996    data/templates/files/main.d, data/templates/files/program.pas,
997    data/templates/files/main.py, data/templates/files/file.tex,
998    wscript, Makefile.am:
999    Move filetype template defaults into custom file template files.
1002 2009-09-29  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1004  * src/symbols.c, tagmanager/perl.c:
1005    Change Perl tag parser to ctags SVN r601. This removes support for
1006    buggy local/my/our but it parses constant/format/labels and should
1007    be less buggy overall (closes #2861232).
1008  * src/templates.c, src/utils.c, src/utils.h, src/symbols.c:
1009    Add utils_get_file_list_full() which can optionally sort or include
1010    a full path for each list item.
1011  * src/utils.c, src/plugindata.h, src/plugins.c:
1012    Add utils_get_file_list_full() to API.
1015 2009-09-28  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1017  * src/keybindings.c, src/sidebar.c, src/sidebar.h,
1018    src/makefile.win32, src/project.c, src/prefs.c, src/treeviews.c,
1019    src/callbacks.c, src/notebook.c, src/treeviews.h, src/document.c,
1020    src/main.c, src/symbols.c, src/Makefile.am, src/ui_utils.c,
1021    po/POTFILES.in, wscript:
1022    Rename treeviews.[hc] -> sidebar.[hc].
1023  * data/filetypes.common:
1024    Remove unused [styling] arguments.
1025  * src/highlighting.c, data/filetypes.markdown,
1026    data/filetypes.restructuredtext:
1027    Remove style defaults from the code - just read them from
1028    configuration files.
1029  * src/highlighting.c, HACKING:
1030    Add apply_style_entries() to simplify implementing styleset_foo().
1031  * src/highlighting.c:
1032    Remove filetype keyword defaults from the code - just read them from
1033    configuration files.
1034  * src/highlighting.c:
1035    Add sci_set_keywords() wrapper.
1038 2009-09-27  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1040  * scripts/create_py_tags.py:
1041    Make the code a bit more pythonic.
1042  * doc/images/build_menu_commands_dialog.png,
1043    doc/images/main_window.png:
1044    Add new images referenced in the documentation.
1045  * doc/geany.html, doc/geany.txt:
1046    Several documentation improvements (patch by Lex Trotman, thanks).
1047  * src/pluginutils.c:
1048    Fix setting the appropriate page of the combined plugins
1049    preferences dialog.
1052 2009-09-27  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1054  * src/keybindings.c:
1055    Only focus toolbar goto line entry when pressing keybinding if it's
1056    visible (patch by Eugene Arshinov, thanks).
1057  * src/callbacks.c:
1058    Focus editor after entering a number in the goto line toolbar entry.
1059  * configure.in:
1060    Use AC_PATH_PROG instead of which for portability (patch by Erik
1061    Southworth, thanks).
1062  * src/plugins.c:
1063    Show plugins that only implement plugin_configure_single() in the
1064    multiple-configure dialog as a page with a configure button on it.
1065    Add padding for multiple-configure dialog.
1066    Make the multiple-configure dialog notebook tabs scrollable.
1067  * src/pluginutils.c, src/pluginutils.h:
1068    Don't build pluginutils.o if HAVE_PLUGINS is not defined.
1069  * src/pluginprivate.h, src/plugindata.h, src/pluginutils.c,
1070    src/plugins.c, src/pluginutils.h, src/plugins.h, po/POTFILES.in,
1071    plugins/geanyfunctions.h, plugins/filebrowser.c:
1072    Add plugin_show_configure() API utility function.
1073    Add File Browser popup menu 'Preferences' item.
1074  * src/highlighting.c:
1075    Add get_keyfile_ints() instead of using tmp_style hack.
1076  * src/highlighting.c, data/filetypes.xml:
1077    Change new html_asp_default_language markup pref to use integer,
1078    not hex in config file.
1079    Fix minor issue with changing pref back to 0.
1080  * src/highlighting.c:
1081    Fix possible segfault in get_keyfile_int() if key value is malformed.
1084 2009-09-24  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1086  * THANKS, src/about.c, src/highlighting.c, data/filetypes.xml:
1087    Add "html_asp_default_language" pseudo style to filetypes.xml
1088    to allow setting the used language in embedded ASP code
1089    (patch by Ross McKay, thanks).
1090  * src/filetypes.xml:
1091    Update VBScript keywords (patch by Ross McKay, thanks).
1094 2009-09-24  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1096  * src/keybindings.c, THANKS:
1097    Apply patch from Lex Trotman to make 'Reflow block/lines(s)'
1098    keybinding use line breaking column when enabled.
1099  * src/document.c:
1100    Fix showing the document before reload dialog when opening an
1101    already-open file.
1102  * src/pluginprivate.h, src/plugins.c, doc/pluginsymbols.c:
1103    Add plugin_configure_single() plugin symbol which is easier to
1104    implement than plugin_configure() but won't support a
1105    multiple-plugin configure dialog.
1106  * src/plugins.c:
1107    Show multiple plugins in the 'Configure Plugins' dialog.
1110 2009-09-22  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1112  * doc/geany.txt, doc/geany.html:
1113    Change 'Foo tab in preferences dialog' titles to 'Foo preferences'.
1114    Minor edits.
1115  * doc/geany.txt, doc/geany.html:
1116    Add 'Toolbar entries' section.
1117  * doc/geany.txt, doc/geany.html:
1118    Update 'Go to line' keybinding description.
1119  * doc/geany.txt, doc/geany.html:
1120    Split keybinding table into group tables; update KB links.
1123 2009-09-21  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1125  * src/build.c:
1126    Fix compiler warnings about uninitialised variables.
1127  * src/callbacks.c, src/document.c:
1128    When reloading files, use the previously set encoding instead of
1129    detecting it again (closes #2862041).
1130  * configure.in:
1131    Turn on automake silent rules if supported.
1134 2009-09-21  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1136  * src/utils.c:
1137    Speed up sorting in utils_get_file_list(). This reduces the file
1138    browser delay on displaying a big directory, e.g. /usr/bin.
1139  * src/build.c:
1140    Expand command entry width when expanding Build Commands dialog.
1141  * src/build.c:
1142    Split Build Commands dialog notes label and edit text.
1143  * src/build.c:
1144    Add padding for Build Commands dialog separators.
1145    Add colons for regex field labels; fix 1 capitalisation.
1146  * src/build.c:
1147    Fix none filetype Build Commands dialog label.
1148    Make group labels bold.
1149  * src/build.c, src/ui_utils.h, src/dialogs.c, src/notebook.c,
1150    src/ui_utils.c:
1151    Add & use ui_label_set_markup(), ui_label_new_bold().
1152  * src/ui_utils.h, src/printing.c, src/tools.c, src/project.c,
1153    src/prefs.c, src/dialogs.c, src/geanyentryaction.c,
1154    src/plugindata.h, src/vte.c, src/search.c, src/ui_utils.c:
1155    Make ui_entry_add_clear_icon() take a GtkEntry, not GtkWidget.
1156  * src/keybindings.c:
1157    Make 'Go to Line' keybinding focus the toolbar entry if visible.
1160 2009-09-20  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1162  * src/filetypes.c, src/filetypes.h, src/symbols.c,
1163    tagmanager/parsers.h, tagmanager/makefile.win32,
1164    tagmanager/abc.c, tagmanager/Makefile.am, data/filetypes.abc,
1165    data/filetype_extensions.conf, wscript:
1166    Add new filetype: Abc (patch by Eric Forgeot, thanks).
1167  * tagmanager/php.c:
1168    Merge recent changes from the CTags project to further improve
1169    PHP symbol parsing.
1172 2009-09-17  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1174  * src/printing.c:
1175    Fix wrong alignment of printed pages when page headers are
1176    disabled (closes #2856822).
1177    Plug a small memory leak and improve function signature of
1178    add_page_header().
1179  * src/keyfile.c:
1180    Save an if expression.
1181  * src/ui_utils.c:
1182    After clearing a text field using the embedded clear icon, put the
1183    input focus into this text field.
1186 2009-09-17  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1188  * plugins/filebrowser.c:
1189    Free file list memory whilst iterating the list.
1190    Minor formatting fixes.
1191  * src/utils.c, src/utils.h:
1192    Add foreach_dir() API macro.
1193    Update API docs for utils_get_file_list().
1194  * wscript, src/queue.c, src/editor.c, src/Makefile.am, src/queue.h,
1195    po/POTFILES.in:
1196    Remove queue.[hc] - use GQueue instead of GeanyQueue.
1197    Beep if there are no more snippet positions.
1198    Limit length of snippet positions queue to 20.
1201 2009-09-16  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1203  * src/keybindings.c, src/callbacks.c, src/search.c:
1204    Make Goto Tag commands use the current selection if present (useful
1205    for selecting part of a tag or for ReST section names with spaces
1206    in).
1207  * src/document.c:
1208    Don't move the cursor when reloading.
1209  * src/plugindata.h, src/editor.c, src/editor.h:
1210    Make editor_prefs.snippets hash table private (not a pref).
1213 2009-09-15  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
1215  * src/main.c:
1216    Remove deprecated --debug flag. Please use --verbose/-v instead.
1219 2009-09-15  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1221  * src/search.c:
1222    Show Find in Files stderr output in messages window instead of
1223    debug window so that invalid regex messages can be seen easily.
1224    Combine FIF stdout and stderr callback code.
1227 2009-09-14  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1229  * src/utils.c:
1230    Fix opening filenames beginning with two dots (closes #2858487).
1231  * src/interface.c, src/highlighting.c, src/prefs.c, src/filetypes.c,
1232    src/filetypes.h, src/main.c, doc/geany.txt, doc/geany.html,
1233    data/filetypes.common, geany.glade:
1234    Update syntax highlighting after changing the 'Invert syntax
1235    highlighting colors' pref, instead of requiring a restart.
1236    Remove filetypes.common invert_all option - use 'Invert syntax
1237    highlighting colors' pref instead (closes #2854525).
1238  * src/prefs.c, src/dialogs.c, src/dialogs.h:
1239    Add 'Allow' button when showing the conflicting keybinding dialog.
1240    Make dialogs_show_question_full() use GTK dialog on Windows if
1241    button text is not the stock yes/no items.
1242    Add dialogs_show_prompt() which also has an 'Apply' button.
1243  * src/queue.c, src/queue.h:
1244    Add warning that GeanyQueue may be removed.
1245  * src/keybindings.c, src/editor.c, src/editor.h:
1246    Change snippet_goto_next_cursor() to
1247    editor_goto_next_snippet_cursor() as it's in editor.h.
1248    Avoid using GPOINTER_TO_INT macro.
1251 2009-09-13  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1253  * src/keybindings.c:
1254    Fix 'Reflow block' command when at the last paragraph and there's
1255    no last newline (patch by Eugene Arshinov, thanks).
1256  * HACKING:
1257    Add 'Compiler options & warnings' section.
1258    Update Style section to be clearer about code alignment and show
1259    some example code.
1260    Other minor edits.
1263 2009-09-12  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1265  * src/keybindings.c, src/sciwrappers.c, src/sciwrappers.h,
1266    src/plugindata.h, src/plugins.c, src/editor.c,
1267    plugins/geanyfunctions.h:
1268    Add sci_set_marker_at_line(), sci_delete_marker_at_line(),
1269    sci_is_marker_set_at_line() to the plugin API (thanks to Yura
1270    Siamashka).
1271    Add sci_toggle_marker_at_line().
1272    Fix SciFuncs alignment.
1275 2009-09-11  Lex Trotman  <elextr(at)gmail(dot)com>
1277  * src/build.c
1278    Fix erroneous free of returned string in prepare_run_script.
1281 2009-09-10  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
1283  * data/filetypes.latex:
1284    Changing default value for showing pdf and dvi to ensure to take
1285    *.pdf and *.dvi file.
1288 2009-09-07  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
1290  * src/about.c, THANKS:
1291    Change language string for Slovenian translation.
1294 2009-09-07  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1296  * tagmanager/txt2tags.c:
1297    Fix multi-byte character constant comparison.
1298  * src/treeviews.c:
1299    Fix Gtk warning when trying to update documents popup menu item
1300    sensitivity before they exist.
1303 2009-09-06  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1305  * src/plugins.c:
1306    Improve the opening string in the plugin manager dialog.
1307  * doc/geany.css:
1308    Use "max-width" to set the document width of the generated
1309    HTML documentation to let the text be auto-wrapped.
1310  * src/prefs.c, src/tagmanager/include/guregex.h,
1311    src/tagmanager/include/tm_tagmanager.h:
1312    Remove trailing spaces (patch by André Hentschel, thanks).
1313  * src/treeviews.c:
1314    Fix a compiler warning.
1315  * src/document.c:
1316    Fix crash when opening documents.
1317  * src/build.c, src/build.h, src/project.c:
1318    Adjust coding style (no code changes).
1319  * src/build.c, src/project.c:
1320    Use NZV() macro instead of strlen() to check for empty strings.
1321    Remove the FOREACH_GEANYBUILDCMD_ENTRY() macro.
1322  * doc/plugins.dox, plugins/geanyfunctions.h, src/document.c,
1323    src/geanyobject.c, src/geanyobject.h, src/plugindata.h,
1324    src/plugins.c, THANKS:
1325    Add new plugin signal: "document-before-save".
1326    Add get_line_end_position(), set_target_start(), set_target_end(),
1327    replace_target() to the plugin API
1328    (patch by Eugene Arshinov, thanks).
1329    Add new plugin signal: "document-filetype-set" (closes #2852286).
1330  * data/filetype_extensions.conf, data/filetypes.txt2tags, src/about.c,
1331    src/filetypes.c, src/filetypes.h, src/plugindata.h, src/symbols.c,
1332    tagmanager/Makefile.am, tagmanager/makefile.win32,
1333    tagmanager/parsers.h, tagmanager/txt2tags.c, tagmanager/txt2tags.c,
1334    wscript, THANKS:
1335    Add new filetype: Txt2Tags (patch by Eric Forgeot, thanks).
1338 2009-09-04  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1340  * src/treeviews.c, src/document.c:
1341    Apply patch from Thomas Martitz to improve sidebar type-ahead code:
1342    Use gtk_notebook_set_current_page() instead of
1343    document_open_file_full() when choosing an item from the documents
1344    list.
1345    Avoid using goto in document_open_file_full().
1348 2009-09-03  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1350  * src/treeviews.c, src/document.c, src/document.h, THANKS:
1351    Enable type-ahead find for sidebar symbols and documents tabs
1352    (patch by Thomas Martitz, thanks).
1353  * src/build.c:
1354    Fix 2 free's of possibly uninitialized pointers.
1357 2009-09-03  Lex Trotman  <elextr(at)gmail(dot)com>
1359  * src/build.c, src/filetypes.h, src/filetypes.c
1360    Only write filetype config files when build command or regex is
1361    actually changed.  Removed commented code in src/filetypes.c.
1362  * src/build.c
1363    Ensure uses of filename are protected against nulls when running
1364    a build command and give status message if not.
1367 2009-09-01  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1369  * src/plugins.c:
1370    Remove plugin from plugin manager dialog on unloading if it no
1371    longer exists or is incompatible.
1374 2009-08-31  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1376  * src/plugins.c:
1377    Add warning if only one of the plugin_key_group[_info] symbols is
1378    defined for a plugin.
1379  * src/templates.c, src/highlighting.c, src/dialogs.c, src/filetypes.c,
1380    src/filetypes.h, src/document.c, src/main.c, src/symbols.c,
1381    TODO:
1382    Merge custom-filetypes branch:
1383    Support adding custom filetype files e.g. filetypes.Foo.conf.
1384  - Code:
1385    Allow GeanyFiletype::extension to be NULL.
1386    Add note about using GeanyFiletype pointer instead of filetype_id
1387    for filetypes.c function arguments.
1388    Replace styleset_none() with styleset_default().
1391 2009-08-30  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1393  * src/prefs.c:
1394    Show the sidebar if either the documents or the symbols list are
1395    enabled (related to #1876107).
1398 2009-08-29  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1400  * src/build.c, src/filetypes.c:
1401    Fix compiler warnings.
1402  * src/utils.c:
1403    Fix removing leading double slashes in filenames which are used for
1404    network resources on Windows (closes #2844085).
1407 2009-08-27  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1409  * src/keybindings.c:
1410    Fix Make keybindings (patch by Lex Trotman, thanks).
1411  * src/geany.h:
1412    Define G_GNUC_WARN_UNUSED_RESULT if GLib < 2.10.
1413  * doc/plugins.dox:
1414    Mention Files link at top for header files; demoplugin.c.
1415    Minor edits; remove 'far from being complete'.
1416  * src/keyfile.c, src/keyfile.h, src/main.c,
1417    data/filetype_extensions.conf, HACKING:
1418    Remove --generate-data-files argument & code - just edit
1419    filetype_extensions.conf by hand (filetype order was broken
1420    anyway).
1421    Add *.H extension for C++ (useful for non-Windows systems).
1424 2009-08-27  Lex Trotman  <elextr(at)gmail(dot)com>
1426  * src/build.c
1427    Fix implementation of loading old project files with base
1428    directories. Use project_make_base_path instead of re-
1429    implementing.  Now depends on project.c reading base dir
1430    prior to calling load_build_menu.
1431  * src/build.c
1432    Change usage of project base directory to conform with
1433    previous documented behavior when loading old project files.
1434  * src/build.c:
1435    Change make custom and make object to ignore make in base path
1436    when reading old project file settings.  Changed some indent
1437    spaces to tabs. Fix missing compile menu accelerator.
1440 2009-08-26  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1442  * doc/plugins.dox:
1443    Add warning about not using undocumented features.
1444    Add reference to HACKING for plugin API development.
1445  * HACKING:
1446    Add section 'Plugin API/ABI design'.
1447  * src/keybindings.h, src/makefile.win32, src/project.h,
1448    src/filetypes.h, src/Makefile.am, wscript:
1449    Use GEANY_PRIVATE to hide some fields from plugins.
1450  * src/build.c:
1451    Fix invalid memory read (#2844632, patch by Lex Trotman, thanks).
1452  * src/build.c, src/build.h, src/project.c:
1453    Use build_ prefix for 3 functions in build.h; add a static modifier.
1456 2009-08-25  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1458  * tagmanager/php.c:
1459    Improve parsing of PHP functions by requiring a valid modifier or
1460    whitespace before the 'function' keyword to ignore some false
1461    positives like function tags inside comments
1462    (patch by Harold Aling, thanks).
1463  * tagmanager/python.c:
1464    Don't parse comments after import statements and other tags
1465    (closes #2838938, patch by Huandari Lopez, thanks).
1468 2009-08-25  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1470  * data/filetypes.markdown:
1471    Add filetypes.markdown for configuration (thanks to Jon Strait).
1472  * src/build.c, src/keybindings.c, src/keybindings.h, src/plugindata.h,
1473    src/pluginutils.c, src/plugins.c, src/pluginutils.h,
1474    plugins/geanyfunctions.h:
1475    Remove GeanyKeyGroup struct from the API - plugins should not set
1476    these fields.
1477    Make keybindings_set_item() duplicate the name and label fields
1478    (needed by GeanyLua) and return a keybinding pointer.
1479    Add keybindings_get_item() to the API (in case it's useful).
1480    Move some keybinding code out of plugin source files.
1483 2009-08-24  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1485  * src/build.h, src/project.h, src/plugindata.h, src/filetypes.h:
1486    Don't generate build.h API docs until everything is approved and
1487    functions are actually in geany_functions.
1488    Move new GeanyFiletype and GeanyProject field(s) to end of struct
1489    as they may be changed or made private later.
1490    Break ABI for fields removed.
1493 2009-07-30  Lex Trotman  <elextr(at)gmail(dot)com>
1495  * src/build.h, src/build.c, src/keybindings.c, src/filetypes.c
1496    src/keyfile.c, src/project.c
1497    Changed names of symbols visible in build API to GEANY_xxx.
1500 2009-07-29  Lex Trotman  <elextr(at)gmail(dot)com>
1502  * src/project.h, src/project.c, src/build.c
1503    Remove make_in_base_dir and run_cmd fields from project structure.
1504    Replaced by build functionality.  Remove incorrect use in src/build.c
1505    build_run_cmd function.
1508 2009-07-28  Lex Trotman  <elextr(at)gmail(dot)com>
1510  * src/project.h, src/project.c
1511    Removed unused project_get_make_dir function, this is now per
1512    command.
1515 2009-07-28  Lex Trotman  <elextr(at)gmail(dot)com>
1517  * src/build.c, src/build.h, src/project.c, src/keyfile.c, src/filetypes.c
1518    Fix some more warnings.
1519    Fix commented out execute/stop toolbar code in build.c.
1520    Add extra plugins documentation for GBO_TO_CMD and GBO_TO_GBG macros.
1521    Changed build.h api so all functions prefixed with build_.
1524 2009-07-27  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1526  * src/build.c, src/build.h, src/project.c:
1527    Fix some gcc warnings with '-Wall -W -ansi' enabled.
1530 2009-07-25  Lex Trotman  <elextr(at)gmail(dot)com>
1532  * src/build.c
1533    Fixed leaks and crashes due to inconsistent use of static vs dynamic strings
1534    when reading old format configuration & project files.
1535  * src/build.c, src/project.c
1536    Fixed GLib array assertion warnings when no project filetypes are
1537    available to be saved.
1539 2009-07-24  Lex Trotman  <elextr(at)gmail(dot)com>
1541  * src/build.c
1542    Fix build warnings.
1545 2009-07-22  Lex Trotman  <elextr(at)gmail(dot)com>
1547  * src/build.h, src/build.c, src/project.c
1548    Created and documented plugins interface to build menu.
1549    Factored out new get_cmd_group function.
1550    Changed name of remove_command function to be consistent with the rest
1551    of the interface & changed calls in project.c.
1552  * src/Makefile.am, wscript
1553    Added build.h to installed files lists.
1555 2009-07-20  Lex Trotman  <elextr(at)gmail(dot)com>
1557  * doc/geany.txt
1558    Updated manual to match build-menu capability.
1561 2009-07-19  Lex Trotman  <elextr(at)gmail(dot)com>
1563  * src/build.c, src/build.h
1564    Added set_build_non_ft_wd_to_proj() for use by project dialog.
1565    Improved interpretation of run_in_base_dir from old [build-settings]
1566    Added spacing to build commands dialog
1567  * src/project.c
1568    Removed run in base path option from project dialog and added button to
1569    set working directories to d the same.
1572 2009-07-18  Lex Trotman  <elextr(at)gmail(dot)com>
1574  * src/build.c
1575    Re-incorporated toolbar changes in trunk accidently excluded in merge
1577 2009-07-17  Lex Trotman  <elextr(at)gmail(dot)com>
1579  * src/build.c
1580    Fixed substitute %f etc in commands
1581    Fixed potential leak in build_replace_placeholder
1582    Fixed leak in prepare_run_script (Thanks for patch Thomas)
1583    Fixed build_replace_placeholder to not require document.
1585 2009-07-17  Lex Trotman  <elextr(at)gmail(dot)com>
1587  * src/build.c, src/build.h, src/filetypes.h, src/filetypes.c
1588    Fixed crash and lots of warnings, deleted some commented out code.
1589  * geany.glade, src/keyfile.c, src/prefs.c, src/prefs.h, src/project.c
1590    Removed make command from preferences and associated code
1592 2009-07-16  Lex Trotman  <elextr(at)gmail(dot)com>
1594  * src/build.c, src/build.h
1595    Incorporated patch for working directory field (thanks Thomas)
1596    Removed run_in_base_dir option and associated code that it replaces
1597    Improved handling of old config files and mapping to new ones.
1599 2009-07-15  Lex Trotman  <elextr(at)gmail(dot)com>
1601  * src/build.h, src/build.c
1602    Changed to itterate over entries in build commands dialog to allow
1603    additional fields to be added
1604    Implement support for multiple run commands
1605  * data/filetypes.latex
1606    Implement configured commands and labels for latex.
1609 2009-07-14  Lex Trotman  <elextr(at)gmail(dot)com>
1611  * src/build.h, src/build.c
1612    added dialog support for error regular expressions from multiple sources
1613    and storing and loading them
1614    fixed some typos and memory leaks
1615  * src/filetypes.c, src/filetypes.h, project.c
1616    added support for using error regexes from multiple sources
1619 2009-07-11  Lex Trotman  <elextr(at)gmail(dot)com>
1621  * src/filetypes.h, src/filetypes.c, src/build.c, src/build.h,
1622    src/project.c
1623    Removal of build menu item source made redundant by the following fix
1624  * src/build.c
1625    Corrected priority oreder and loading of filetype dependent build
1626    menu items saved in the project file.  Added print routine for
1627    debugging command sources and priorities set compile symbol
1628    PRINTBUILDCMDS true to enable
1630 2009-07-10  Lex Trotman  <elextr(at)gmail(dot)com>
1632  * src/build.c
1633    fixed problem loading old format filetype files, some formatting fixes
1634    fixed saving new format files
1635    added operation for clear button on build commands dialog
1636  * src/filetypes.c
1637    fixed loading and saving filetype files
1640 2009-07-09  Lex Trotman  <elextr(at)gmail(dot)com>
1642 Configurable Build Menu Changes
1644  * doc/geany.html, doc/geany.txt:
1645    Updated build menu section to new functionality
1646  * src/build.h, src/build.c:
1647    Largly re-written, configurability added, Latex code removed
1648  * src/filetypes.h, src/filetypes.c:
1649    Filetype structure updated to add new command pointers, configuration
1650    load and store changed
1651  * src/keybindings.h, src/keybindings.c:
1652    Changed to address new command storage structure.
1653  * src/keyfile.c:
1654    Changed to load/store new configuration.
1655  * src/main.c:
1656    Minor change to initialisation order.
1657  * src/msgwindow.c:
1658    Changed to address new menu item storage structure.
1659  * src/project.h, src/project.c:
1660    Changed to load/store the new configuration info.
1662 2009-08-24  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1664  * src/keybindings.c, src/keybindings.h, src/plugindata.h,
1665    src/pluginutils.c, src/plugins.c, src/pluginutils.h,
1666    doc/pluginsymbols.c, plugins/geanyfunctions.h,
1667    plugins/splitwindow.c:
1668    Update PLUGIN_KEY_GROUP() macro so it doesn't allocate any
1669    GeanyKeyBinding or GeanyKeyGroup structs, so we don't need to break
1670    the ABI when adding fields to them.
1671    Add plugin_set_key_group() for plugins to dynamically set a
1672    keybinding group (e.g. for the Lua script plugin). Used in Split
1673    Window plugin as an example.
1674    Improve keybinding docs a little.
1677 2009-08-20  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1679  * doc/Doxyfile.in, plugins/geanyfunctions.h, plugins/genapi.py:
1680    Add geanyfunctions.h to API docs.
1681  * plugins/splitwindow.c:
1682    Set the cursor color for the split window.
1685 2009-08-18  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1687  * src/callbacks.c:
1688    Fix 'Open Selected File' for unsaved new documents.
1689  * src/keybindings.c, src/keybindings.h, src/prefs.c:
1690    Fix updating main menu accelerators after changing keybindings
1691    (thanks to Lex Trotman).
1692  * src/callbacks.c:
1693    Fix using 'Insert date' keybinding when a custom date string has
1694    not been set.
1695  * src/pluginprivate.h, src/pluginutils.c, src/plugins.c:
1696    Merge Plugin and GeanyPluginPrivate structs.
1699 2009-08-18  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1701  * src/keybindings.c:
1702    Fix non-working Home and End keys on numpads.
1705 2009-08-17  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1707  * doc/geany.txt, doc/geany.html, NEWS:
1708    Add 'Scope autocompletion' section.
1709    Add 'Tools menu items' section to explain configuration files
1710    submenu, reload configuration item.
1711    Minor updates/fixes.
1714 2009-08-16  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1716  * src/document.c:
1717    Add a translation hint to an ambiguous format string.
1718  * src/Makefile.am:
1719    Add missing include path to fix 'make distcheck'.
1720  * src/win32.c:
1721    Fix opening of local files in the browser on Windows.
1722  * New release: Geany 0.18 "Kaine".
1723  * configure.in, geany.nsi, geany_private.rc, win32-config.h, wscript,
1724    src/geany.h, doc/geany.html, doc/geany.txt:
1725    Post-release version bump.
1728 2009-08-15  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1730  * src/editor.c:
1731    Temporarily disable reshowing calltips when the autocompletion
1732    list was closed implicitly by not choosing an item to fix
1733    problems with wrongly displayed calltips.
1734  * src/template.c:
1735    Add missing 'coding' cookie to the Python filetype template.
1736  * doc/images/pref_dialog_edit_completions.png,
1737    doc/images/pref_dialog_toolbar.png:
1738    Update images for Geany 0.18.
1741 2009-08-13  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1743  * wscript:
1744    Add command '--hackingdoc' to create the HTML form of the
1745    HACKING file.
1748 2009-08-12  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
1750  * po/pt_PT.po, po/LINGUAS:
1751    Added a first Portugese (Portugal) translation based on work done at
1752    launchpad by e.g. André Glória and Alexandre Jesus.
1753  * src/main.c: Fix a minor typo on --help call.
1756 2009-08-11  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1758  * src/highlighting.c:
1759    Call get_keyfile_wordchars() in highlighting_init_styles().
1762 2009-08-09  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1764  * data/filetypes.ada:
1765    Add missing file.
1766  * src/keybindings.c:
1767    Switching notebook tabs now works for the currently used notebook
1768    widget instead of always using the documents notebook.
1769  * src/document.c, src/document.h, src/documentprivate.h,
1770    doc/plugins.dox:
1771    Small corrections to some API docs.
1774 2009-08-02  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1776  * src/build.c, src/win32.h, src/win32.c:
1777    Expand system environment variables (%variableName%) on Windows when
1778    running Build commands.
1781 2009-07-30  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1783  * src/keybindings.c:
1784    Rename 'Reflow lines/paragraph' to 'Reflow lines/block' because in
1785    future using an indent block is more useful e.g. for ChangeLog
1786    files.
1787  * scintilla/LexMarkdown.cxx, scintilla/makefile.win32,
1788    scintilla/include/SciLexer.h, scintilla/include/Scintilla.iface,
1789    scintilla/KeyWords.cxx, scintilla/Makefile.am, src/highlighting.c,
1790    src/about.c, src/filetypes.c, src/filetypes.h, THANKS,
1791    tagmanager/parsers.h, tagmanager/makefile.win32,
1792    tagmanager/markdown.c, tagmanager/Makefile.am, wscript:
1793    Add Markdown filetype (patch by Jon Strait, thanks).
1794  * src/pluginprivate.h, src/pluginutils.c, src/plugins.c:
1795    Fix disconnecting plugin signal id when not using geany_object.
1796  * src/filetypes.c:
1797    Add filetype_make_title() instead of using:
1798    ft->title = g_strdup_printf(_("%s source file"), ft->name);
1799    It also supports "%s file" strings.
1802 2009-07-29  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1804  * src/pluginprivate.h, src/utils.h, src/plugindata.h,
1805    src/stash.c, src/pluginutils.c, src/plugins.c, src/pluginutils.h,
1806    doc/pluginsymbols.c, doc/plugins.dox, plugins/geanyfunctions.h,
1807    plugins/filebrowser.c:
1808    Add plugin_signal_connect() for connecting plugin signals at
1809    runtime and also for connecting to any GObject signal.
1810    Add 'Plugin Utility Functions' on main page.
1811    Add foreach_array() macro.
1812  * src/keybindings.c, src/sciwrappers.c, src/sciwrappers.h,
1813    src/document.c, src/editor.c:
1814    Rename 3 sci functions to sci_set_target_start(),
1815    sci_set_target_end(), sci_replace_target() to match the SCI_
1816    message name.
1819 2009-07-28  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
1821  * wscript: Fix compiling error with waf.
1824 2009-07-28  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1826  * src/pluginprivate.h, src/makefile.win32, src/plugindata.h,
1827    src/pluginutils.c, src/plugins.c, src/pluginutils.h,
1828    src/Makefile.am, wscript:
1829    Move plugin_* utility functions to pluginutils.c.
1830    Add pluginprivate.h.
1831  * src/editor.c:
1832    Fix reshowing calltip in the wrong document.
1835 2009-07-25  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1837  * doc/geany.txt, doc/geany.html:
1838    Add some general information about auto-completion capabilities
1839    (patch by Lex Trotman, thanks).
1842 2009-07-25  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
1844  * po/LINGUAS, po/sl_SI.po, THANKS, src/about.c:
1845    Added a first Slovenian translation. Thanks to Joze Klepec.
1848 2009-07-24  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1850  * src/highlighting.c:
1851    Use full styleset_foo[_init] function name as argument to
1852    init_styleset_case() and styleset_case() macros so it's easier to
1853    understand the code.
1854  * src/keybindings.c, src/keybindings.h, src/sciwrappers.c,
1855    src/sciwrappers.h, src/editor.c, src/editor.h, THANKS,
1856    doc/geany.txt, doc/geany.html:
1857    Add 'Reflow lines/paragraph' keybinding, defaults to Ctrl-J.
1858    Heavily based on a patch by Eugene Arshinov (thanks).
1859    Add sci_lines_split(), sci_lines_join(), sci_text_width(),
1860    editor_strip_line_trailing_spaces().
1863 2009-07-24  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1865  * src/editor.c:
1866    Attempt to fix reshowing calltips after the autocompletion list
1867    has been shown.
1868    Reshow calltips also when the autocompletion list was closed
1869    implicitly by not choosing an item.
1871 2009-07-23  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1873  * src/utils.c, src/utils.h, src/toolbar.c, src/plugindata.h,
1874    plugins/splitwindow.c:
1875    Change utils_str_remove_chars() to work in place; fix allocating on
1876    the stack (the string length could exhaust the stack size).
1877  * src/templates.c, src/build.c, src/utils.c, src/utils.h,
1878    src/printing.c, src/callbacks.c:
1879    Rename utils_str_replace() utils_str_replace_all(), setting a
1880    'gchar **haystack' argument instead of returning a new string.
1881  * src/editor.c:
1882    For the Tabs indent type, remove spaces when unindenting (only) if
1883    there are no tabs on the line.
1884    Group undo actions for (un)indenting of multiple lines.
1885  * src/document.c, src/editor.c:
1886    Fix scrolling horizontally after finding a search match with the
1887    search bar or Find Next/Previous which is off-screen.
1888  * src/keybindings.c:
1889    Fix GLib warning when pressing a key with no documents open.
1892 2009-07-21  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1894  * src/utils.c:
1895    Start unifying usage of @a and @c markup elements in API docs,
1896    to be continued.
1897  * src/main.c, src/prefs.c, src/toolbar.c, src/toolbar.h:
1898    Show/hide the toolbar without a restart when the setting in the
1899    preferences dialog is changed (closes #2824785).
1900  * src/dialogs.c, src/document.c, src/editor.c, src/encodings.c,
1901    src/filetypes.c, src/keybindings.h, src/main.c, src/msgwindow.c,
1902    src/navqueue.c, src/plugindata.h, src/prefs.c, src/toolbar.c,
1903    src/toolbar.h:
1904    Continue unifying usage of @a and @c markup elements in API docs.
1907 2009-07-21  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1909  * src/document.c:
1910    Remove relative/untidy path elements when creating new documents
1911    with a filename (e.g. from the command-line) (#2823998).
1914 2009-07-20  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1916  * src/callbacks.c:
1917    Disable 'Recent Projects' menu item if the list of recent projects
1918    is empty.
1919  * src/win32.c:
1920    Fix some harmless compiler warnings.
1921  * plugins/geanyfunctions.h, plugins/splitwindow.c, src/plugindata.h,
1922    src/plugins.c, src/utils.c, src/utils.h:
1923    Move utils_str_remove_chars() from the plugins/splitwindow.c to
1924    src/utils.c and add it to the plugin API.
1925    Make utils_str_remove_chars() work on a new copy of the input string
1926    instead of modifying it in place.
1927  * src/toolbar.c:
1928    Remove underscores from the toolbar items labels.
1929  * src/utils.c:
1930    Fix typos.
1931  * plugins/splitwindow.c:
1932    Fix broken 'Show the current document' tool button icon.
1935 2009-07-20  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1937  * src/treeviews.c, src/callbacks.c, src/stash.c, src/stash.h,
1938    src/keyfile.c:
1939    Add stash_group_add_widget_property() so we can save any widget's
1940    read/write properties.
1941    Use Stash for ui_prefs.sidebar_page setting.
1942  * src/utils.h, src/prefs.c, src/keyfile.c, src/symbols.c:
1943    Make foreach_ptr_array() use an integer argument for its
1944    implementation, as this is more useful potentially than a gpointer*
1945    argument, and more straightforward.
1946    Add foreach_c_array(), foreach_ptr_array() to API.
1947  * src/utils.c, src/utils.h, src/document.c:
1948    Remove relative/untidy path elements when opening documents (closes
1949    #2823998).
1950  * src/treeviews.c:
1951    Fix showing project name for documents list files with no
1952    subdirectory (oops).
1953  * src/dialogs.c:
1954    Fix checking whether to overwrite when using the Rename button in
1955    the 'Save As' dialog.
1958 2009-07-19  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1960  * src/dialogs.c:
1961    Don't use the main window as parent for dialog boxes if it is not
1962    yet realised.
1963    Set titles for message dialogs.
1966 2009-07-18  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1968  * src/toolbar.c:
1969    Display item labels instead of raw names in the toolbar editor.
1970    Apply changes in the toolbar editor instantly.
1971    Show icons in the toolbar editor.
1972    Speed up toolbar editor dialog creation.
1973  * src/templates.c:
1974    Improve inserting of comment templates like File header or licence
1975    notices. The comment information are now read from the filetype
1976    configuration files.
1978 2009-07-16  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1980  * src/document.c:
1981    Enable file monitoring for files which are written to disk by Geany
1982    for the first time.
1983  * src/filetypes.c:
1984    Fix broken special case handling when detecting filetypes from a
1985    shebang or other special file headers.
1988 2009-07-16  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1990  * src/search.c:
1991    Make Mark All keybinding clear search highlighting when there's no
1992    current word.
1993  * src/search.c:
1994    Fix wrong match length when using Mark with regex.
1995  * src/geanyobject.c, src/geanyobject.h, src/treeviews.c,
1996    src/keyfile.c, src/main.c:
1997    Add 'Show Paths' documents list popup item.
1998    Add "load_settings" core-only signal emitted just after loading
1999    main keyfile settings; useful to delay building UI elements until
2000    settings have been read.
2001  * src/treeviews.c:
2002    Fix GTK warning when right-clicking on default tag tree.
2003  * src/treeviews.c, src/treeviews.h, src/keyfile.c, src/main.c:
2004    Add treeviews_finalize().
2005    Remove tv.popup_openfiles field.
2008 2009-07-15  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2010  * src/highlighting.c:
2011    Fix building on GTK 2.8 (patch by Eugene Arshinov, thanks).
2014 2009-07-14  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2016  * src/utils.c:
2017    Quote the uri before passing it to the browser when opening a
2018    website (closes #2818635).
2019  * src/win32:
2020    Fix broken 'builtin' Run command for HTML files on Windows.
2023 2009-07-14  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2025  * src/editor.c:
2026    Properly fix wrong brace highlighting of non-brace character.
2027  * src/editor.c:
2028    Allow autocompletion in Perl double-quoted strings.
2029    Don't autocomplete in Perl single-quoted strings (closes #2821061).
2030    Don't autocomplete in Perl q() strings.
2031  * data/filetypes.common:
2032    Make Mark highlighting brighter.
2033  * src/interface.c, doc/geany.txt, doc/geany.html, geany.glade:
2034    Use hyphen for auto-feature terms.
2035  * src/plugindata.h, src/geany.h, src/filetypes.c, src/filetypes.h,
2036    src/document.h, src/main.c:
2037    Add documents_foreach() API macro that skips invalid docs.
2038    Make filetypes[], documents[] part of the API again.
2039    Add GEANY() macro for sharing geany symbols between API and core.
2040  * src/plugindata.h, src/plugins.c, doc/plugins.dox,
2041    plugins/saveactions.c, plugins/export.c, plugins/geanyfunctions.h,
2042    plugins/demoplugin.c, plugins/filebrowser.c, plugins/splitwindow.c,
2043    plugins/htmlchars.c, plugins/geanyplugin.h, plugins/Makefile.am,
2044    plugins/classbuilder.c, wscript:
2045    Add geanyplugin.h single include for plugin API; update all core
2046    plugins to use it.
2047    Add sci_set_font() to API.
2048    Update plugin howto.
2049  * src/filetypes.c, src/filetypes.h:
2050    Remove filetypes_foreach_named().
2053 2009-07-13  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2055  * src/highlighting.c, src/about.c, src/filetypes.c, src/document.c,
2056    src/document.h, src/main.c, THANKS:
2057    Apply patch from Eugene Arshinov to reload color schemes via menu
2058    (thanks).
2059  * src/filetypes.c:
2060    Reload filetypes.common after saving it.
2061  * src/editor.c:
2062    Improve wrong brace highlighting of non-brace character.
2065 2009-07-10  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2067  * src/editor.c:
2068    Delay highlighting matching braces by 100ms, which speeds up
2069    scrolling with the arrow keys.
2070  * src/keybindings.c, src/keybindings.h, src/search.c, src/search.h:
2071    Add 'Mark All' keybinding.
2072  * tagmanager/diff.c:
2073    Show relative paths in diff filename tags.
2076 2009-07-09  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2078  * src/highlighting.c:
2079    Fix setting keyword list 'classes' for Haxe
2080    (pointed out by Andreas Mokros, thanks).
2083 2009-07-09  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2085  * src/interface.c, src/keyfile.c, src/editor.c, src/editor.h,
2086    doc/geany.txt, doc/geany.html, geany.glade:
2087    Add 'Drop rest of word on completion' pref.
2088  * src/editor.c, doc/geany.txt, doc/geany.html:
2089    If autocompletion is already visible when forcing completion, show
2090    document word completion instead of tag completion.
2091    Docs: Minor edits of related prefs items.
2092  * src/printing.c, src/dialogs.c, src/dialogs.h, src/plugindata.h:
2093    Add warning when printing and editor font is not monospaced.
2094    Fix using GtkMessageType instead of gint param for
2095    dialogs_show_msgbox*().
2096    Add missing G_GNUC_PRINTF macro check to API dialog funcs.
2097  * src/editor.c:
2098    Support 'tab indents, space aligns' style for auto-indentation
2099    (closes #2789109).
2102 2009-07-08  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2104  * src/document.c, src/documentprivate.h:
2105    Rework the GIO based file monitoring code. Now it is used only
2106    to indicate a possible change of the file, the real check if the
2107    file has been changed is performed by stat().
2108  * data/filetypes.common, doc/geany.txt, src/highlighting.c:
2109    Add style 'line_height' to increase the line height.
2110    Add style 'marker_mark' and change style 'marker_search' to
2111    define the style used for marked search results.
2112  * doc/geany.txt, doc/geany.html:
2113    Add the new 'Autocomplete all words in document' pref to the docs.
2116 2009-07-08  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2118  * src/interface.c, src/keyfile.c, src/editor.c, src/editor.h,
2119    doc/geany.txt, doc/geany.html, geany.glade, TODO:
2120    Add 'Autocomplete all words in document' pref.
2121    Use 'autocompletion' in dialog and docs, not 'auto completion'.
2122  * src/editor.c:
2123    Fix limiting number of word completion entries too much.
2124  * src/editor.c, TODO, icons/16x16/classviewer-var.xpm,
2125    icons/16x16/classviewer-method.xpm, icons/16x16/Makefile.am:
2126    Show autocompletion icons for tag symbols - for now only tags with
2127    an arglist have the 'function/method' icon, all others have the
2128    'variable' icon.
2129    Note: XPMs were created from the PNGs with the ImageMagick 'convert'
2130    program.
2131  * src/highlighting.c:
2132    Highlight D WYSIWYG backtick `strings` and r"strings" (closes
2133    #1895745).
2136 2009-07-06  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2138  * src/highlighting.c, src/utils.h, plugins/splitwindow.c:
2139    Fix removing underscores in translated string using no_underscore()
2140    macro.
2141    Set a tooltip for the Split Window plugin's Show Current tool button.
2142    Add utils_strdupa() macro.
2143  * src/interface.c, geany.glade:
2144    Use stock Select All icon now we have >= GTK 2.8.
2145  * src/treeviews.c:
2146    Fix using project name for document items that start with the
2147    project base path but don't match it e.g. ".../geany-plugins"
2148    instead of ".../geany" when project name is 'geany'.
2151 2009-07-04  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2153  * src/build.c:
2154    Fix warnings when the toolbar does not contain the Run button.
2155  * tagmanager/lua.c:
2156    Fix wrong parsing of complex expressions in the Lua parser.
2157  * src/editor.c, src/geany.h, src/keybindings.c, src/plugindata.h,
2158    src/utils.c:
2159    Remove unnecessary enums.
2160  * scintilla/*, scintilla/include/*, src/plugindata.h:
2161    Update Scintilla to version 1.79.
2162  * src/document.c, src/editor.c, src/sciwrappers.c, src/sciwrappers.h,
2163    src/search.c:
2164    Use the new Scintilla struct names prefixed with 'Sci_'.
2165  * TODO, data/filetypes.common, doc/geany.html, doc/geany.txt,
2166    src/highlighting.c:
2167    Add second argument to the 'line_wrap_indent' styling setting to
2168    control the new Scintilla indentation mode for wrapped lines.
2169  * src/toolbar.c:
2170    Properly close the toolbar editor on delete-events.
2171    Fix warnings and possible crashes in the toolbar editor when the list
2172    of displayed toolbar items is empty.
2173  * data/filetypes.tcl:
2174    Update Tcl keywords for Tcl 8.6 (patch by Witek Mozga, thanks).
2175  * src/plugins.c:
2176    Make the plugin manager dialog a bit bigger.
2179 2009-06-30  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2181  * doc/geany.html, doc/geany.txt:
2182    Fix wrong default values for the 'Show Calltip' keybinding.
2185 2009-06-29  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2187  * data/filetypes.tcl, src/symbols.c:
2188    Fix duplicate "context_action_cmd" key.
2189    Use different icons for "Methods" and "Procedures" in the symbol
2190    list for Tcl files.
2191  * src/filetypes.c:
2192    Fix a small memory leak.
2193  * doc/geany.html, doc/geany.txt, src/editor.c, src/keybindings.c,
2194    src/keybindings.h, src/plugindata.h:
2195    Make the Scintilla keybindings 'Delete to end of line' and
2196    'Go to end of display line' configurable.
2197  * geany.nsi:
2198    Fix a typo (closes #2813624).
2201 2009-06-28  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2203  * tagmanager/tcl.c, src/symbol.c:
2204    Improve parsing of Tcl files (parsing new Tcl8.6 style classes,
2205    methods and namespaces).
2206    Patch by Witek Mozga, thanks.
2209 2009-06-25  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2211  * data/ui_toolbar.xml, doc/geany.txt, doc/geany.html, src/ui_utils.c,
2212    src/toolbar.c, src/toolbar.h:
2213    Remove ui_toolbar.xml Configuration Files menu item.
2214    Add a real toolbar editor dialog.
2215  * geany.glade, src/callbacks.c, src/callbacks.h, src/interface.c,
2216    src/prefs.c:
2217    Add a button in the preferences dialog and an item for the toolbar
2218    popup menu to run the toolbar editor dialog.
2221 2009-06-25  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2223  * src/dialogs.c:
2224    Fix Gtk NULL warning with gtk_file_chooser_set_current_folder().
2225    Fix using locale encoding for default Save As dialog path.
2226  * src/editor.c:
2227    Beep when trying to activate the '...' autocompletion item.
2228    Limit (forced) document word completion to
2229    autocompletion_max_entries.
2230    Beep if no completions are shown when forcing autocompletion.
2233 2009-06-24  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2235  * data/ui_toolbar.xml, src/toolbar.c:
2236    Add 'Build' toolbar button to the default layout.
2239 2009-06-24  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2241  * src/editor.c:
2242    If forcing autocompletion and there's nothing else to show, complete
2243    from words in the current document (using code from Enrico's
2244    'AutoComplete Test' plugin).
2247 2009-06-23  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2249  * src/plugins.c:
2250    Add debug message if plugin has not set a name for its keybinding
2251    group.
2252  * data/filetype_extensions.conf:
2253    Add *.m4 for shell scripts.
2256 2009-06-22  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2258  * src/highlighting.c, doc/geany.txt, doc/geany.html,
2259    data/filetypes.common, TODO:
2260    Make filetypes.common named styles use the "default" named style for
2261    all missing style fields.
2262    Set named styles to usually leave the background style empty. This
2263    currently allows C-like filetypes to have a common default
2264    background color.
2265    Allow hard-coded colors to use -1 for the default color.
2266    Add some highlighting style examples to the manual.
2269 2009-06-21  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2271  * src/templates.c:
2272    Create initial template files with proper platform-specific line
2273    ending characters.
2276 2009-06-20  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2278  * data/ui_toolbar.xml, doc/geany.txt, src/build.c,
2279    src/geanymenubuttonaction.c, src/geanymenubuttonaction.h, src/main.c,
2280    src/plugins.c, src/templates.c, src/toolbar.c, src/toolbar.h,
2281    src/ui_utils.c, src/ui_utils.h:
2282    Instantly reload (i.e. rebuild) the toolbar when ui_toolbar.xml is
2283    saved within Geany.
2284    Refactor some related code.
2285  * tagmanager/conf.c:
2286    Strip trailing spaces from "Key" tags.
2287  * geany.nsi:
2288    Quote the full filename to the Geany executable when creating the
2289    "Open with Geany" context menu item.
2290  * plugins/splitwindow.c:
2291    Avoid using deprecated GTK API.
2292  * src/log.c, src/main.c:
2293    Properly clean up the logging mechanism.
2294  * src/build.c:
2295    Fix LaTeX view commands on Windows (part of #2807688).
2296  * src/prefs.c:
2297    Add a popup menu for the keybinding list in the preferences dialog
2298    to easily expand and collapse all groups.
2299    Refactor the keybindings code for the preferences dialog, prefix all
2300    related functions.
2301  * src/main.c, src/ui_utils.c, src/ui_utils.h:
2302    Init stock items before creating the toolbar (closes #2809324).
2303  * wscript:
2304    Generate the geany.pc file also on Windows.
2305  * src/ui_utils.c:
2306    Invert the logic to determine which Save All we want to use:
2307    Use the Tango like icon only for the Tango theme and the Gnome / GTK
2308    like icon for any other themes.
2311 2009-06-18  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2313  * src/highlighting.c, README.Packagers, HACKING:
2314    Remove gsd_* default styles, use named styles instead.
2315    Note: this relies on filetypes.common being installed.
2316    Add load_style_entries(), which makes style initialization
2317    simpler, used in styleset_c_like_init().
2320 2009-06-17  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2322  * src/win32.c:
2323    Prevent possible crash on Windows when not setting an initial
2324    directory for native File Open/Save dialogs.
2325  * data/filetypes.xml, src/highlighting.c:
2326    Add style 'jscript_regex' for filetype HTML
2327    (patch by Chris Macksey, thanks).
2330 2009-06-17  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2332  * src/filetypes.h, src/document.c, src/document.h, src/ui_utils.c:
2333    Make GeanyDocument::file_type always be non-NULL, even for a new
2334    document with no filetype set.
2335  * src/editor.c:
2336    Only autocomplete scope for scopes matching the current filetype's
2337    language.
2338  * data/filetypes.java, data/filetypes.cpp, data/filetypes.vala,
2339    data/filetypes.haxe, data/filetypes.common, data/filetypes.glsl,
2340    data/filetypes.actionscript, data/filetypes.cs,
2341    data/filetypes.ferite, data/filetypes.c, data/filetypes.d,
2342    data/filetypes.javascript, HACKING:
2343    Make C++, D lexer filetypes use named styles (apart from uuid,
2344    verbatim, regex styles).
2347 2009-06-16  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2349  * src/dialogs.c:
2350    Don't explicitly change the current directory of the Save As dialog
2351    so that it uses the last used directory.
2354 2009-06-14  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2356  * src/encodings.c, src/encodings.h, src/plugindata.h:
2357    Add Japanese encoding "CP932" (patch by Ryūsei Yamaguchi, thanks).
2358  * src/editor.c:
2359    Remove dead code.
2360    When completing from the macro list, put the cursor after
2361    the inserted text.
2364 2009-06-12  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2366  * tagmanager/pascal.c:
2367    Fix type definitions being parsed as functions.
2368  * src/editor.c:
2369    Don't autocomplete in unterminated strings as well.
2370  * src/templates.c, src/utils.h, src/dialogs.c, src/plugindata.h,
2371    src/filetypes.c, src/ui_utils.c, plugins/saveactions.c:
2372    Remove data_ptr argument to foreach_[s]list() macros, as using
2373    node->data is enough sometimes; this makes the macro a bit more
2374    efficient too.
2375    Add foreach_[s]list() macros to the plugin API docs.
2378 2009-06-11  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2380  * scintilla/LexPascal.cxx:
2381    Backport fix from Scintilla CVS:
2382    Pascal lexer hanging on file that starts with 'interface' after
2383    whitespace.
2386 2009-06-11  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2388  * waf:
2389    Update Waf to 1.5.7.
2390  * wscript:
2391    Overwrite installation prefix on Windows only if it wasn't
2392    specified explicitly.
2395 2009-06-10  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2397  * src/editor.c:
2398    Display calltips for Pascal symbols in the Pascal way (#2803945).
2399  * tagmanager/pascal.c:
2400    Fix wrongly set return values for procedures (closes #2803945).
2401  * doc/Doxyfile.in, tagmanager/include/tm_work_object.h,
2402    tagmanager/include/tm_source_file.h,
2403    tagmanager/include/tm_workspace.h:
2404    Fix doxygen warnings.
2407 2009-06-10  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2409  * src/editor.c, tagmanager/include/tm_workspace.h,
2410    tagmanager/tm_workspace.c, TODO:
2411    Autocomplete scoped fields like struct members when typing '.' (and
2412    also '->' or '::' in C/C++).
2413    Save all tag types for C/C++ when generating a global tags file, so
2414    we can use autocompletion for structs also.
2415    Merge tm_workspace_find_scope_members(),
2416    tm_workspace_find_namespace_members() (currently not built) from
2417    Anjuta 2.24.1 tagmanager.
2420 2009-06-09  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2422  * tagmanager/pascal.c:
2423    Parse Pascal calltips (closes #2802640).
2426 2009-06-09  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2428  * src/filetypes.c, src/ui_utils.c:
2429    Add filetypes.common Configuration Files menu item.
2432 2009-06-08  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2434  * src/callbacks.c:
2435    Add backslash to the wordchars on Windows when using
2436    'Open Selected File'.
2437  * src/wscript:
2438    Add support (configure, build and install) for building on Windows
2439    and cross-compiling for Windows using the Waf build system.
2442 2009-06-05  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2444  * src/toolbar.c:
2445    Set status bar text instead of showing a dialog when saving
2446    ui_toolbar.xml because the user might save several times.
2447  * src/editor.c:
2448    Fix redrawing due to colourising just after the document is first
2449    drawn. Now colourising should happen before the first draw.
2450  * src/utils.c, src/highlighting.c, data/filetypes.common:
2451    Fix segfault on parsing a filetypes.* style definition that has < 4
2452    fields.
2453    Allow style definitions to have missing fields to use the default
2454    style fields.
2457 2009-06-05  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2459  * src/images.c, src/about.c, src/ui_utils.c, THANKS:
2460    Add a more Tango like icon for 'Save All' (by Jesse Mayes, thanks).
2461  * plugins/classbuilder.c:
2462    Fix wrongly created header guards when the class filenames contains
2463    dashes (patch by PCMan, thanks).
2464  * data/filetypes.matlab:
2465    Add build_settings section to allow executing Matlab scripts.
2466  * src/document.c:
2467    When closing a document, mark it as invalid before removing it from
2468    the documents notebook (this fixes wrong Save All button state when
2469    closing an unsaved document because the "switch-page" signal handler
2470    was using old data).
2473 2009-06-03  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2475  * src/highlighting.c, doc/geany.txt, doc/geany.html:
2476    Support toggling bold/italic when using a named style, e.g.:
2477    commentdockeyword=commentdoc,bold,italic
2478    Improve named style docs.
2481 2009-06-01  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2483  * src/build.c, src/editor.c:
2484    Fix crashes when parsing the output of a compiler which reports
2485    errors on line 0.
2488 2009-06-01  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2490  * src/highlighting.c:
2491    Support named styles also for filetypes.common [styling] entries.
2492  * doc/geany.txt, doc/geany.html, HACKING:
2493    Update docs for named styles in filetypes.* files.
2494  * src/symbols.c:
2495    Fix grouping symbol list children when parent name has "." character
2496    in for reStructuredText and Conf filetypes.
2497  * tagmanager/python.c:
2498    Fix grouping functions/classes under a nested function.
2501 2009-05-30  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2503  * geany.spec.in:
2504    Adjust icon paths (patch by Dominic Hopf, thanks).
2505  * doc/geany.txt, doc/geany.html, src/toolbar.c:
2506    Add 'Replace' toolbar button (closes #2798225).
2509 2009-05-30  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2511  * src/utils.c, src/highlighting.c, TODO:
2512    Implement named styles support for filetypes.* using a
2513    filetypes.common [named_styles] section e.g.:
2514    foo=0xc00000;0xffffff;false;true
2515    bar=foo
2516    These can be used in e.g. filetypes.c as:
2517    comment=foo
2520 2009-05-28  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2522  * src/ui_utils.c:
2523    Fix wrong sensitiveness of the Redo buttons (closes #2797862).
2526 2009-05-28  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
2528  * THANKS, src/about.c, po/lb.po, po/LINGUAS:
2529    Added Luxembourgian translation. Huge thanks to Laurent Hoeltgen.
2532 2009-05-27  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2534  * src/build.c:
2535    Remove quote_executable() as it is not used anymore.
2536    When creating the geany_run_script.bat use the "%0" variable
2537    expansion and quote it for the "del" command (closes #2797172).
2538  * src/win32.c:
2539    On Windows, fallback to the literal build command line if searching
2540    for the command in the system path failed (related to #2795923).
2541    Properly terminate the resulting strings when reading the stdout
2542    and stderr of any spawned commands on Windows.
2545 2009-05-26  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2547  * src/win32.c:
2548    Use the wide character versions of native Windows File dialogs.
2549  * src/project.c:
2550    Fix wrong initialisation of the default project path button callback
2551    in the preferences dialog.
2552  * Makefile.am, configure.in, geany.nsi, geany.spec.in, wscript,
2553    geany_private.rc, icons/16x16/Makefile.am, icons/16x16/geany.png,
2554    icons/48x48, icons/48x48/Makefile.am, icons/48x48/geany.png,
2555    icons/Makefile.am, icons/geany.ico, icons/scalable,
2556    icons/scalable/Makefile.am, icons/scalable/geany.svg,
2557    src/makefile.win32:
2558    Move the icons geany.png and geany.ico into the icons directory.
2559    Add a 16x16 pixel Geany icon and the scalable SVG icon.
2560    Drop the pixmaps directory.
2563 2009-05-22  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2565  * src/keybindings.c:
2566    Improve MRU document switching so there are no duplicates in the
2567    list and documents switched to whilst the dialog is open are
2568    ignored. Also beep when cycling through to the first document in the
2569    list.
2572 2009-05-21  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2574  * src/dialogs.c:
2575    Fix broken 'Cancel' button in the Save As dialog.
2578 2009-05-20  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2580  * src/editor.c:
2581    Fix multiline indent when selection covers text on the last line.
2582  * src/notebook.c:
2583    Show current document in bold in tab popup menu.
2584  * src/editor.c, tagmanager/python.c, TODO:
2585    Parse Python calltips.
2588 2009-05-19  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2590  * src/symbols.c, tagmanager/python.c:
2591    Parse Python import statements to get symbol completion for the
2592    imported module names.
2593  * src/editor.c, src/editor.h:
2594    Make some only locally used functions static.
2595    Fix wrong sanity check.
2596  * src/build.c:
2597    Fix quoting the build command string on Windows (closes #2791769).
2598    This broke when we made build commands run synchronously on Windows,
2599    now we don't need to special quote the commands anymore.
2602 2009-05-19  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2604  * src/editor.c:
2605    Drop rest of word to the right of cursor when autocompleting (do we
2606    need a pref for this?).
2609 2009-05-18  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2611  * src/sciwrappers.c, src/sciwrappers.h, src/editor.c:
2612    Add sci_set_selection().
2613  * doc/geany.txt, doc/geany.html:
2614    Update manual for MRU switching.
2615  * src/callbacks.c, src/editor.c, src/editor.h:
2616    Make indenting with the Tabs indent type preserve spaces on the line,
2617    so it works for the 'tab indents, space aligns' formatting style.
2620 2009-05-17  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2622  * tagmanager/python.c:
2623    Fix missing symbols for variables when an equal sign is used
2624    in a comment on the same line as the variable declaration.
2625    Backport change from CTags SVN to keep the parser more in sync:
2626    Add support for Cython constructs to the Python parser.
2627  * src/search.c:
2628    Remember the additional Find in Files search flags at startup.
2629  * src/dialogs.c:
2630    Don't close the Save As dialog when saving the file didn't succeed.
2633 2009-05-13  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2635  * src/keyfile.c:
2636    Remember scribble cursor position.
2637  * src/keybindings.c, TODO:
2638    Implement Most-Recently-Used document switching when pressing
2639    Ctrl-Tab keybinding. (It's probably not perfect, but works OK).
2642 2009-05-13  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
2644  * data/latex.tags: Added some more commands from unit.sty and
2645    moderncv.sty.
2648 2009-05-12  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2650  * src/symbols.c, doc/geany.txt, doc/geany.html,
2651    tagmanager/makefile.win32, tagmanager/nestlevel.c,
2652    tagmanager/nestlevel.h, tagmanager/python.c, tagmanager/rest.c,
2653    tagmanager/Makefile.am, wscript:
2654    Merge unstable branch:
2655    Add reStructuredText scope information for tags (for symbol list
2656    grouping).
2657    Read custom system global tags files from $prefix/share/geany/tags;
2658    Closes #2778923.
2659    Show the number of tags in a user global tags file (instead of the
2660    running total) in the debug message.
2661    Also print debug messages when loading a tag file manually or for
2662    default global tags files e.g. python.tags.
2663  - code:
2664    Move NestingLevel tags code into a separate file, add functions.
2665  - docs:
2666    Add 'Installation prefix' section instead of quoting '/usr/local'
2667    each time.
2668    Update for custom system global tags files.
2671 2009-05-11  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2673  * src/highlighting.c:
2674    Unset maybe previously keywords when setting up Scintilla for
2675    XML files. This fixed wrong highlighting after switching back to
2676    filetype XML from another one.
2677  * src/utils.c:
2678    Use plain old fwrite() in utils_write_file(). g_file_set_contents()
2679    is only used when explicitly requested.
2680  * src/dialogs.c:
2681    Remove unnecessary call to g_intern_string() to fix build with
2682    GLib 2.8 (closes #2790051).
2685 2009-05-10  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2687  * src/ui_utils.c:
2688    Make the clear icon of entry fields act on the release event, not
2689    on the press event like for other buttons.
2690  * src/editor.c:
2691    Refactor some multiple used code into get_multiline_comment_style().
2692  * src/main.c:
2693    Create parent directories if necessary when checking for the
2694    configuration directory on startup (closes #2784577).
2697 2009-05-08  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2699  * plugins/filebrowser.c:
2700    When a filter is set, apply it only to files, not directories and
2701    apply the filter to the UTF-8 name of the file as the filter string
2702    itself is also UTF-8.
2703  * src/utils.c, src/utils.h, src/highlighting.c, src/printing.c:
2704    Add utils_color_invert() and use it in highlighting.c and printing.c.
2705  * scintilla/include/Scintilla.h, scintilla/scintilla_changes.patch:
2706    Backport change from Scintilla CVS:
2707    Change capitalisation of header file to suit cross-compilation on
2708    Unix for Windows.
2711 2009-05-03  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2713  * wscript, scintilla/*, scintilla/include/*, src/plugindata.h:
2714    Update Scintilla to version 1.78.
2715  * src/editor.c, src/highlighting.c:
2716    Update Pascal styles as they changed in Scintilla.
2719 2009-05-02  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2721  * src/printing.c:
2722    Ignore the invert syntax highlighting colours setting when printing
2723    to not print characters on a dark background (closes #2785244).
2724  * New release: Geany 0.17 "Wessex".
2725  * configure.in, geany.nsi, geany_private.rc, win32-config.h, wscript,
2726    src/geany.h, doc/geany.html, doc/geany.txt:
2727    Post-release version bump.
2730 2009-04-30  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2732  * src/callbacks.c, src/callbacks.h, src/main.c:
2733    Update the View->Fullscreen menu item when fullscreen state is
2734    changed externally (e.g. by the window manager).
2735  * src/project.c:
2736    Fix passing wrong pointer to the File Open dialog for the Run
2737    command in the Project Properties dialog.
2740 2009-04-27  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2742  * src/callbacks.c, src/keyfile.c, src/main.c, src/ui_utils.c,
2743    src/ui_utils.h:
2744    Remember the active sidebar page between sessions.
2745  * src/project.c:
2746    Add a recent project item after creating a new project.
2747  * tagmanager/ruby.c:
2748    Fix wrong parsing of string literals (closes #2781264).
2749  * src/treeviews.c:
2750    Fix setting focus to the editor widget after changing the selection
2751    in the symbol list.
2754 2009-04-25  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2756  * src/symbols.c:
2757    Prevent crashes when two or more top level items in the symbol
2758    list have the same name (closes #2778246).
2761 2009-04-24  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2763  * src/keybindings.c:
2764    Manually show the main notebook tab bar menu when Shift-F10 is
2765    pressed. This broke when we disabled the default GTK tab bar menu.
2766  * src/document.c:
2767    Fix a crash when USE_GIO_FILEMON is enabled at closing a document
2768    which was reloaded shortly before.
2769  * src/editor.c:
2770    When the editor menu is opened by the Menu key, use the text cursor
2771    position for retrieving the current word. This fixes disabled
2772    Go to Tag items in the menu (#2780044).
2773  * src/treeviews.c:
2774    Set the "ellipsize" property of GtkCellRendererText to automatically
2775    shorten the path and file names in the Documents list.
2776  * doc/geany.html, doc/geany.txt, src/build.h:
2777    Increase the amount of highlighted build error messages to 100.
2778    At least for LaTeX we need higher values as there is a lot of
2779    informative output before any errors are reported.
2780  * src/filebrowser.c:
2781    Use the startup path as the initial directory for the filebrowser
2782    plugin when no project and no files are opened
2783    (patch by Matias Gea, thanks; closes #2780521).
2786 2009-04-21  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2788  * src/dialogs.c, src/document.c, src/document.h, src/treeviews.c,
2789    src/utils.c, src/utils.h:
2790    Ellipsize tab labels and some status messages for very long
2791    filenames (closes #2777348).
2792  * src/plugins.c, src/plugindata.h, plugins/geanyfunctions.h:
2793    Add utils_str_middle_truncate() and
2794    document_get_basename_for_display() to the plugin API.
2795  * doc/geany.html, doc/geany.txt, src/toolbar.c:
2796    Add new toolbar element: Print (patch by Roland Baudin, thanks).
2797  * doc/geany.html, doc/geany.txt, src/document.c, src/document.h,
2798    src/keyfile.c:
2799    Add a hidden preference 'use_safe_file_saving' to save files to disk
2800    by creating a temporary file first. This has serious side effects,
2801    please read the documentation before enabling this.
2802  * src/build.c:
2803    Make build commands on Windows run synchronously to avoid problems
2804    with reading build commands' output.
2805  * doc/geany.html, doc/geany.txt, src/build.c, src/build.h:
2806    Limit the amount of highlighted build error messages in the
2807    Compiler window to 50 for performance reasons.
2810 2009-04-20  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2812  * src/callbacks.c, src/editor.c, src/keybindings.c, src/keybindings.h,
2813    src/prefs.c:
2814    Replace our own GEANY_KEYS_MODIFIER_MASK by
2815    gtk_accelerator_get_default_mod_mask() which gives the same result.
2816  * src/filetypes.c, src/symbols.c, tagmanager/Makefile.am,
2817    tagmanager/makefile.win32, tagmanager/parsers.h, wscript:
2818    Add a trivial symbol parser for NSIS files.
2821 2009-04-19  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2823  * src/dialogs.c:
2824    Hide the extra file open dialog options in an expander to make the
2825    dialog more compact by default and to provide more space for the
2826    file view.
2827    Remove the filename field as it is also provided by GTK itself with
2828    more features like auto-completion.
2829    Watch the 'show-hidden' property of the file chooser widget using
2830    GObject's "notify" signal which gives accurate results and remove
2831    the hack using the "selection-changed" signal.
2834 2009-04-17  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2836  * src/callbacks.c, src/callbacks.h, src/encodings.c, src/filetypes.c:
2837    Prevent double execution of radio menu item "activate" or "toggled"
2838    signal handlers.
2839    Move 'Set Encoding' callback function into encodings.c.
2842 2009-04-16  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2844  * src/project.c:
2845    Add some missing 'void's in function definitions.
2846    If the project base path is './', just use the path of the project
2847    config file instead of appending './'.
2848  * src/treeviews.c, src/project.c:
2849    When a project is loaded, replace the project base path with the
2850    project name in the Documents sidebar for parent items
2851    (closes #2723679).
2854 2009-04-15  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2856  * src/keyfile.c, src/keyfile.h, src/project.c:
2857    Fix duplicating the recent files and projects lists when closing
2858    a project.
2859  * src/build.c, src/callbacks.c, src/dialogs.c, src/document.c,
2860    src/editor.c, src/encodings.c, src/filetypes.c,
2861    src/geanymenubuttonaction.c, src/geanyobject.c, src/geanywraplabel.c,
2862    src/highlighting.c, src/keybindings.c, src/keyfile.c, src/main.c,
2863    src/msgwindow.c, src/navqueue.c, src/notebook.c, src/plugins.c,
2864    src/prefs.c, src/queue.c, src/sciwrappers.c, src/socket.c,
2865    src/symbols.c, src/templates.c, src/toolbar.c, src/tools.c,
2866    src/treeviews.c, src/ui_utils.c, src/utils.c, src/vte.c:
2867    Remove all G_LIKELY macros inside g_return_if_fail() statements as
2868    this is redundant.
2869    Remove many other G_LIKELY/G_UNLIKELY macros which doesn't make much
2870    sense to keep the code more readable.
2873 2009-04-09  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2875  * src/symbols.c:
2876    When updating global type definitions for opened documents, take
2877    also C++ namespace symbols into account and don't ignore symbols
2878    which are defined inside a scope.
2881 2009-04-09  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2883  * src/plugins.c:
2884    Don't show 'plugin is not binary compatible' messages on the status
2885    bar, only the status window.
2888 2009-04-08  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2890  * src/socket.c:
2891    When opening files from a remote instance on X11, set the window
2892    server time to encourage window managers to pop up the main window
2893    (related to #2735467 and #2276179).
2894  * src/main.c:
2895    When finished sending filenames to a remote instance, notify the
2896    environment that we finished starting up.
2899 2009-04-08  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2901  * src/ui_utils.h, src/utils.h, src/ui_utils.c:
2902    Sort Configuration Files menu.
2903    Add ui_menu_sort_by_label().
2904    Add foreach_list() macro.
2905  * src/editor.c:
2906    Fix autocompletion.
2909 2009-04-07  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2911  * src/main.c:
2912    Fix setting a wrong default window size when starting without an
2913    existing configuration.
2914  * src/editor.c, src/sciwrappers.c, src/sciwrapper.h:
2915    Make editor_highlight_braces() static.
2916    Remove unused wrapper functions.
2917  * src/editor.c, src/symbols.c, src/symbols.h:
2918    Prevent showing an empty macro list.
2919    Show only macros of the same filetype instead of all macros of all
2920    loaded filetypes.
2921  * src/ui_utils.c:
2922    Don't add opened project files to the GtkRecentManager.
2925 2009-04-07  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2927  * src/editor.c:
2928    Add Configuration Files item for snippets.conf.
2929  * src/highlighting.c, src/symbols.c:
2930    Fix 2 old uses of filetype IDs.
2933 2009-04-06  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2935  * src/interface.c, src/printing.c, geany.glade:
2936    Minor string improvements (spotted by Jean-Philippe Moal, thanks).
2939 2009-04-05  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2941  * src/ui_utils.c:
2942    Add sanity checks in ui_lookup_widget() just to be safe.
2943  * THANKS, TODO, geany.glade, src/about.c, src/interface.c,
2944    src/keyfile.c, src/main.c, src/plugindata.h, src/project.c,
2945    src/project.h, src/ui_utils.c, src/ui_utils.h:
2946    Add "Recent Projects" menu to the Project menu
2947    (#2728630, patch by Elias Pschernig, thanks).
2948  * doc/geany.txt, doc/geany.html:
2949    Describe how to build Geany using the Waf build system.
2950  * src/build.c, src/callbacks.c, src/dialogs.c, src/document.c,
2951    src/document.h, src/editor.c, src/encodings.c, src/filetypes.c,
2952    src/geanymenubuttonaction.c, src/geanyobject.c, src/geanywraplabel.c,
2953    src/highlighting.c, src/keybindings.c, src/keyfile.c, src/log.c,
2954    src/main.c, src/msgwindow.c, src/navqueue.c, src/notebook.c,
2955    src/plugins.c, src/prefs.c, src/queue.c, src/sciwrappers.c,
2956    src/socket.c, src/symbols.c, src/templates.c, src/toolbar.c,
2957    src/tools.c, src/tools.h, src/treeviews.c, src/ui_utils.c,
2958    src/utils.c, src/utils.h, src/vte.c:
2959    Start using G_LIKELY/G_UNLIKELY macros to gain a little more
2960    performance when building the code with gcc.
2961  * src/highlighting.c:
2962    Fix typo in the G_LIKELY checks, introduced in last commit.
2963    Fix the size of the styles array.
2964  * src/document.c:
2965    Show a message dialog when renaming a file fails.
2968 2009-04-03  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2970  * src/build.c:
2971    Remove checks for the .pdf or .dvi files when viewing a LaTeX file
2972    (as we did for all other files in SVN r3382).
2975 2009-04-03  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2977  * src/filetypes.c, doc/geany.txt:
2978    Move ActionScript to the Script group.
2979    Fix wording & typo.
2980  * src/templates.c, src/utils.h, src/highlighting.c, src/dialogs.c,
2981    src/plugindata.h, src/filetypes.c, src/filetypes.h, src/plugins.c,
2982    src/symbols.c, src/ui_utils.c, plugins/saveactions.c,
2983    plugins/htmlchars.c:
2984    Merge reorder-filetypes branch:
2985    Make GEANY_FILETYPES_NONE = 0, sort filetype IDs randomly (so we can
2986    append randomly without breaking the ABI).
2987    Make None filetype name = title = _("None").
2988    Add foreach_slist() macro.
2989    Add filetypes_by_title list to GeanyData for plugin API access
2990    - a list of filetype pointers, which includes the None filetype
2991    first. This list stays constant by the time plugins are initialized,
2992    so you can use e.g. g_slist_nth_data(filetypes_by_title, n) to
2993    index the sorted list.
2996 2009-03-31  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2998  * doc/geany.txt, doc/geany.html, src/main.c:
2999    Add widget names for the menubar and toolbar.
3000  * src/msgwindow.c:
3001    When hiding the messages window, set the input focus back to the
3002    editor widget (part of #1910393).
3005 2009-03-30  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3007  * scintilla/LexOthers.cxx, src/highlighting.c, tagmanager/conf.c:
3008    Backport recent changes from Scintilla CVS to add partial support
3009    for RFC2822 styled text using the Properties lexer.
3010    Ignore leading whitespace for config files and RFC2822 text.
3011  * data/filetypes.actionscript:
3012    Update/fix ActionScript keywords (patch by Chris Macksey, thanks).
3013  * THANKS, src/treeviews.c:
3014    Display file/directory icons in the Documents sidebar
3015    (patch by Simon Treny, thanks).
3018 2009-03-29  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3020  * doc/geany.html, doc/geany.txt, geany.glade, src/callbacks.c,
3021    src/callbacks.h, src/interface.c, src/keyfile.c, src/main.c,
3022    src/plugindata.h, src/prefs.c, src/toolbar.c, src/toolbar.h:
3023    Add an option to allow appending the toolbar to the main menu bar
3024    to save some vertical space.
3025    Allow setting toolbar icon size to very small (menu icon size).
3028 2009-03-27  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3030  * src/keyfile.c, src/utils.c, src/utils.h:
3031    Add utils_path_skip_root(), a relative path safe variant of
3032    g_path_skip_root (forgotten patch by Colomban Wendling, #2518658).
3033  * src/keyfile.c, src/main.c:
3034    Allow negative window coordinates when saving and restoring the
3035    position of the main window.
3036    Restore the main window position and size *after* the window has
3037    been realised to get it positioned accordingly
3038    (this affects at least Windows).
3041 2009-03-26  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3043  * src/main.c, src/plugins.c, src/win32.c, src/win32.h:
3044    Use g_win32_get_package_installation_directory_of_module() on Windows
3045    with newer GLib versions instead of deprecated API.
3046  * src/keybindings.c:
3047    Don't manage the last used documents list when quitting to prevent
3048    errors by accessing invalid memory (may close #2533990).
3051 2009-03-25  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3053  * src/build.c:
3054    Delete the geany_run_script.sh immediately after execution
3055    to prevent leaking old copies when the script was quit unexpectedly
3056    (closes #2710482, patch by Martin Olsson, thanks).
3057  * src/keyfile.c:
3058    Check whether skipping the root element of a document's filename
3059    succeeded and use the filename itself if not (e.g. on relative
3060    filenames, #2702844).
3061    Use the locale encoded filename when saving session files.
3062  * src/callbacks.c:
3063    Re-set the quitting status after all documents have been closed on
3064    quitting.
3067 2009-03-24  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
3069  * plugins/htmlchars.c:
3070    Remove usage of deprecated sci_get_selected_text() from plugin.
3073 2009-03-24  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3075  * src/callbacks.c:
3076    Delay disk file checks when switching between documents a little
3077    bit to avoid fast, unintentional page switching in some cases.
3078  * plugins/geanyfunctions.h, src/plugindata.h, src/plugins.c,
3079    src/sciwrappers.c, src/sciwrappers.h:
3080    Deprecate sci_get_text(), sci_get_selected_text() and
3081    sci_get_text_range().
3082    Add sci_get_contents(), sci_get_contents_range() and
3083    sci_get_selection_contents() as replacement functions to provide
3084    an easier and cleaner API (initial patch by Frank).
3087 2009-03-22  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3089  * tagmanager/css.c:
3090    Fix wrong parsing of CSS tags when the definition block starts on
3091    a new line (reported by Dominic Hopf, thanks).
3094 2009-03-20  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
3096  * plugins/htmlchars.c:
3097    Extend plugin by feature to bulk replace and replace on input for
3098    special characters to their HTML entities.
3101 2009-03-19  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3103  * src/build.c:
3104    Update build menu items after changing anything in the
3105    'Set Includes and Arguments' dialog.
3106    Disable Compile/Run buttons/menu items when Compile/Run commands are
3107    set but empty.
3108    Reset current build directory to the base directory after reading a
3109    "Leaving directory" message when parsing Make output
3110    (closes #2694479, patch by Andrea Mazzoleni, thanks).
3111  * src/notebook.c:
3112    Fix wrong display of the filename in the tab bar menu for new files.
3113  * src/dialog.c:
3114    Set the initial directory for the Save As dialog only once on
3115    initialisation.
3116    Add a shortcut of the project's base directory to the
3117    File Open/Save As dialogs when a project is open for faster access.
3118  * src/splitwindow.c:
3119    Add keybindings for the split actions.
3122 2009-03-16  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3124  * src/search.c:
3125    When using Find All in the Find dialog (in Session and Document),
3126    display the right amount of matches.
3127    Fix the display of the matches once per line (I broke the original
3128    patch).
3129  * src/ui_uitls.c:
3130    Fix wrong directory selection behaviour in all Open Folder dialogs
3131    (closes #2688020, patch by Marcel Stimberg, thanks).
3132  * src/socket.c:
3133    Don't present the main window of a running instance when starting
3134    a second instance separately.
3137 2009-03-15  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3139  * src/socket.c:
3140    Reduce default file permissions on the Unix Domain socket file
3141    (reported by Jörg Sommer, thanks).
3144 2009-03-13  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3146  * doc/geany.txt, doc/geany.html, geany.glade, src/interface.c,
3147    src/main.c, src/plugindata.h, src/plugins.c, src/prefs.c,
3148    src/prefs.h:
3149    Add an option to set an additional plugin lookup path.
3150  * src/search.c:
3151    When using Find All in the Find dialog, display matches only once
3152    per line in the messages window (patch by Bert Vermeulen, thanks).
3155 2009-03-10  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3157  * data/filetype_extensions.conf, data/filetypes.actionscript,
3158    src/about.c, src/document.c, src/filetypes.c, src/filetypes.h,
3159    src/highlighting.c, src/plugindata.h, src/symbols.c,
3160    tagmanager/Makefile.am, tagmanager/actionscript.c,
3161    tagmanager/makefile.win32, tagmanager/parsers.h, THANKS, wscript:
3162    Add filetype ActionScript (patch by Chris Macksey, thanks).
3163    Update type keywords only for real C-like languages.
3164    Fix wrong sorting of Assembler and Ada filetypes.
3165  * plugins/classbuilder.c:
3166    Use G_DEFINE_TYPE in the GTK+ class template instead of manual code.
3167    Other minor cleanups.
3170 2009-03-05  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3172  * src/notebook.c:
3173    Don't use menu item images for the tab bar menu to save some
3174    vertical space.
3175  * data/filetypes.fortran, tagmanager/fortran.c:
3176    Add keyword 'extends' and fix Fortran parser to support the
3177    'extends' keyword (closes #2654492).
3178  * geany.glade, plugins/export.c, src/interface.c, src/printing.c,
3179    src/search.c, src/toolbar.c:
3180    Fix punctuation.
3183 2009-03-03  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
3185  * src/about.c, THANKS:
3186    Added Jari Rahkonen to list of Finnish translators.
3189 2009-03-02  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3191  * geany.pc.in:
3192    Adjust minimum required GTK version.
3193  * src/Makefile.am, wscript:
3194    Add main.h to the list of installed header files.
3195  * geany.glade, src/document.c, src/documentprivate.h, src/interface.c,
3196    src/notebook.c, src/ui_utils.c:
3197    Remove GeanyDocumentPrivate::tabmenu_label.
3198    Disable the default tab bar menu for the main notebook widget and
3199    use a custom menu instead which lists all open files as usual plus
3200    'Close Other Documents' and 'Close All' menu items.
3203 2009-02-27  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3205  * src/callbacks.c, src/search.c, src/ui_utils.c, src/ui_utils.c:
3206    Move ui_set_search_entry_background() into ui_utils.c.
3207    Change the background colour of the search entries in the Find
3208    and Replace dialogs according to the search results like in the
3209    toolbar search field.
3210    Add images to the 'Replace' and 'Replace and Find' buttons in the
3211    Replace dialog.
3212    Minor cleanups in search.c.
3213  * tagmanager/tm_source_file.c:
3214    Update source files upon creation.
3215  * data/c99.tags:
3216    Update C tags for glibc 2.9.
3217  * src/callbacks.c, src/toolbar.c:
3218    Fix broken non-incremental search with the toolbar search entry when
3219    pressing Enter (closes #2638180).
3220  * plugins/splitwindow.c:
3221    Fix possible crash on non-32-bit systems (patch by
3222    Wolfgang Ocker, thanks).
3223  * geany.spec.in:
3224    Update the Packager tag due to Dominic's various contributions.
3225    Update description and feature list.
3226    Change Source tag to the gzip'ed tarball to be in sync with the
3227    Makefile target (thanks to Wolfgang Ocker for reporting).
3230 2009-02-26  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
3232  * plugins/vcdiff.c, plugins/Makefile.am, po/POTFILES.in:
3233    Removed deprecated plugin VC Diff
3236 2009-02-25  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3238  * src/templates.c:
3239    Fix wrong Fortran 90 comment characters when inserting templates.
3240  * doc/geany.html, doc/geany.txt, geany.glade, src/callbacks.c,
3241    src/callbacks.h, src/editor.c, src/interface.c, src/keybindings.c,
3242    src/keybindings.h, src/main.c, src/plugindata.h, src/vte.c,
3243    src/vte.h, THANKS:
3244    Add 'Send Selection to Terminal' command to the Edit->Format menu
3245    (initial patch by David Gleich, thanks).
3246  * geany.glade, src/interface.c:
3247    Fix mnemonic for the Edit->Preferences menu item.
3250 2009-02-24  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3252  * configure.in, plugins/Makefile.am:
3253    Enable socket support when cross-compiling.
3254    Enable plugin compilation when cross-compiling.
3255  * src/msgwindow.c:
3256    Fix missing NULL checks when reading the colour value of compiler
3257    output messages.
3258  * src/main.c, src/win32.c, src/win32.h:
3259    On Windows, change the working directory to the Geany installation
3260    path at startup to avoid unwanted directory locking(closes #2626124).
3261  * src/encoding.c:
3262    Fix broken selection of "Document->Set Encoding" menu items.
3263  * src/document.c, tagmanager/include/tm_source_file.h,
3264    tagmanager/include/tm_work_object.h, tagmanager/tm_project.c,
3265    tagmanager/tm_source_file.c, tagmanager/tm_tag.c,
3266    tagmanager/tm_work_object.c, tagmanager/tm_workspace.c:
3267    Don't let the tagmanager automatically reparse files if they
3268    seem to be changed on disk (affects all files in the current session,
3269    not the current one). This should speed up file saving a little bit,
3270    especially with remote files.
3271    Remove now unnecessary calls to tm_workspace_update().
3272  * src/printing.c:
3273    Allow an empty value for the date format in the print settings to
3274    omit the date/time string in the print header.
3277 2009-02-20  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
3279  * src/editor.c: Set cursor for LaTeX at auto closing of environment
3280    direct into area.
3283 2009-02-19  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3285  * src/utils.h:
3286    Add missing header include (closes #2615808).
3289 2009-02-18  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3291  * src/symbols.c:
3292    Fix a possible crash when comparing symbol names
3293    (could be related to Ubuntu bug #147151).
3294    Fix broken symbol list tooltips when tag names contain ampersands.
3297 2009-02-15  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
3299  * plugins/makefile.win32:
3300    Don't build Split Window plugin on Windows (doesn't work).
3303 2009-02-15  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3305  * ChangeLog, Makefile.am: Rotate ChangeLog.
3306  * configure.in, geany.nsi, geany_private.rc, win32-config.h,
3307    wscript, doc/geany.txt, doc/geany.html, src/geany.h:
3308    Post-release version bump.
3311 *** See ChangeLog.pre-0-17 for earlier changes ***