Support {ob} and {cb} wildcards for snippets too (fixes #2937008).
[geany-mirror.git] / ChangeLog
blob9a5d517b7563d9b007bb7cd5451f33369a82a033
1 2010-04-21  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
3  * src/templates.c, doc/geany.txt, doc/geany.html:
4    Support {ob} and {cb} in fileheader and file templates; they are
5    replaced last with { and }. This allows 'escaping' of wildcard
6    strings.
7  * src/editor.c, plugins/classbuilder.c:
8    Fix Class Builder plugin to use correct indentation instead of
9    always tabs.
10    Make editor_insert_text_block() only replace leading tabs for the
11    'Tabs' indent type; also group edits for undo.
12  * src/templates.c, src/templates.h, src/editor.c, doc/geany.txt,
13    doc/geany.html:
14    Support {ob} and {cb} wildcards for snippets too (fixes #2937008).
17 2010-04-19  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
19  * tagmanager/pascal.c:
20    More fixes to prevent possible crashes by trying to free NULL
21    pointers.
22  * src/sidebar.c:
23    Automatically show and hide the sidebar notebook tabs according
24    to the amount of visible pages (patch by Adrian Dimitrov, thanks).
25  * src/editor.c:
26    Add a static global variable to monitor autocompletion mode in order
27    to prevent cancellation of the struct/class (C/C++) auto completion
28    list (patch by Thomas Martitz, thanks).
29  * src/socket.c:
30    When starting and trying to access the Unix Domain socket of a
31    potentially running instance, first compare file ownership with the
32    user id of the running process to prevent accessing a wrong socket
33    file (part of #2985463, this might not yet be the final solution).
36 2010-04-19  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
38  * plugins/filebrowser.c:
39    Synchronize popup menu and plugin preferences dialog 'Show Hidden
40    Files' option (fixes #2989288).
43 2010-04-18  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
45  * tagmanager/entry.c, tagmanager/entry.h,
46    tagmanager/include/tm_source_file.h, tagmanager/parse.c,
47    tagmanager/parse.h, tagmanager/tm_source_file.c:
48    Add tm_source_file_set_tag_arglist() to manually set the argument
49    list of a tag.
50  * tagmanager/python.c:
51    Use tm_source_file_set_tag_arglist() to set the argument list
52    field of Python class tags to the argument list of their
53    __init__() methods.
54    Backport a fix from CTags SVN to prevent possible crashes by trying
55    to free NULL pointers.
58 2010-04-17  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
60  * tagmanager/txt2tags.c:
61    Remove duplicate code from Txt2Tags parser.
62    Remove the title control characters ('=') when parsing titles.
63    Also parse numbered titles (closes #2984703).
64  * doc/geany.html, doc/geany.txt, src/keybindings.c, src/keybindings.h,
65    src/plugindata.h:
66    Add 'Remove Markers' and 'Remove Error Indicators' keybindings.
67    Add missing documentation for 'Reset Zoom' keybinding.
68  * tagmanager/php.c:
69    Another attempt to fix the PHP parser regexp for parsing functions.
70    Fix wrong parsing of function arguments when those contain nested
71    brackets (as reported by Harold Aling).
72  * src/notebook.c:
73    Fix Ctrl-Click on notebook tab if Numpad is active.
76 2010-04-11  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
78  * geany.glade, doc/geany.txt, plugins/geanyfunctions.h,
79    src/callbacks.c, src/interface.c, src/keyfile.c, src/plugindata.h,
80    src/plugins.c, src/prefs.c, src/toolbar.c, src/toolbar.h,
81    src/ui_utils.c, src/ui_utils.h:
82    Add option 'System Default' for toolbar icon style and size to
83    use the GTK default value.
84  * geany.glade, src/callbacks.c, src/callbacks.h, src/interface.c,
85    src/toolbar.c, src/toolbar.h:
86    Shorten the toolbar popup menu, only provide items for Toolbar
87    Preferences and to Hide the toolbar.
88  * src/toolbar.c:
89    Instantly update the toolbar icon size and style when the
90    corresponding global GTK settings are changed.
91  * doc/geany.1.in, doc/geany.txt, src/main.c, src/main.h,
92    src/plugindata.h, src/socket.c:
93    Add new command line option --list-documents to return a list
94    of currently opened documents (closes #2979933).
97 2010-04-09  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
99  * plugins/htmlchars.c:
100    Make plugin remember whether replacement of special characters was
101    activated even after restart of Geany or reloading of plugin.
104 2010-04-09  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
106  * src/editor.c:
107    Fix inserting snippets with an indent when using Mac CR line
108    endings.
109  * src/callbacks.c:
110    Update status bar after using Document->Set Line Endings.
111  * src/editor.c:
112    Improve API docs for editor_insert_text_block().
115 2010-04-08  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
117  * src/editor.c:
118    Refactor snippets_complete_constructs().
119    Remove an unnecessary TODO.
120  * src/editor.c:
121    Fix indenting a snippet when there is whitespace after the
122    snippet key name.
125 2010-04-07  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
127  * doc/geany.txt, doc/geany.html:
128    Improve wording.
129  * src/build.c, src/msgwindow.c:
130    Fix disabled compiler message tracking if using indicators to
131    show build errors is disabled (closes #2982834).
134 2010-04-07  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
136  * scintilla/Editor.cxx:
137    Backport fix from Scintilla CVS to fix using SCI_GETSELECTIONSTART
138    and SCI_GETSELECTIONEND with rectangular selections. This fixes
139    replacing in a rectangular selection.
142 2010-04-06  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
144  * src/filetypes.c:
145    Re-detect any document filetypes set to None after reloading
146    filetype extensions (closes #2979661).
147  * src/editor.c:
148    Fix showing '...' item last instead of first for document word
149    completion.
152 2010-04-05  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
154  * data/filetypes.perl:
155    Adjust Perl Compile command to use the -c command
156    line option to perform a syntax check instead of using the
157    deprecated ByteCompile module.
158    Add error_regex to parse error messages and warnings when performing
159    syntax checks on Perl files.
162 2010-04-05  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
164  * src/keybindings.c, src/keybindings.h, doc/plugins.dox:
165    Add API docs for keybinding enums.
166  * src/notebook.c, doc/geany.txt, doc/geany.html:
167    Make Ctrl-click on any notebook tab switch to the last used
168    document.
171 2010-04-01  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
173  * src/geanymenubuttonaction.c, src/geanymenubuttonaction.h,
174    src/geanyentryaction.c, src/geanyentryaction.h,
175    src/geanywraplabel.c:
176    Cache G_TYPE_INSTANCE_GET_PRIVATE() result when initializing an
177    object for efficiency.
180 2010-03-31  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
182  * plugins/classbuilder.c:
183    Beep if the user hasn't entered a class name on pressing OK.
184  * src/search.c:
185    Fix replacing '^' regex.
186  * src/plugindata.h, src/stash.c, src/stash.h, src/plugins.c,
187    plugins/geanyfunctions.h:
188    Add Stash widget functions to API.
189  * configure.ac:
190    Revert commit to use AC_PATH_PROG instead of 'which' (fixes
191    #2973764).
194 2010-03-30  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
196  * THANKS, src/vte.c:
197    Apply patch from Yoann Le Montagner to set VTE bold color (thanks,
198    fixes #2976905).
199  * wscript, src/plugindata.h, src/stash.c, src/stash.h, src/plugins.c,
200    src/Makefile.am, doc/plugins.dox, doc/stash-example.c,
201    plugins/geanyfunctions.h, plugins/geanyplugin.h:
202    Add Stash setting functions to API.
203    Remove unnecessary argument to stash_group_load_from_file().
204  * src/geanyobject.c, plugins/classbuilder.c:
205    Don't generate FOO_GET_PRIVATE() macro because caching the result
206    in Foo::priv can be much more efficient.
209 2010-03-25  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
211  * src/editor.c:
212    Fix cursor positioning when toggling comments
213    (patch by Thomas Martitz, thanks).
216 2010-03-25  Peter Scholtens  <peter(dot)scholtens(at)xs4all(dot)nl>
218  * src/keybindings.[hc]:
219    Added Control+0 for zoom reset, see suggestion from #2969886.
222 2010-03-25  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
224  * src/search.c, src/document.c:
225    Fix wrong selection range after Replace in Selection.
228 2010-03-20  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
230  * src/win32.c:
231    Make CreateChildProcess() working with Unicode strings, e.g.
232    directory names (closes #2972606).
233  * geany.nsi:
234    Remove reference to already removed latex.tags file.
235    Future releases probably still depend on GTK 2.16.
236  * scintilla/ScintillaGTK.cxx:
237    Backport fix from Scintilla CVS to not paste text beyond the end
238    of lines (closes #2969096).
239  * plugins/htmlchars.c, src/geany.h, src/keybindings.c, src/main.c,
240    src/plugindata.h:
241    Deprecate GEANY_WINDOW_MINIMAL_WIDTH/GEANY_WINDOW_MINIMAL_HEIGHT
242    to not set Geany's minimum window size anymore (closes #2972992).
243    As replacement, add GEANY_DEFAULT_DIALOG_HEIGHT.
246 2010-03-19  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
248  * src/stash.c:
249    Make adding string and string vector settings initialise the setting
250    to NULL for safety.
251  * src/utils.c, src/stash.c, src/stash.h, doc/stash-example.c:
252    Add stash_group_load_from_file() and stash_group_save_to_file().
255 2010-03-18  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
257  * data/filetypes.common:
258    Set default for wrapped lines to show marker at end of line only
259    (more expected and doesn't change line alignment - closes #2972386).
260  * src/toolbar.c, src/toolbar.h, src/prefs.c, src/prefs.h,
261    src/pluginutils.c, doc/plugins.dox:
262    Improve API docs contents page by listing all commonly-used files.
263    Fix 'Date' appearing twice on the date line.
264    Don't generate API docs for prefs.h, toolbar.h (unused).
265    Move some '@file' doc-comments to the .c file.
266  * src/interface.c, geany.glade:
267    Add frame for 'Printing' prefs dialog page.
268  * src/sidebar.c, src/project.c, src/prefs.c, src/stash.c, src/stash.h,
269    src/keyfile.c, src/keyfile.h, src/search.c, src/plugins.c,
270    doc/stash-example.c:
271    Rename Stash data types to be independently named from Geany (so
272    Stash can be reused for other projects).
273    Rename GeanyPrefGroup to StashGroup.
276 2010-03-17  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
278  * tagmanager/python.c:
279    Apply patch from Colomban Wendling to parse Python lambda functions
280    (thanks) - modified to only parse toplevel or class member lambdas.
281  * src/stash.c, src/stash.h, doc/Doxyfile.in, doc/Makefile.am,
282    doc/stash-example.c:
283    Add doc-comments for Stash setting functions.
284    Add an example file showing usage of Stash.
285    (Not enabled yet until added to the plugin API).
288 2010-03-17  Lex Trotman  <elextr.at.gmail.dot.com>
290  * src/build.c:
291    Fix using return value without checking return status, caused
292    incorrect sensitivity settings on build dialog.
295 2010-03-16  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
297  * HACKING:
298    Add tip about gcc optimization & warnings/debugging.
299    Add Testing section.
300    Update Libraries section about synchronizing with other projects.
303 2010-03-15  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
305  * src/ui_utils.c:
306    For now revert the recent patch which set real_path of newly
307    open non-existent configuration files as this seems hackish and
308    causes 'file not found' warnings.
309  * wscript:
310    Fix/Improve GIT repository detection
311    (patch by Thomas Martitz, thanks).
312  * plugins/geanyfunctions.h, src/plugindata.h, src/plugins.c,
313    src/utils.c:
314    Add utils_copy_environment() to the plugin API.
317 2010-03-15  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
319  * src/utils.c, src/utils.h, src/sciwrappers.c, src/dialogs.c,
320    src/navqueue.c, src/msgwindow.c, src/filetypes.c, src/document.c,
321    src/main.c:
322    Use 3rd person for more API dox.
323    Change 'This is a wrapper function for...' to 'Wraps...' in brief
324    descriptions.
325    Change 'After all...' to 'Afterwards...'.
326  * src/interface.c, geany.glade:
327    Apply patch from Eugene Arshinov to make frame packing/alignment
328    more consistent (thanks).
331 2010-03-12  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
333  * src/ui_utils.c:
334    Fix ui_button_new_with_image() to call gtk_button_set_image() so
335    that gtk_button_[sg]et_label() work as expected.
336  * src/build.c, src/dialogs.c, src/dialogs.h, src/callbacks.c:
337    Make Build Commands dialog show menu item labels as a button (to
338    help show that menu labels don't normally need to be edited &
339    display the mnemonic correctly). Clicking shows an input dialog to
340    set a new menu item label.
341    Split dialogs_show_input() into 2 functions: one simple, one for
342    a persistent dialog.
343    Fix possible double-destroy of input dialog when closed by user.
344  * src/dialogs.c:
345    Fix not destroying 'Make Custom Target' input dialog after first
346    use (oops).
347  * src/project.c:
348    Make Long Line Marker settings for existing projects default to
349    general settings instead of 0 (thanks to Eugene Arshinov).
350  * src/utils.c, src/ui_utils.h, src/utils.h, src/highlighting.c,
351    src/keybindings.c, src/sciwrappers.c, src/plugindata.h,
352    src/filetypes.c, src/filetypes.h, src/document.c, src/pluginutils.c,
353    src/document.h, src/editor.c, src/editor.h, src/ui_utils.c:
354    Use 3rd person (gets not get) for API function brief descriptions.
355    Avoid using 'convenience function' in API brief descriptions.
358 2010-03-10  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
360  * doc/geany.txt, doc/geany.html:
361    Warn about some GNU extensions for regular expressions & clarify
362    some points.
363  * src/interface.c, src/keybindings.c, src/project.c, src/project.h,
364    src/prefs.c, src/plugindata.h, src/keyfile.c, src/editor.c,
365    src/editor.h, geany.glade:
366    Apply patch from Eugene Arshinov to add project long line marker
367    customisation (thanks).
368  * src/interface.c, geany.glade:
369    Edit/tidy 'Long line marker' labels.
372 2010-03-10  Lex Trotman  <elextr.at.gmail.dot.com>
374  * src/build.c, src/project.c:
375    Fix crash due to NULL in project build preferences (thanks to
376    Wolfgang Ocker).
379 2010-03-09  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
381  * src/utils.c, src/utils.h, src/search.c, src/search.h,
382    src/document.c, doc/geany.txt, doc/geany.html:
383    Merge gnu-regex branch:
384    Use POSIX system/GNU regex engine for find & replace 'Use regular
385    expressions' option. This alters regex syntax a bit - see the docs
386    for details; we now support '?' operator and replacement backslash
387    escaping is more standard.
388    Make regex search imply replacing escaped chars.
389    Allow \0 backreference replacement for the whole match.
390    Note: Replace All may be slower; if this is a problem please let me
391    know.
392  - code:
393    Add argument to utils_str_replace_escape() for keeping
394    uninterpreted backslash escapes e.g. '\\', '\e'.
395  * scintilla/LexMarkdown.cxx:
396    Backport minor formatting/style changes from Scintilla project.
397  * doc/geany.txt, doc/geany.html:
398    Remove warning about no visual indication for zero-column-mode
399    editing.
402 2010-03-09  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
404  * wscript:
405    Skip unavailable languages in LINGUAS (thanks to Christian Dywan).
408 2010-03-07  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
410  * wscript, scintilla/*, scintilla/include/*:
411    Update Scintilla to version 2.03.
412  * geany.glade, doc/geany.txt, doc/geany.html, src/editor.c,
413    src/editor.h, src/interface.c, src/keyfile.c, src/plugindata.h:
414    Add preference for virtual spaces.
415  * src/log.c:
416    Fix wrong default response for the Debug Messages dialog.
417  * src/dialogs.c:
418    Fix crashes when using Save As with no open files (closes #2964406).
419  * src/document.c:
420    Fix duplicate mnemonics on 'Resave missing file' dialog, also
421    move the question from the secondary to the main text to be
422    more compatible with the Gnome HIG.
423    Fix broken 'Save' action in 'Resave missing file' dialog.
424  * tagmanager/php.c:
425    Improve PHP parser to parse also the argument lists of PHP functions.
426  * src/prefs.c:
427    Correctly set the parent widget for the keybinding overwrite
428    confirmation dialog.
429  * src/dialog.c:
430    Fix setting the icon for some dialogs if the parent itself is also
431    a dialog.
432  * src/ui_utils.c:
433    When editing non-existent config files using the Tools->Configuration
434    Files menu, explicitly set the real_path to avoid presenting the Save
435    As dialog when saving the file (patch by Tony Rick, thanks).
436  * src/callbacks.c:
437    Focus the editor widget after hiding the sidebar when it had the
438    input focus (patch by Can Koy, thanks).
439    Properly show/hide the mesages window when using the View menu item
440    (closes #2961282).
441  * plugins/filebrowser.c:
442    After opening files, focus the editor widget
443    (based on a patch by Can Koy, thanks).
444  * plugins/filebrowser.c, plugins/geanyfunctions.h, src/msgwindow.c,
445    src/plugindata.h, src/plugins.c, src/sidebar.c, src/ui_utils.c,
446    src/ui_utils.h, src/vte.c:
447    Add and use convenience function ui_is_keyval_enter_or_return() and
448    add it to the plugin API.
451 2010-03-05  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
453  * src/about.c, THANKS, po/ast.po:
454    Added Asturian translation. Thanks to Marcos Costales for providing.
457 2010-02-28  Dominic Hopf  <dmaphy(at)googlemail(dot)com>
459  * src/log.c:
460    Fix keyboard accelerators in debug messages window
461    (Thanks Can Koy).
464 2010-02-28  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
466  * scintilla/LexR.cxx:
467    Backport R lexer from Scintilla CVS to fix case sensitive keywords
468    (Scintilla bug #2956543).
469  * src/sidebar.c, src/about.c, THANKS:
470    Make Space on the symbol and document list not focus the editor
471    widget while Enter does (closes #2919444, patch by Can Koy, thanks).
472  * src/document.c, src/document.h:
473    Fix document_try_focus() to make it work with the sidebar document
474    list as well.
475  * src/msgwindow.c, src/msgwindow.h, src/ui_utils.c, src/ui_utils.h:
476    Make Space on the compiler and messages widgets not focus the editor
477    widget while Enter does (patch by Can Koy, thanks).
478  * src/editor.c:
479    Fix wrongly auto-detected multiline comments
480    (patch by Eugene Arshinov, thanks).
483 2010-02-28  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
485  * src/ui_utils.c:
486    Show number of lines of current document inside statusbar. Thanks to
487    Can Koy for providing the patch.
490 2010-02-24  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
492  * src/keybindings.c, doc/geany.txt, doc/geany.html:
493    Make Switch to Editor keybinding reshow the document statistics
494    line, so user doesn't have to move the cursor.
497 2010-02-22  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
499  * data/filetypes.r:
500    Update keywords for the R language (patch by Jon Senior, thanks).
503 2010-02-21  Dominic Hopf  <dmaphy(at)googlemail(dot)com>
505  * doc/geany.txt:
506    Fix the instruction how to insert unicode characters
507    (thanks Tony Rick).
510 2010-02-21  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
512  * scripts/create_py_tags.py:
513    Minor fixes.
514    Replace tabs by spaces.
515  * plugins/genapi.py:
516    Minor fixes.
517    Replace tabs by spaces.
518  * tagmanager/r.c, plugins/geanyfunctions.h, src/about.c,
519    src/filetypes.c, src/symbols.c, tagmanager/Makefile.am,
520    tagmanager/makefile.win32, tagmanager/parsers.h, wscript, THANKS:
521    Add R tagmanager symbol parser (patch by Jon Senior, thanks).
522  * doc/geany.html, doc/geany.txt, src/keybindings.c, src/keybindings.h,
523    src/plugindata.h, src/sidebar.c, src/sidebar.h:
524    Add keybindings to switch to the sidebar's Document and Symbol list
525    as well as to the Message Window's current tab
526    (patch by Eugene Arshinov, thanks).
527  * data/filetypes.r:
528    Update primary keywords for the R language
529    (patch by Jon Senior, thanks).
532 2010-02-20  Dominic Hopf  <dmaphy(at)googlemail(dot)com>
534  * doc/geany.txt:
535    Add more detailed hints about reloading configuration
536    (thanks to Tony Rick).
537  * data/filetypes.javascript:
538    Correct the keyword list for JavaScript (thanks to Jonas).
541 2010-02-14  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
543  * New release: Geany 0.18.1 "Balfour".
546 2010-02-13  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
548  * src/keybindings.c:
549    Add special cases for handling the Select All keybinding (Ctrl-A) in
550    the toolbar search and goto line text entries (closes #2948040).
551    Strip trailing spaces after reflowing a paragraph, patch by
552    Dominik Wagenfuehr, thanks (closes #2945497).
555 2010-02-07  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
557  * src/geanymenubuttonaction.c, src/templates.c:
558    Partly revert last commit:
559    Unref the new files toolbar menu when freeing templates as it
560    was done before but unref it *after* the menu has been removed
561    from the GeanyMenuButtonAction.
562  * src/encodings.c:
563    Fix possible endless loop when trying to detect the encoding of
564    non-text files (patch by Alexey Antipov, thanks).
567 2010-02-06  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
569  * src/document.c:
570    Allow saving remote files using g_file_set_contents() as well
571    (patch by Алексей Антипов, thanks).
572  * data/filetypes.python:
573    Adjust style for secondary keywords to be less aggressive.
574    Add Python 2.5 builtins keywords.
575  * src/geanymenubuttonaction.c, src/templates.c:
576    Unref the new files toolbar menu when setting a new menu to fix
577    possible crashes when reloading configuration.
578  * src/filetypes.c:
579    When reloading configuration, process the current document at last
580    so the symbol list will be updated correctly.
583 2010-02-01  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
585  * src/symbols.c:
586    Explicitly read filetype configuration files before generating
587    global tags to get settings for custom filetypes.
590 2010-02-01  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
592  * src/plugins.c:
593    Fix GLib warning when toggling 'no plugins available' item.
596 2010-01-31  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
598  * icons/Makefile.am:
599    Include geany.ico in the distribution tarball.
600  * Makefile.am:
601    Fix 'make distcheck' by removing data/latex.tags from EXTRA_DIST.
602  * scripts/create_py_tags.py:
603    Make the script a bit more robust with newer Python versions.
604  * src/templates.c:
605    Use utils_spawn_sync() instead of g_spawn_sync().
608 2010-01-31  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
610  * plugins/export.c:
611    Close meta tag for export date properly.
614 2010-01-28  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
616  * geany.spec.in:
617    Update RPM Spec file (patch by Dominic Hopf, thanks).
620 2010-01-28  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
622  * src/plugindata.h:
623    Fix renaming sci_send_message(), sci_send_command() function pointers.
626 2010-01-25  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
628  * src/highlighting.c, src/highlighting.h, src/sciwrappers.c,
629    src/plugindata.h, doc/Doxyfile.in, doc/pluginsymbols.c,
630    plugins/geanyfunctions.h, plugins/Makefile.am,
631    plugins/pluginmacros.h, plugins/genapi.py, ChangeLog, wscript:
632    Use full function name for GeanyFunctions function pointers. This
633    avoids naming conflicts e.g. with C++'s 'new' keyword.
634    Remove deprecated header pluginmacros.h - use geanyfunctions.h instead.
637 2010-01-24  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
639  * src/utils.c, src/utils.h, src/vte.c:
640    Add utils_copy_environment() and make use of it.
641  * data/snippets.conf, doc/geany.html, doc/geany.txt, src/callbacks.c,
642    src/editor.c, src/templates.c, src/templates.h:
643    Add new special template wildcard "{command:...}" to use the
644    output of a command in templates.
645    Adjust template functions to mostly work with GeanyDocuments.
646    Minor cleanups in the template code.
647  * src/gb.c:
648    Replace the old icons with smiley icons from the Rodent icon theme.
649    Fix showing the same icon for two or more slots.
650    Minor cleanups.
651  * src/editor.c, src/editor.h, src/keybindings.c:
652    Rename fold_symbol_click() to editor_toggle_fold().
653    Use editor_toggle_fold() when the 'Toggle current fold' keybinding
654    was used to respect the 'Fold/unfold all children' preference
655    (closes #2935053).
658 2010-01-22  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
660  * src/build.c:
661    Prevent possible segfault in get_build_group().
662  * src/callbacks.c:
663    Fix GLib warning & beep if trying to insert multiline comment for a
664    filetype that doesn't support it.
667 2010-01-18  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
669  * doc/plugins.dox:
670    Add gcc commands to build a plugin to the HowTo.
671  * src/search.c, src/document.c, src/document.h:
672    Show 'Replaced X matches in Y documents' message when using Replace in
673    Session.
676 2010-01-17  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
678  * scripts/plugin_test.c:
679    Add a little test program which can load and test Geany plugins to
680    verify it is loadable at runtime and all necessary symbols are
681    defined.
682  * doc/plugins.dox, src/geanyobject.c, src/geanyobject.h, src/main.c,
683    src/plugindata.h:
684    Add new signal: "geany-startup-complete" which is sent once all
685    initialization and startup tasks has been done.
686  * README.I18N, configure.ac, wscript, po/LINGUAS:
687    Remove po/LINGUAS from the repository.
688    Generate it automatically if needed by reading available
689    message catalogs from the po directory.
690    Also respect the LINGUAS environment variable properly.
693 2010-01-16  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
695  * src/editor.c:
696    Remove editor_auto_latex() from Geany core and move it to geanyLaTeX
697    plugin.
700 2010-01-12  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
702  * src/editor.c, src/templates.c, src/templates.h:
703    Refactor templates_replace_all() into templates_replace_valist()
704    to save some code duplication.
707 2010-01-11  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
709  * plugins/geanyfunctions.h, src/editor.c, src/editor.h,
710    src/plugindata.h, src/plugins.c:
711    Add editor_insert_text_block() to plugin API.
714 2010-01-01  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
716  * *.*:
717    Update copyright information.
718  * src/keybindings.c, src/keybindings.h, src/plugindata.h,
719    doc/geany.txt, doc/geany.html:
720    Add keybinding to open the last closed tab (closes #2912692).
723 2009-12-31  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
725  * autogen.sh, configure.in, configure.ac:
726    Rename configure.in to configure.ac.
727  * plugins/geanyfunctions.h, src/plugins.c, src/plugindata.h,
728    src/sciwrappers.c:
729    Add sci_find_text() to the plugin API.
730  * doc/geany.html, doc/geany.txt, geany.glade, src/callbacks.c,
731    src/interface.c, src/prefs.c:
732    Add a checkbox in the preferences dialog to explicitly toggle
733    the visibility of the sidebar (closes #2923340).
736 2009-12-29  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
738  * src/editor.c, src/plugins.c, src/plugindata.h,
739    plugins/geanyfunctions.h:
740    Add editor_get_eol_char_name(), editor_get_eol_char_len() and
741    editor_get_eol_char() to the plugin API.
742  * src/callbacks.c, src/plugins.c, src/plugins.h:
743    Fix sensitivity of the Edit->Plugin Preferences menu item
744    if plugins are loaded which do not provide a configuration dialog.
745  * scripts/create_py_tags.py:
746    Rewrite and extend the Python tags parsing script to use
747    Python's inspect module to read symbols from Python modules
748    including scope information.
749  * data/filetypes.restructuredtext:
750    Add the default comment character sequence for reStructuredText.
751  * src/callbacks.c:
752    Show the Find/Goto dialogs if the corresponding toolbar buttons are
753    clicked but their text fields are not part of the toolbar (#2920807).
754  * data/filetypes.common, doc/geany.html, doc/geany.txt,
755    src/highlighting.c:
756    Add new style to change foreground and background colours for
757    calltips (patch by Dimitar Zhekov, thanks, closes #2919229).
758  * src/search.c:
759    Remember the window position of the Find, Replace and Find in Files
760    dialogs (closes #2877988).
763 2009-12-26  Frank Lanitz  <frank@frank.uvena.de>
765  * doc/plugins.dox:
766    Fix a minor typo inside plugin API reference.
769 2009-12-20  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
771  * src/dialog.c, src/dialogs.h, src/document.c, src/prefs.c:
772    Make dialogs_show_prompt() more flexible to take up to three
773    button/response code pairs to be shown.
774    Add a close button to the dialog when asking to Re-Save a
775    deleted file
776    (closes #2916954, based on a patch by Dominik Stadler, thanks).
777  * src/editor.c:
778    Fix LaTeX environment auto completion with CR/LF line endings.
779    Add some sanity checks.
780  * src/document.c:
781    When closing a document after it was deleted from the filesystem,
782    don't ask whether it should be saved first.
783    Mark the document only as changed if it is not closed afterwards.
784    Prevent possible segfaults if the document was closed when it is
785    missing from the filesystem.
786  * src/keybindings.c, src/keyfile.c, src/main.c, src/msgwindow.c,
787    src/msgwindow.h, src/prefs.c:
788    Add MessageWindow::scribble and use it instead of searching the
789    widget pointer everytime.
790  * src/keyfile.c, src/msgwindow.c, src/msgwindow.h, src/ui_utils.h:
791    Add preferences for hiding single tabs from the messages window
792    (no GUI preferences yet, still to be implemented).
793  * src/callbacks.c, src/prefs.c, src/toolbar.c, src/toolbar.h:
794    Set the correct parent window for the toolbar editor
795    dialog (closes #2913334).
796  * src/win32.c, src/win32.h, src/ui_utils.c:
797    Rename win32_show_project_folder_dialog() to
798    win32_show_folder_dialog() as it is not related and not used by any
799    project management related code.
800  * src/ui_utils.c, src/win32.c, src/win32.h, src/dialogs.c:
801    Rename win32_show_file_dialog() to win32_show_document_open_dialog()
802    as it is specialised for opening documents.
803    Implement win32_show_file_dialog() as a generic file open dialog and
804    use it with ui_path_box_new().
807 2009-12-20  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
809  * src/editor.c:
810    Extend auto_latex() function to check whether an environment has been
811    closed within the next lines to avoid auto adding double \end{}.
812  * data/latex.tags:
813    Remove LaTeX tags from SVN. Can be found at
814    http://download.geany.org/contrib/tags/ if needed.
817 2009-12-19  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
819  * src/callbacks.c, src/dialogs.c, src/document.c, src/document.h:
820    Add document_need_save_as().
821    Show the Save As also for documents created from filetype templates
822    instead of saving them directly with the untitled filename.
825 2009-12-09  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
827  * geany.glade, src/interface.c:
828    Move 'Send Selection to Terminal' menu item from Format to Commands
829    submenu.
830  * src/msgwindow.c:
831    When going to a build error, try the current document's path if
832    the parsed filename doesn't exist. (This can happen when we receive
833    build messages in the wrong order - after the 'Leaving directory'
834    messages).
835  * src/msgwindow.c:
836    Refactor msgwin_goto_compiler_file_line().
837  * src/interface.c, src/keybindings.c, geany.glade:
838    Capitalize, add mnemonics, sync with kb.c the Edit->Commands menu item
839    labels.
840  * src/search.c:
841    Refactor/reformat on_replace_dialog_response().
844 2009-12-08  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
846  * geany.spec.in:
847    Improve geany.spec (split the package into a binary and devel
848    package, update BuildRequires and other minor improvements).
849    Patch by Dominic Hopf, thanks.
852 2009-12-08  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
854  * src/filetypes.c, src/filetypes.h:
855    Make group for custom filetypes.
856  * data/filetypes.Genie.conf, data/filetype_extensions.conf:
857    Add custom filetype Genie.
860 2009-12-07  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
862  * src/highlighting.c:
863    Highlight D & Java types from a global tags file.
864  * src/highlighting.c, doc/geany.txt, doc/geany.html:
865    Add debug message warning if recursive lexer_filetype is set.
866  * src/highlighting.c, src/sciwrappers.c, src/sciwrappers.h:
867    Remove duplicate sci_set_keywords(), make argument const.
868  * src/highlighting.c:
869    Only show debug message once if recursive lexer_filetype is set.
870    Tidy highlighting_init_styles code for filetype None handling.
871  * scintilla/makefile.win32, scintilla/KeyWords.cxx,
872    scintilla/LexVerilog.cxx, scintilla/Makefile.am, src/highlighting.c,
873    src/filetypes.c, src/filetypes.h, src/symbols.c, THANKS,
874    tagmanager/parsers.h, tagmanager/makefile.win32,
875    tagmanager/verilog.c, tagmanager/Makefile.am,
876    data/filetypes.verilog, data/filetype_extensions.conf, wscript:
877    Apply patch from Kelvin Gardiner to add Verilog filetype (thanks).
878  * src/highlighting.c:
879    Fix segfault on startup (oops).
880  * data/filetypes.verilog:
881    Fix using common style colours for Verilog.
884 2009-12-03  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
886  * src/highlighting.c, data/filetypes.cpp, data/filetypes.vala,
887    data/filetypes.glsl, data/filetypes.cs, data/filetypes.c:
888    Move C-like filetype properties into configuration files.
889  * src/highlighting.c, data/filetypes.cpp, data/filetypes.cs,
890    data/filetypes.c:
891    Remove now unnecessary "styling_within_preprocessor" C style key.
892  * src/highlighting.c, data/filetypes.cpp, data/filetypes.vala,
893    data/filetypes.glsl, data/filetypes.cs:
894    Use lexer_filetype=C configuration file key instead of duplicate
895    styleset functions for C++, C#, GLSL, Vala.
898 2009-12-02  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
900  * doc/geany.txt, doc/geany.html:
901    Warn about not using BOM for configuration files (confuses GKeyFile
902    parser, at least on my system).
903  * src/filetypes.c:
904    Add/improve debug messages for custom filetypes.
907 2009-11-30  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
909  * data/latex.tags:
910    Add a couple of further latex-beamer commands to list of LaTeX tags.
913 2009-11-30  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
915  * plugins/filebrowser.c:
916    Add an in-entry clear icon to the filebrowser plugin's filter
917    entry (patch by Dominic Hopf, thanks).
918  * src/prefs.c, src/ui_utils.c:
919    Fix two compiler warnings about possibly uninitialised variables.
922 2009-11-29  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
924  * src/main.c, src/main.h, src/plugins.c, src/plugindata.h,
925    plugins/geanyfunctions.h:
926    Add main_is_realized() to the plugin API.
927  * tagmanager/include/tm_tagmanager.h:
928    Update partly outdated and wrong doc comment.
929  * src/main.c, src/main.h, src/socket.c:
930    Allow opening Geany projects remotely.
931  * doc/geany.txt, doc/geany.html, src/vte.c, src/vte.h, src/keyfile.c:
932    Add a hidden pref to allow executing text which was sent to the
933    terminal directly, i.e. do not strip trailing newline characters.
934    Also fix the stripping of trailing newline characters if there was
935    more than one.
938 2009-11-26  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
940  * src/about.c, THANKS:
941    Add Peter Scholtens and Ayke van Laethem to list of translators. Move
942    Kurt de Bree into section of previous translators.
945 2009-11-26  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
947  * src/about.c, src/symbols.c, THANKS, tagmanager/vhdl.c:
948    Fix VHDL symbol list to display all tags (patch from Kelvin Gardiner,
949    thanks).
952 2009-11-24  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
954  * src/highlighting.c:
955    Make stylesets take a ft_id argument so they can be reused fully with
956    custom filetypes, so custom styles and keywords can be set.
957  * src/highlighting.c:
958    Fix setting filetype properties when both the system and the user file
959    have properties set.
960  * src/symbols.c, tagmanager/vhdl.c:
961    Parse VHDL signals.
962  * src/highlighting.c:
963    Fix lexer settings for custom filetypes.
966 2009-11-23  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
968  * tagmanager/php.c:
969    Remove duplicate regular expression for parsing classes.
970    Fix and improve parsing of constants (patch by Harold Aling, thanks).
971  * doc/geany.1.in, doc/geany.html, doc/geany.txt, src/main.c,
972    src/main.h, THANKS, src/about.c:
973    Add new command line option "--socket-file" to be able to specify
974    separate socket filenames for instances
975    (closes #2896027, patch by Jörn Reder, thanks).
976  * src/keybindings.c, src/keybindings.h:
977    Add keybindings_check_event() to manually check GdkKeyEvents against
978    Geany's keybindings.
979  * src/callbacks.c, src/utils.c, src/utils.h:
980    Add and use utils_get_help_url().
981  * geany.glade, src/interface.c, src/prefs.c:
982    Add a Help button to the preferences dialog.
983    Handle Help keybinding events for the preferences dialog especially
984    and open the manual with the corresponding anchor link to the current
985    preferences page (same goes for the new Help button).
988 2009-11-22  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
990  * src/toolbar.c, src/geanymenubuttonaction.c,
991    src/geanymenubuttonaction.h:
992    Use separate tooltips for toolbar menu buttons and their attached
993    drop-down arrows.
994  * tagmanager/latex.c:
995    Improve parsing of sections and chapters by ignoring shortnames
996    like \section[shortname]{label} (closes #2890477).
999 2009-11-19  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1001  * src/geanymenubuttonaction.c:
1002    Try to fix Gtk warning when using Tools->Reload Configuration.
1005 2009-11-18  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1007  * src/highlighting.c, doc/geany.txt, doc/geany.html,
1008    data/filetypes.nsis, data/filetypes.php, data/filetypes.perl,
1009    data/filetypes.pascal, data/filetypes.docbook,
1010    data/filetypes.python, data/filetypes.conf:
1011    Use filetypes.foo [lexer_properties] group instead of hardcoding
1012    lexer properties (more flexible e.g. for custom filetypes).
1013  * src/highlighting.c, data/filetypes.xml, data/filetypes.html:
1014    Replace filetypes.xml html_asp_default_language key with
1015    filetypes.html asp.default.language property in [lexer_properties]
1016    group.
1019 2009-11-17  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1021  * doc/geany.txt, doc/geany.html:
1022    Fix slightly wrong description of how to insert Unicode characters.
1023  * src/ui_utils.c:
1024    Implement GTK_FILE_CHOOSER_ACTION_OPEN mode in
1025    ui_setup_open_button_callback().
1026  * src/prefs.c, src/prefs.c, src/vte.c:
1027    Refactor color and font button callback functions in the
1028    preferences dialog. Move the VTE related callback functions
1029    into vte.c.
1030    Make use of ui_setup_open_button_callback().
1031  * src/printing.c:
1032    Improve printing status texts (patch by Dominic Hopf, thanks).
1033  * src/prefs.c, src/vte.c:
1034    Use the default dialog title set by ui_setup_open_button_callback()
1035    to be more consistent and to save one string.
1038 2009-11-16  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1040  * tagmanager/c.c:
1041    Separate DKinds from CKinds.
1042    Don't generate macro tags for D, Java.
1045 2009-11-12  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1047  * tagmanager/ctags.c, tagmanager/general.h:
1048    Make TagManager Assert statements cause g_warning on failure.
1049  * src/keybindings.c:
1050    Fix reflow paragraph command when cursor < anchor using
1051    sci_fix_selection().
1054 2009-11-10  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1056  * tagmanager/perl.c:
1057    Fix Geany segfault with constant tags (#2895168).
1058  * src/symbols.c:
1059    Fix invalid tree iter access when using tv_iters.tag_other but not
1060    using tv_iters.tag_variable.
1061  * HACKING, tagmanager/perl.c:
1062    Fix parsing Perl format statements ("other" type doesn't seem to work).
1063  * tagmanager/tm_tag.c, tagmanager/perl.c, HACKING:
1064    Fix using "other" tag type.
1067 2009-11-09  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1069  * src/vte.c:
1070    Remove useless comment about applying settings only when libvte.so
1071    could be loaded which is only displayed *if* libvte.so is loaded.
1072  * src/editor.c:
1073    Allow autocompletion for HTML entities even within a word.
1074  * src/geanymenubuttonaction.c:
1075    Only set the menu of the button if a non-empty GtkMenu is passed to
1076    geany_menu_button_action_set_menu() so the menu arrow keeps
1077    insensitive.
1080 2009-11-07  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1082  * tagmanager/c.c:
1083    Fix parsing some Java code (e.g. filetypes.java) after r4407.
1086 2009-11-06  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1088  * tagmanager/c.c:
1089    Parse D functions with contracts (fixes #1885480).
1090    Parse D alias statement like typedef.
1091    (Ignore some more D keywords).
1092  * tagmanager/c.c:
1093    Fix creating D interface tags properly.
1094  * tagmanager/c.c:
1095    Parse contents of D extern{} and version{} blocks.
1098 2009-11-05  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1100  * src/main.c:
1101    Remove old code.
1104 2009-11-05  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1106  * src/plugindata.h, HACKING:
1107    Deprecate PLUGIN_KEY_GROUP() macro - use plugin_set_key_group()
1108    instead.
1109  * src/callbacks.c:
1110    Show number of files saved on status bar when using Save All.
1111  * src/highlighting.c:
1112    Use default color scheme if pref color scheme file doesn't exist.
1113  * src/keybindings.c:
1114    Fix moving correct lines after selecting whole line(s).
1117 2009-11-04  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1119  * tagmanager/makefile.win32:
1120    Fix broken build on Windows because of a typo
1121    (patch by Timothy Boronczyk, thanks).
1124 2009-11-04  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1126  * src/highlighting.c, src/highlighting.h, src/keyfile.c, src/main.c,
1127    src/editor.h:
1128    Add 'View->Editor->Color Schemes' menu, for now only shown if color
1129    scheme files exist in a colorschemes config directory. Color scheme
1130    files must end in ".conf" and currently only the [named_styles]
1131    section is read.
1132  * src/templates.c, src/utils.c, src/highlighting.c, src/utils.h:
1133    Add utils_get_config_files().
1134  * src/highlighting.c:
1135    Fix issue with default color not being reset if overridden with a
1136    system default color.
1137  * src/highlighting.c:
1138    Only reload filetype files when changing color scheme, not all
1139    configuration files.
1140  * src/filetypes.c, src/document.c, src/document.h, doc/Doxyfile.in:
1141    Deprecate documents_foreach() as it looks more like a function; use
1142    foreach_document() instead.
1143    Generate dox even for GEANY_DISABLE_DEPRECATED declarations.
1146 2009-10-30  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1148  * src/stash.c, src/stash.h:
1149    Use typedef instead of pointer for widget_id function arguments.
1152 2009-10-29  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1154  * src/pluginutils.c:
1155    Don't expand Plugin Preferences page spacing vertically to fill the
1156    height of the dialog.
1157  * src/interface.c, src/keybindings.c, src/keybindings.h, src/prefs.c,
1158    geany.glade, plugins/splitwindow.c:
1159    Allow GeanyKeyBinding label field to contain underscores, which won't
1160    be displayed by Geany. This saves adding near-duplicate translation
1161    strings.
1162    Add mnemonics for 3 Edit->Format menu items.
1163    Add keybindings_get_label().
1164  * src/interface.c, geany.glade:
1165    Use GtkVBoxes for Encoding prefs combo boxes to reduce width of prefs
1166    dialog.
1169 2009-10-28  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1171  * src/ui_utils.c:
1172    Desensitize Edit->Commands menu item when no docs are open.
1173  * src/interface.c, src/keybindings.c, src/callbacks.c,
1174    src/callbacks.h, geany.glade:
1175    Add 'Reflow, Transpose, Smart line indent' Edit->Format menu items.
1176  * src/sciwrappers.c, src/sciwrappers.h, src/editor.c:
1177    Add general function sci_get_string() that works with any string
1178    buffer messages that follow the Windows message convention.
1179  * src/pluginprivate.h, src/interface.c, src/keybindings.c,
1180    src/keybindings.h, src/callbacks.c, src/callbacks.h,
1181    src/pluginutils.c, src/pluginutils.h, geany.glade:
1182    Add 'Edit->Plugin Preferences' menu item and keybinding.
1183    Don't include plugindata.h in pluginutils.h because it redefines the
1184    GEANY() macro for plugin use.
1185  * doc/geany.txt, doc/geany.html:
1186    Update for Plugin Preferences keybinding.
1189 2009-10-27  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1191  * src/editor.c:
1192    Sort document word completion list.
1193  * src/interface.c, src/keybindings.c, src/callbacks.c,
1194    src/callbacks.h, geany.glade:
1195    Add some useful commands to editor popup menu under "Commands"
1196    submenu (thanks to Lex).
1197    Move 'Duplicate line or selection' from Format -> Commands submenu.
1198  * src/prefs.c, src/ui_utils.c, doc/geany.txt, doc/geany.html:
1199    Enable switching the sidebar to the right on Windows again, as it
1200    apparently works after all.
1201  * src/editor.c:
1202    Fix using tab to autocomplete in some other situations that word part
1203    completion doesn't apply in.
1204  * src/templates.c, src/interface.c, src/ui_utils.c, geany.glade:
1205    Add Edit->Commands submenu which is shared with the editor popup menu.
1206  * src/interface.c, src/keybindings.c, src/ui_utils.c, geany.glade:
1207    Change editor popup Commands submenu to start as child of menubar Edit
1208    menu, as this is more usual e.g. for keybindings initialization.
1209  * src/interface.c, src/keybindings.c, src/tools.c, src/ui_utils.c,
1210    geany.glade:
1211    Share a single Format submenu for menubar Edit and popup menu.
1214 2009-10-26  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1216  * src/build.c:
1217    Fix a compiler warning about an uninitialised variable.
1218  * wscript:
1219    Don't install unnecessary headers: dialogs.h, main.h, plugins.h,
1220    sciwrappers.h, build.h (for the Waf build system,
1221    accordingly to r4366).
1224 2009-10-26  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1226  * src/prefs.h, src/search.h, src/support.h, src/templates.h,
1227    src/toolbar.c, src/toolbar.h:
1228    Add missing dox for types/files in the API.
1229  * src/filetypes.h, src/Makefile.am, plugins/geanyplugin.h:
1230    Don't install unnecessary headers: dialogs.h, main.h, plugins.h,
1231    sciwrappers.h, build.h. (This helps to get compiler warnings for uses
1232    of functions not in the API).
1233    Warning: any plugins that include these headers should remove them.
1234  * src/build.c, src/build.h:
1235    Move function doc-comments to build.c so they stay in sync. Note:
1236    these functions are still not in the API.
1237  * HACKING:
1238    Add 'Doc-comments' plugin API subsection.
1239  * plugins/filebrowser.c:
1240    Fix packing configure widgets equally.
1241    Use spacing multiples of 6 as recommended by Gnome HIG.
1242  * src/prefs.c, src/ui_utils.c, doc/geany.txt, doc/geany.html:
1243    Disable switching the sidebar to the right on Windows as it will
1244    probably fail like the Split Window plugin.
1245  * src/document.c:
1246    Improve 'Detect from file' indentation pref by ignoring lines with
1247    indentation wider than 24 characters as this is more likely to be
1248    alignment than indentation.
1251 2009-10-25  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1253  * plugins/saveactions.c:
1254    Fix adding the filetype's default extension when using the
1255    Instant Save plugin (closes #2885142).
1256  * src/main.c:
1257    Before looking for line and column numbers specified as part
1258    of a filename, ensure the file doesn't exist on disk. This allows
1259    opening of files like "test:0".
1260  * src/sidebar.c:
1261    Rename "select" variables into "selection" to avoid shadowed names.
1262  * plugins/geanyfunctions.h, src/plugins.c, src/plugindata.h:
1263    Add ui_widget_modify_font_from_string() and sci_goto_line()
1264    to the plugin API.
1265  * plugins/filebrowser.c:
1266    Rename "select" variables into "selection" to avoid shadowed names.
1267    Make use of ui_widget_modify_font_from_string().
1270 2009-10-23  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1272  * src/interface.c, src/ui_utils.h, src/prefs.c, src/keyfile.c,
1273    src/main.c, src/ui_utils.c, doc/geany.txt, doc/geany.html,
1274    geany.glade:
1275    Add sidebar position interface pref.
1278 2009-10-23  Lex Trotman  <elextr.at.gmail.dot.com>
1280  * doc/geany.txt, doc/geany.html:
1281    Add missing underscores to links.
1284 2009-10-22  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1286  * src/keybindings.c, src/keybindings.h, doc/geany.txt, doc/geany.html:
1287    Add 'Move line(s) up/down' keybindings.
1290 2009-10-22  Lex Trotman  <elextr.at.gmail.dot.com>
1292  * src/build.c, src/build.h, src/filetypes.h:
1293    Include code for project filetype execute commands and fix bug in
1294    saving project filetypes list.
1295  * src/project.c, src/build.c, doc/geany.txt:
1296    Make non-project execute configuration save to filetypes not geany.conf.
1297    Fix closing of project failing to remove build commands dialog entry.
1300 2009-10-21  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1302  * src/project.c, src/ui_utils.c:
1303    Set border width for project properties build table.
1304  * geany.glade, src/interface.c:
1305    Don't expand hard tab width alignment.
1308 2009-10-20  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1310  * src/highlighting.c, src/filetypes.c, src/document.c, src/symbols.c,
1311    doc/geany.txt, doc/geany.html:
1312    Support loading global tags files for custom filetypes.
1313  * src/keybindings.c, src/keybindings.h, src/editor.c, src/editor.h,
1314    doc/geany.txt, doc/geany.html:
1315    Add 'Word part completion' keybinding so keys other than Tab can be
1316    used, or to clear/change the combination so Tab does full completion
1317    like before.
1318  * src/keybindings.c, src/keybindings.h, doc/geany.txt, doc/geany.html:
1319    Add 'Select to previous/next word part' keybindings.
1320  * src/keybindings.c, src/keybindings.h, doc/geany.txt, doc/geany.html:
1321    Add 'Switch to Messages' focus keybinding.
1324 2009-10-19  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1326  * doc/geany.txt, doc/geany.html:
1327    Add 'Custom filetypes' section.
1328  * src/filetypes.c, src/filetypes.h, src/document.c,
1329    doc/geany.txt, doc/geany.html, tagmanager/tm_source_file.c,
1330    tagmanager/include/tm_source_file.h:
1331    Add filetype "tag_parser" key so custom filetypes can use an existing
1332    tag parser.
1333    Add tm_source_file_get_named_lang().
1334  * src/highlighting.c, src/filetypes.c, src/filetypes.h, doc/geany.txt,
1335    doc/geany.html:
1336    Add filetype "lexer_filetype" key so custom filetypes can use an
1337    existing lexer.
1340 2009-10-19  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
1342  * THANKS, src/about.c:
1343    Add Xhacker Liu for his work at zh_CN translation to long list of
1344    translators.
1347 2009-10-16  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1349  * src/sciwrappers.c:
1350    Remove unnecessary line number margin padding.
1351  * scintilla/include/Scintilla.h, scintilla/include/Scintilla.iface,
1352    scintilla/ScintillaBase.h, scintilla/ScintillaBase.cxx,
1353    src/editor.c:
1354    Improve word part autocompletion so AC list is not cancelled and
1355    reshown (this also stops the selection changing).
1356    Add SCI_AUTOCGETCURRENTTEXT message (will be sent upstream).
1357  * src/editor.c:
1358    Improve CamelCase word part autocompletion for runs of capital letters.
1359  * src/editor.c:
1360    Don't complete snippets if there's a selection.
1363 2009-10-16  Lex Trotman  <elextr(at)gmail(dot)com>
1365  * src/build.c:
1366    Fix crash opening project when Geany started with no geany.conf.
1369 2009-10-15  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1371  * scintilla/ScintillaBase.h, scintilla/ScintillaBase.cxx, src/utils.c,
1372    src/utils.h, src/sciwrappers.c, src/editor.c, doc/geany.txt,
1373    doc/geany.html:
1374    Add word part autocompletion for the current selected item when
1375    pressing Tab - Enter still completes normally.
1376    Add foreach_str() API macro.
1377    Temporarily modify scintilla to say if tab was used for
1378    autocompletion.
1379  * src/templates.c, src/build.c, src/utils.c, src/utils.h,
1380    src/project.c, src/search.c, src/editor.c, src/ui_utils.c,
1381    plugins/classbuilder.c:
1382    Revert r4301 - utils_free_pointers() taking 4 arguments.
1383  * src/highlighting.c, src/highlighting.h, src/plugindata.h,
1384    src/document.c, src/plugins.c, plugins/geanyfunctions.h,
1385    plugins/splitwindow.c:
1386    Add highlighting_set_styles() to API, use for Split Window plugin so
1387    filetypes.common settings get set too.
1388    Make highlighting_set_styles() take GeanyFiletype pointer instead of
1389    filetype id.
1390  * src/document.c, src/editor.c, plugins/splitwindow.c:
1391    Call editor_apply_update_prefs() from editor_create_widget() so
1392    correct tab width and other settings are applied for Split Window
1393    plugin.
1396 2009-10-14  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1398  * src/keybindings.c:
1399    Don't include trailing newlines when using reflow command.
1400  * src/notebook.c:
1401    Add stock close buttons to notebook tab popup menu.
1402  * src/plugindata.h, src/document.c, src/plugins.c, src/ui_utils.c,
1403    plugins/geanyfunctions.h:
1404    Add document_get_notebook_page() to API.
1405    Minor edits of dox.
1406  * data/templates/files/file.html, data/templates/files/file.php:
1407    Fix wrong escaping (patch by dmaphy, thanks - closes #2878138).
1408  * src/interface.c, src/ui_utils.c, geany.glade:
1409    Move Tools configuration items to top of menu.
1410  * src/keybindings.c, src/search.c:
1411    Fix warning when using Find in Files with no documents open; make
1412    keybinding work in this case.
1415 2009-10-13  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1417  * src/notebook.c, src/plugindata.h, src/plugins.c, src/ui_utils.c,
1418    src/ui_utils.h, plugins/geanyfunctions.h, plugins/splitwindow.c:
1419    Make Split Window 'Show current document' button have a drop-down menu
1420    to select the other documents.
1421    Add new API function ui_menu_add_document_items().
1424 2009-10-13  Lex Trotman  <elextr(at)gmail(dot)com>
1426  * src/build.c:
1427    Fix sensitivity settings for compile and build toolbar items.
1430 2009-10-12  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1432  * src/templates.c:
1433    Don't use filetype submenus for templates (slower to navigate, often
1434    only 1 per-filetype anyway).
1435  * src/templates.c:
1436    Put old filetype template menu items in 'Old' submenu as they should
1437    be removed after the 0.19 release.
1438  * src/keybindings.c, src/keybindings.h, src/pluginutils.c:
1439    Add GeanyKeyGroup callback support, which allow keybinding callbacks
1440    to be ignored if inappropriate so a later keybinding with the same
1441    key combination can intercept it. (Also group callbacks are usually
1442    tidier than separate callbacks).
1443    Remove special handling for GEANY_KEYS_EDIT_COMPLETESNIPPET.
1444  * src/templates.c, src/build.c, src/utils.c, src/utils.h,
1445    src/project.c, src/search.c, src/editor.c, src/ui_utils.c,
1446    plugins/classbuilder.c:
1447    Make utils_free_pointers() take 4 arguments, add to API.
1448  * src/templates.c, src/tools.c, src/ui_utils.c:
1449    Fix memory leaks with gtk_container_get_children().
1452 2009-10-12  Lex Trotman  <elextr(at)gmail(dot)com>
1454  * src/build.c:
1455    Ensure that old style build config is not loaded if it does not exist.
1458 2009-10-12  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
1460  * THANKS, src/about.c, po/LINGUAS, po/gl.po:
1461    Added Galician translation. Thanks to José Manuel Castroagudín Silva.
1464 2009-10-11  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1466  * geany.glade, THANKS, src/about.c, src/document.c, src/encodings.c,
1467    src/interface.c:
1468    Apply set default encoding for existing files only if the files are
1469    non-Unicode (patch by Alexey Antipov, thanks).
1472 2009-10-04  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1474  * src/highlighting.c:
1475    Move new_styleset() and preprocessor setup code into styleset_c_like().
1476  * src/highlighting.c:
1477    Call apply_filetype_properties() from styleset_c_like().
1480 2009-10-03  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1482  * doc/geany.txt, doc/geany.html:
1483    Improve information about predefined keybindings which are
1484    commonly used across applications (patch by Lex Trotman, thanks).
1485  * src/printing.c:
1486    Enable embedded page setup properties in the (Unix) Print dialog
1487    on newer GTK versions (closes #2870596).
1488  * src/highlighting.c:
1489    Map global types (read from tags files) to keyword style for
1490    filetype Java.
1493 2009-10-01  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1495  * src/templates.c:
1496    Fix wrong creation of filetype template menu items for custom
1497    filetypes.
1498  * src/highlighting.c:
1499    Use jscript_keyword for SCE_HB[A]_WORD markup styles.
1500  * src/templates.c:
1501    Group 'New with template' items by filetype submenu (currently only for
1502    toolbar menu).
1503    Show custom file template items before filetype template items.
1504  * src/templates.c, src/interface.c, src/geanymenubuttonaction.c,
1505    geany.glade:
1506    Only use one 'New with template' submenu - reparent as needed.
1507  * src/templates.c:
1508    Don't create templates/filetype.none either.
1509  * src/templates.c:
1510    Warn if custom template file no longer exists.
1513 2009-09-30  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1515  * src/symbols.c:
1516    Add missing icon for Java packages in the Symbol List.
1519 2009-09-30  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1521  * src/highlighting.c, data/filetypes.vala:
1522    Add Vala keywords to conf file.
1523  * src/templates.c, doc/geany.txt, doc/geany.html:
1524    Read custom file templates from $prefix/share/geany/templates/files as
1525    well as user dir.
1526  * src/templates.c, data/templates, data/templates/files,
1527    data/templates/files/file.rb, data/templates/files/file.html,
1528    data/templates/files/main.java, data/templates/files/main.c,
1529    data/templates/files/main.cxx, data/templates/files/file.php,
1530    data/templates/files/main.d, data/templates/files/program.pas,
1531    data/templates/files/main.py, data/templates/files/file.tex,
1532    wscript, Makefile.am:
1533    Move filetype template defaults into custom file template files.
1536 2009-09-29  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1538  * src/symbols.c, tagmanager/perl.c:
1539    Change Perl tag parser to ctags SVN r601. This removes support for
1540    buggy local/my/our but it parses constant/format/labels and should
1541    be less buggy overall (closes #2861232).
1542  * src/templates.c, src/utils.c, src/utils.h, src/symbols.c:
1543    Add utils_get_file_list_full() which can optionally sort or include
1544    a full path for each list item.
1545  * src/utils.c, src/plugindata.h, src/plugins.c:
1546    Add utils_get_file_list_full() to API.
1549 2009-09-28  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1551  * src/keybindings.c, src/sidebar.c, src/sidebar.h,
1552    src/makefile.win32, src/project.c, src/prefs.c, src/treeviews.c,
1553    src/callbacks.c, src/notebook.c, src/treeviews.h, src/document.c,
1554    src/main.c, src/symbols.c, src/Makefile.am, src/ui_utils.c,
1555    po/POTFILES.in, wscript:
1556    Rename treeviews.[hc] -> sidebar.[hc].
1557  * data/filetypes.common:
1558    Remove unused [styling] arguments.
1559  * src/highlighting.c, data/filetypes.markdown,
1560    data/filetypes.restructuredtext:
1561    Remove style defaults from the code - just read them from
1562    configuration files.
1563  * src/highlighting.c, HACKING:
1564    Add apply_style_entries() to simplify implementing styleset_foo().
1565  * src/highlighting.c:
1566    Remove filetype keyword defaults from the code - just read them from
1567    configuration files.
1568  * src/highlighting.c:
1569    Add sci_set_keywords() wrapper.
1572 2009-09-27  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1574  * scripts/create_py_tags.py:
1575    Make the code a bit more pythonic.
1576  * doc/images/build_menu_commands_dialog.png,
1577    doc/images/main_window.png:
1578    Add new images referenced in the documentation.
1579  * doc/geany.html, doc/geany.txt:
1580    Several documentation improvements (patch by Lex Trotman, thanks).
1581  * src/pluginutils.c:
1582    Fix setting the appropriate page of the combined plugins
1583    preferences dialog.
1586 2009-09-27  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1588  * src/keybindings.c:
1589    Only focus toolbar goto line entry when pressing keybinding if it's
1590    visible (patch by Eugene Arshinov, thanks).
1591  * src/callbacks.c:
1592    Focus editor after entering a number in the goto line toolbar entry.
1593  * configure.in:
1594    Use AC_PATH_PROG instead of which for portability (patch by Erik
1595    Southworth, thanks).
1596  * src/plugins.c:
1597    Show plugins that only implement plugin_configure_single() in the
1598    multiple-configure dialog as a page with a configure button on it.
1599    Add padding for multiple-configure dialog.
1600    Make the multiple-configure dialog notebook tabs scrollable.
1601  * src/pluginutils.c, src/pluginutils.h:
1602    Don't build pluginutils.o if HAVE_PLUGINS is not defined.
1603  * src/pluginprivate.h, src/plugindata.h, src/pluginutils.c,
1604    src/plugins.c, src/pluginutils.h, src/plugins.h, po/POTFILES.in,
1605    plugins/geanyfunctions.h, plugins/filebrowser.c:
1606    Add plugin_show_configure() API utility function.
1607    Add File Browser popup menu 'Preferences' item.
1608  * src/highlighting.c:
1609    Add get_keyfile_ints() instead of using tmp_style hack.
1610  * src/highlighting.c, data/filetypes.xml:
1611    Change new html_asp_default_language markup pref to use integer,
1612    not hex in config file.
1613    Fix minor issue with changing pref back to 0.
1614  * src/highlighting.c:
1615    Fix possible segfault in get_keyfile_int() if key value is malformed.
1618 2009-09-24  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1620  * THANKS, src/about.c, src/highlighting.c, data/filetypes.xml:
1621    Add "html_asp_default_language" pseudo style to filetypes.xml
1622    to allow setting the used language in embedded ASP code
1623    (patch by Ross McKay, thanks).
1624  * src/filetypes.xml:
1625    Update VBScript keywords (patch by Ross McKay, thanks).
1628 2009-09-24  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1630  * src/keybindings.c, THANKS:
1631    Apply patch from Lex Trotman to make 'Reflow block/lines(s)'
1632    keybinding use line breaking column when enabled.
1633  * src/document.c:
1634    Fix showing the document before reload dialog when opening an
1635    already-open file.
1636  * src/pluginprivate.h, src/plugins.c, doc/pluginsymbols.c:
1637    Add plugin_configure_single() plugin symbol which is easier to
1638    implement than plugin_configure() but won't support a
1639    multiple-plugin configure dialog.
1640  * src/plugins.c:
1641    Show multiple plugins in the 'Configure Plugins' dialog.
1644 2009-09-22  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1646  * doc/geany.txt, doc/geany.html:
1647    Change 'Foo tab in preferences dialog' titles to 'Foo preferences'.
1648    Minor edits.
1649  * doc/geany.txt, doc/geany.html:
1650    Add 'Toolbar entries' section.
1651  * doc/geany.txt, doc/geany.html:
1652    Update 'Go to line' keybinding description.
1653  * doc/geany.txt, doc/geany.html:
1654    Split keybinding table into group tables; update KB links.
1657 2009-09-21  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1659  * src/build.c:
1660    Fix compiler warnings about uninitialised variables.
1661  * src/callbacks.c, src/document.c:
1662    When reloading files, use the previously set encoding instead of
1663    detecting it again (closes #2862041).
1664  * configure.in:
1665    Turn on automake silent rules if supported.
1668 2009-09-21  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1670  * src/utils.c:
1671    Speed up sorting in utils_get_file_list(). This reduces the file
1672    browser delay on displaying a big directory, e.g. /usr/bin.
1673  * src/build.c:
1674    Expand command entry width when expanding Build Commands dialog.
1675  * src/build.c:
1676    Split Build Commands dialog notes label and edit text.
1677  * src/build.c:
1678    Add padding for Build Commands dialog separators.
1679    Add colons for regex field labels; fix 1 capitalisation.
1680  * src/build.c:
1681    Fix none filetype Build Commands dialog label.
1682    Make group labels bold.
1683  * src/build.c, src/ui_utils.h, src/dialogs.c, src/notebook.c,
1684    src/ui_utils.c:
1685    Add & use ui_label_set_markup(), ui_label_new_bold().
1686  * src/ui_utils.h, src/printing.c, src/tools.c, src/project.c,
1687    src/prefs.c, src/dialogs.c, src/geanyentryaction.c,
1688    src/plugindata.h, src/vte.c, src/search.c, src/ui_utils.c:
1689    Make ui_entry_add_clear_icon() take a GtkEntry, not GtkWidget.
1690  * src/keybindings.c:
1691    Make 'Go to Line' keybinding focus the toolbar entry if visible.
1694 2009-09-20  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1696  * src/filetypes.c, src/filetypes.h, src/symbols.c,
1697    tagmanager/parsers.h, tagmanager/makefile.win32,
1698    tagmanager/abc.c, tagmanager/Makefile.am, data/filetypes.abc,
1699    data/filetype_extensions.conf, wscript:
1700    Add new filetype: Abc (patch by Eric Forgeot, thanks).
1701  * tagmanager/php.c:
1702    Merge recent changes from the CTags project to further improve
1703    PHP symbol parsing.
1706 2009-09-17  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1708  * src/printing.c:
1709    Fix wrong alignment of printed pages when page headers are
1710    disabled (closes #2856822).
1711    Plug a small memory leak and improve function signature of
1712    add_page_header().
1713  * src/keyfile.c:
1714    Save an if expression.
1715  * src/ui_utils.c:
1716    After clearing a text field using the embedded clear icon, put the
1717    input focus into this text field.
1720 2009-09-17  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1722  * plugins/filebrowser.c:
1723    Free file list memory whilst iterating the list.
1724    Minor formatting fixes.
1725  * src/utils.c, src/utils.h:
1726    Add foreach_dir() API macro.
1727    Update API docs for utils_get_file_list().
1728  * wscript, src/queue.c, src/editor.c, src/Makefile.am, src/queue.h,
1729    po/POTFILES.in:
1730    Remove queue.[hc] - use GQueue instead of GeanyQueue.
1731    Beep if there are no more snippet positions.
1732    Limit length of snippet positions queue to 20.
1735 2009-09-16  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1737  * src/keybindings.c, src/callbacks.c, src/search.c:
1738    Make Goto Tag commands use the current selection if present (useful
1739    for selecting part of a tag or for ReST section names with spaces
1740    in).
1741  * src/document.c:
1742    Don't move the cursor when reloading.
1743  * src/plugindata.h, src/editor.c, src/editor.h:
1744    Make editor_prefs.snippets hash table private (not a pref).
1747 2009-09-15  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
1749  * src/main.c:
1750    Remove deprecated --debug flag. Please use --verbose/-v instead.
1753 2009-09-15  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1755  * src/search.c:
1756    Show Find in Files stderr output in messages window instead of
1757    debug window so that invalid regex messages can be seen easily.
1758    Combine FIF stdout and stderr callback code.
1761 2009-09-14  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1763  * src/utils.c:
1764    Fix opening filenames beginning with two dots (closes #2858487).
1765  * src/interface.c, src/highlighting.c, src/prefs.c, src/filetypes.c,
1766    src/filetypes.h, src/main.c, doc/geany.txt, doc/geany.html,
1767    data/filetypes.common, geany.glade:
1768    Update syntax highlighting after changing the 'Invert syntax
1769    highlighting colors' pref, instead of requiring a restart.
1770    Remove filetypes.common invert_all option - use 'Invert syntax
1771    highlighting colors' pref instead (closes #2854525).
1772  * src/prefs.c, src/dialogs.c, src/dialogs.h:
1773    Add 'Allow' button when showing the conflicting keybinding dialog.
1774    Make dialogs_show_question_full() use GTK dialog on Windows if
1775    button text is not the stock yes/no items.
1776    Add dialogs_show_prompt() which also has an 'Apply' button.
1777  * src/queue.c, src/queue.h:
1778    Add warning that GeanyQueue may be removed.
1779  * src/keybindings.c, src/editor.c, src/editor.h:
1780    Change snippet_goto_next_cursor() to
1781    editor_goto_next_snippet_cursor() as it's in editor.h.
1782    Avoid using GPOINTER_TO_INT macro.
1785 2009-09-13  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1787  * src/keybindings.c:
1788    Fix 'Reflow block' command when at the last paragraph and there's
1789    no last newline (patch by Eugene Arshinov, thanks).
1790  * HACKING:
1791    Add 'Compiler options & warnings' section.
1792    Update Style section to be clearer about code alignment and show
1793    some example code.
1794    Other minor edits.
1797 2009-09-12  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1799  * src/keybindings.c, src/sciwrappers.c, src/sciwrappers.h,
1800    src/plugindata.h, src/plugins.c, src/editor.c,
1801    plugins/geanyfunctions.h:
1802    Add sci_set_marker_at_line(), sci_delete_marker_at_line(),
1803    sci_is_marker_set_at_line() to the plugin API (thanks to Yura
1804    Siamashka).
1805    Add sci_toggle_marker_at_line().
1806    Fix SciFuncs alignment.
1809 2009-09-11  Lex Trotman  <elextr(at)gmail(dot)com>
1811  * src/build.c
1812    Fix erroneous free of returned string in prepare_run_script.
1815 2009-09-10  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
1817  * data/filetypes.latex:
1818    Changing default value for showing pdf and dvi to ensure to take
1819    *.pdf and *.dvi file.
1822 2009-09-07  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
1824  * src/about.c, THANKS:
1825    Change language string for Slovenian translation.
1828 2009-09-07  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1830  * tagmanager/txt2tags.c:
1831    Fix multi-byte character constant comparison.
1832  * src/treeviews.c:
1833    Fix Gtk warning when trying to update documents popup menu item
1834    sensitivity before they exist.
1837 2009-09-06  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1839  * src/plugins.c:
1840    Improve the opening string in the plugin manager dialog.
1841  * doc/geany.css:
1842    Use "max-width" to set the document width of the generated
1843    HTML documentation to let the text be auto-wrapped.
1844  * src/prefs.c, src/tagmanager/include/guregex.h,
1845    src/tagmanager/include/tm_tagmanager.h:
1846    Remove trailing spaces (patch by André Hentschel, thanks).
1847  * src/treeviews.c:
1848    Fix a compiler warning.
1849  * src/document.c:
1850    Fix crash when opening documents.
1851  * src/build.c, src/build.h, src/project.c:
1852    Adjust coding style (no code changes).
1853  * src/build.c, src/project.c:
1854    Use NZV() macro instead of strlen() to check for empty strings.
1855    Remove the FOREACH_GEANYBUILDCMD_ENTRY() macro.
1856  * doc/plugins.dox, plugins/geanyfunctions.h, src/document.c,
1857    src/geanyobject.c, src/geanyobject.h, src/plugindata.h,
1858    src/plugins.c, THANKS:
1859    Add new plugin signal: "document-before-save".
1860    Add get_line_end_position(), set_target_start(), set_target_end(),
1861    replace_target() to the plugin API
1862    (patch by Eugene Arshinov, thanks).
1863    Add new plugin signal: "document-filetype-set" (closes #2852286).
1864  * data/filetype_extensions.conf, data/filetypes.txt2tags, src/about.c,
1865    src/filetypes.c, src/filetypes.h, src/plugindata.h, src/symbols.c,
1866    tagmanager/Makefile.am, tagmanager/makefile.win32,
1867    tagmanager/parsers.h, tagmanager/txt2tags.c, tagmanager/txt2tags.c,
1868    wscript, THANKS:
1869    Add new filetype: Txt2Tags (patch by Eric Forgeot, thanks).
1872 2009-09-04  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1874  * src/treeviews.c, src/document.c:
1875    Apply patch from Thomas Martitz to improve sidebar type-ahead code:
1876    Use gtk_notebook_set_current_page() instead of
1877    document_open_file_full() when choosing an item from the documents
1878    list.
1879    Avoid using goto in document_open_file_full().
1882 2009-09-03  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1884  * src/treeviews.c, src/document.c, src/document.h, THANKS:
1885    Enable type-ahead find for sidebar symbols and documents tabs
1886    (patch by Thomas Martitz, thanks).
1887  * src/build.c:
1888    Fix 2 free's of possibly uninitialized pointers.
1891 2009-09-03  Lex Trotman  <elextr(at)gmail(dot)com>
1893  * src/build.c, src/filetypes.h, src/filetypes.c
1894    Only write filetype config files when build command or regex is
1895    actually changed.  Removed commented code in src/filetypes.c.
1896  * src/build.c
1897    Ensure uses of filename are protected against nulls when running
1898    a build command and give status message if not.
1901 2009-09-01  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1903  * src/plugins.c:
1904    Remove plugin from plugin manager dialog on unloading if it no
1905    longer exists or is incompatible.
1908 2009-08-31  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1910  * src/plugins.c:
1911    Add warning if only one of the plugin_key_group[_info] symbols is
1912    defined for a plugin.
1913  * src/templates.c, src/highlighting.c, src/dialogs.c, src/filetypes.c,
1914    src/filetypes.h, src/document.c, src/main.c, src/symbols.c,
1915    TODO:
1916    Merge custom-filetypes branch:
1917    Support adding custom filetype files e.g. filetypes.Foo.conf.
1918  - Code:
1919    Allow GeanyFiletype::extension to be NULL.
1920    Add note about using GeanyFiletype pointer instead of filetype_id
1921    for filetypes.c function arguments.
1922    Replace styleset_none() with styleset_default().
1925 2009-08-30  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1927  * src/prefs.c:
1928    Show the sidebar if either the documents or the symbols list are
1929    enabled (related to #1876107).
1932 2009-08-29  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1934  * src/build.c, src/filetypes.c:
1935    Fix compiler warnings.
1936  * src/utils.c:
1937    Fix removing leading double slashes in filenames which are used for
1938    network resources on Windows (closes #2844085).
1941 2009-08-27  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1943  * src/keybindings.c:
1944    Fix Make keybindings (patch by Lex Trotman, thanks).
1945  * src/geany.h:
1946    Define G_GNUC_WARN_UNUSED_RESULT if GLib < 2.10.
1947  * doc/plugins.dox:
1948    Mention Files link at top for header files; demoplugin.c.
1949    Minor edits; remove 'far from being complete'.
1950  * src/keyfile.c, src/keyfile.h, src/main.c,
1951    data/filetype_extensions.conf, HACKING:
1952    Remove --generate-data-files argument & code - just edit
1953    filetype_extensions.conf by hand (filetype order was broken
1954    anyway).
1955    Add *.H extension for C++ (useful for non-Windows systems).
1958 2009-08-27  Lex Trotman  <elextr(at)gmail(dot)com>
1960  * src/build.c
1961    Fix implementation of loading old project files with base
1962    directories. Use project_make_base_path instead of re-
1963    implementing.  Now depends on project.c reading base dir
1964    prior to calling load_build_menu.
1965  * src/build.c
1966    Change usage of project base directory to conform with
1967    previous documented behavior when loading old project files.
1968  * src/build.c:
1969    Change make custom and make object to ignore make in base path
1970    when reading old project file settings.  Changed some indent
1971    spaces to tabs. Fix missing compile menu accelerator.
1974 2009-08-26  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1976  * doc/plugins.dox:
1977    Add warning about not using undocumented features.
1978    Add reference to HACKING for plugin API development.
1979  * HACKING:
1980    Add section 'Plugin API/ABI design'.
1981  * src/keybindings.h, src/makefile.win32, src/project.h,
1982    src/filetypes.h, src/Makefile.am, wscript:
1983    Use GEANY_PRIVATE to hide some fields from plugins.
1984  * src/build.c:
1985    Fix invalid memory read (#2844632, patch by Lex Trotman, thanks).
1986  * src/build.c, src/build.h, src/project.c:
1987    Use build_ prefix for 3 functions in build.h; add a static modifier.
1990 2009-08-25  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1992  * tagmanager/php.c:
1993    Improve parsing of PHP functions by requiring a valid modifier or
1994    whitespace before the 'function' keyword to ignore some false
1995    positives like function tags inside comments
1996    (patch by Harold Aling, thanks).
1997  * tagmanager/python.c:
1998    Don't parse comments after import statements and other tags
1999    (closes #2838938, patch by Huandari Lopez, thanks).
2002 2009-08-25  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2004  * data/filetypes.markdown:
2005    Add filetypes.markdown for configuration (thanks to Jon Strait).
2006  * src/build.c, src/keybindings.c, src/keybindings.h, src/plugindata.h,
2007    src/pluginutils.c, src/plugins.c, src/pluginutils.h,
2008    plugins/geanyfunctions.h:
2009    Remove GeanyKeyGroup struct from the API - plugins should not set
2010    these fields.
2011    Make keybindings_set_item() duplicate the name and label fields
2012    (needed by GeanyLua) and return a keybinding pointer.
2013    Add keybindings_get_item() to the API (in case it's useful).
2014    Move some keybinding code out of plugin source files.
2017 2009-08-24  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2019  * src/build.h, src/project.h, src/plugindata.h, src/filetypes.h:
2020    Don't generate build.h API docs until everything is approved and
2021    functions are actually in geany_functions.
2022    Move new GeanyFiletype and GeanyProject field(s) to end of struct
2023    as they may be changed or made private later.
2024    Break ABI for fields removed.
2027 2009-07-30  Lex Trotman  <elextr(at)gmail(dot)com>
2029  * src/build.h, src/build.c, src/keybindings.c, src/filetypes.c
2030    src/keyfile.c, src/project.c
2031    Changed names of symbols visible in build API to GEANY_xxx.
2034 2009-07-29  Lex Trotman  <elextr(at)gmail(dot)com>
2036  * src/project.h, src/project.c, src/build.c
2037    Remove make_in_base_dir and run_cmd fields from project structure.
2038    Replaced by build functionality.  Remove incorrect use in src/build.c
2039    build_run_cmd function.
2042 2009-07-28  Lex Trotman  <elextr(at)gmail(dot)com>
2044  * src/project.h, src/project.c
2045    Removed unused project_get_make_dir function, this is now per
2046    command.
2049 2009-07-28  Lex Trotman  <elextr(at)gmail(dot)com>
2051  * src/build.c, src/build.h, src/project.c, src/keyfile.c, src/filetypes.c
2052    Fix some more warnings.
2053    Fix commented out execute/stop toolbar code in build.c.
2054    Add extra plugins documentation for GBO_TO_CMD and GBO_TO_GBG macros.
2055    Changed build.h api so all functions prefixed with build_.
2058 2009-07-27  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2060  * src/build.c, src/build.h, src/project.c:
2061    Fix some gcc warnings with '-Wall -W -ansi' enabled.
2064 2009-07-25  Lex Trotman  <elextr(at)gmail(dot)com>
2066  * src/build.c
2067    Fixed leaks and crashes due to inconsistent use of static vs dynamic strings
2068    when reading old format configuration & project files.
2069  * src/build.c, src/project.c
2070    Fixed GLib array assertion warnings when no project filetypes are
2071    available to be saved.
2073 2009-07-24  Lex Trotman  <elextr(at)gmail(dot)com>
2075  * src/build.c
2076    Fix build warnings.
2079 2009-07-22  Lex Trotman  <elextr(at)gmail(dot)com>
2081  * src/build.h, src/build.c, src/project.c
2082    Created and documented plugins interface to build menu.
2083    Factored out new get_cmd_group function.
2084    Changed name of remove_command function to be consistent with the rest
2085    of the interface & changed calls in project.c.
2086  * src/Makefile.am, wscript
2087    Added build.h to installed files lists.
2089 2009-07-20  Lex Trotman  <elextr(at)gmail(dot)com>
2091  * doc/geany.txt
2092    Updated manual to match build-menu capability.
2095 2009-07-19  Lex Trotman  <elextr(at)gmail(dot)com>
2097  * src/build.c, src/build.h
2098    Added set_build_non_ft_wd_to_proj() for use by project dialog.
2099    Improved interpretation of run_in_base_dir from old [build-settings]
2100    Added spacing to build commands dialog
2101  * src/project.c
2102    Removed run in base path option from project dialog and added button to
2103    set working directories to d the same.
2106 2009-07-18  Lex Trotman  <elextr(at)gmail(dot)com>
2108  * src/build.c
2109    Re-incorporated toolbar changes in trunk accidently excluded in merge
2111 2009-07-17  Lex Trotman  <elextr(at)gmail(dot)com>
2113  * src/build.c
2114    Fixed substitute %f etc in commands
2115    Fixed potential leak in build_replace_placeholder
2116    Fixed leak in prepare_run_script (Thanks for patch Thomas)
2117    Fixed build_replace_placeholder to not require document.
2119 2009-07-17  Lex Trotman  <elextr(at)gmail(dot)com>
2121  * src/build.c, src/build.h, src/filetypes.h, src/filetypes.c
2122    Fixed crash and lots of warnings, deleted some commented out code.
2123  * geany.glade, src/keyfile.c, src/prefs.c, src/prefs.h, src/project.c
2124    Removed make command from preferences and associated code
2126 2009-07-16  Lex Trotman  <elextr(at)gmail(dot)com>
2128  * src/build.c, src/build.h
2129    Incorporated patch for working directory field (thanks Thomas)
2130    Removed run_in_base_dir option and associated code that it replaces
2131    Improved handling of old config files and mapping to new ones.
2133 2009-07-15  Lex Trotman  <elextr(at)gmail(dot)com>
2135  * src/build.h, src/build.c
2136    Changed to itterate over entries in build commands dialog to allow
2137    additional fields to be added
2138    Implement support for multiple run commands
2139  * data/filetypes.latex
2140    Implement configured commands and labels for latex.
2143 2009-07-14  Lex Trotman  <elextr(at)gmail(dot)com>
2145  * src/build.h, src/build.c
2146    added dialog support for error regular expressions from multiple sources
2147    and storing and loading them
2148    fixed some typos and memory leaks
2149  * src/filetypes.c, src/filetypes.h, project.c
2150    added support for using error regexes from multiple sources
2153 2009-07-11  Lex Trotman  <elextr(at)gmail(dot)com>
2155  * src/filetypes.h, src/filetypes.c, src/build.c, src/build.h,
2156    src/project.c
2157    Removal of build menu item source made redundant by the following fix
2158  * src/build.c
2159    Corrected priority oreder and loading of filetype dependent build
2160    menu items saved in the project file.  Added print routine for
2161    debugging command sources and priorities set compile symbol
2162    PRINTBUILDCMDS true to enable
2164 2009-07-10  Lex Trotman  <elextr(at)gmail(dot)com>
2166  * src/build.c
2167    fixed problem loading old format filetype files, some formatting fixes
2168    fixed saving new format files
2169    added operation for clear button on build commands dialog
2170  * src/filetypes.c
2171    fixed loading and saving filetype files
2174 2009-07-09  Lex Trotman  <elextr(at)gmail(dot)com>
2176 Configurable Build Menu Changes
2178  * doc/geany.html, doc/geany.txt:
2179    Updated build menu section to new functionality
2180  * src/build.h, src/build.c:
2181    Largly re-written, configurability added, Latex code removed
2182  * src/filetypes.h, src/filetypes.c:
2183    Filetype structure updated to add new command pointers, configuration
2184    load and store changed
2185  * src/keybindings.h, src/keybindings.c:
2186    Changed to address new command storage structure.
2187  * src/keyfile.c:
2188    Changed to load/store new configuration.
2189  * src/main.c:
2190    Minor change to initialisation order.
2191  * src/msgwindow.c:
2192    Changed to address new menu item storage structure.
2193  * src/project.h, src/project.c:
2194    Changed to load/store the new configuration info.
2196 2009-08-24  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2198  * src/keybindings.c, src/keybindings.h, src/plugindata.h,
2199    src/pluginutils.c, src/plugins.c, src/pluginutils.h,
2200    doc/pluginsymbols.c, plugins/geanyfunctions.h,
2201    plugins/splitwindow.c:
2202    Update PLUGIN_KEY_GROUP() macro so it doesn't allocate any
2203    GeanyKeyBinding or GeanyKeyGroup structs, so we don't need to break
2204    the ABI when adding fields to them.
2205    Add plugin_set_key_group() for plugins to dynamically set a
2206    keybinding group (e.g. for the Lua script plugin). Used in Split
2207    Window plugin as an example.
2208    Improve keybinding docs a little.
2211 2009-08-20  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2213  * doc/Doxyfile.in, plugins/geanyfunctions.h, plugins/genapi.py:
2214    Add geanyfunctions.h to API docs.
2215  * plugins/splitwindow.c:
2216    Set the cursor color for the split window.
2219 2009-08-18  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2221  * src/callbacks.c:
2222    Fix 'Open Selected File' for unsaved new documents.
2223  * src/keybindings.c, src/keybindings.h, src/prefs.c:
2224    Fix updating main menu accelerators after changing keybindings
2225    (thanks to Lex Trotman).
2226  * src/callbacks.c:
2227    Fix using 'Insert date' keybinding when a custom date string has
2228    not been set.
2229  * src/pluginprivate.h, src/pluginutils.c, src/plugins.c:
2230    Merge Plugin and GeanyPluginPrivate structs.
2233 2009-08-18  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2235  * src/keybindings.c:
2236    Fix non-working Home and End keys on numpads.
2239 2009-08-17  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2241  * doc/geany.txt, doc/geany.html, NEWS:
2242    Add 'Scope autocompletion' section.
2243    Add 'Tools menu items' section to explain configuration files
2244    submenu, reload configuration item.
2245    Minor updates/fixes.
2248 2009-08-16  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2250  * src/document.c:
2251    Add a translation hint to an ambiguous format string.
2252  * src/Makefile.am:
2253    Add missing include path to fix 'make distcheck'.
2254  * src/win32.c:
2255    Fix opening of local files in the browser on Windows.
2256  * New release: Geany 0.18 "Kaine".
2257  * configure.in, geany.nsi, geany_private.rc, win32-config.h, wscript,
2258    src/geany.h, doc/geany.html, doc/geany.txt:
2259    Post-release version bump.
2262 2009-08-15  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2264  * src/editor.c:
2265    Temporarily disable reshowing calltips when the autocompletion
2266    list was closed implicitly by not choosing an item to fix
2267    problems with wrongly displayed calltips.
2268  * src/template.c:
2269    Add missing 'coding' cookie to the Python filetype template.
2270  * doc/images/pref_dialog_edit_completions.png,
2271    doc/images/pref_dialog_toolbar.png:
2272    Update images for Geany 0.18.
2275 2009-08-13  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2277  * wscript:
2278    Add command '--hackingdoc' to create the HTML form of the
2279    HACKING file.
2282 2009-08-12  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
2284  * po/pt_PT.po, po/LINGUAS:
2285    Added a first Portugese (Portugal) translation based on work done at
2286    launchpad by e.g. André Glória and Alexandre Jesus.
2287  * src/main.c: Fix a minor typo on --help call.
2290 2009-08-11  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2292  * src/highlighting.c:
2293    Call get_keyfile_wordchars() in highlighting_init_styles().
2296 2009-08-09  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2298  * data/filetypes.ada:
2299    Add missing file.
2300  * src/keybindings.c:
2301    Switching notebook tabs now works for the currently used notebook
2302    widget instead of always using the documents notebook.
2303  * src/document.c, src/document.h, src/documentprivate.h,
2304    doc/plugins.dox:
2305    Small corrections to some API docs.
2308 2009-08-02  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2310  * src/build.c, src/win32.h, src/win32.c:
2311    Expand system environment variables (%variableName%) on Windows when
2312    running Build commands.
2315 2009-07-30  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2317  * src/keybindings.c:
2318    Rename 'Reflow lines/paragraph' to 'Reflow lines/block' because in
2319    future using an indent block is more useful e.g. for ChangeLog
2320    files.
2321  * scintilla/LexMarkdown.cxx, scintilla/makefile.win32,
2322    scintilla/include/SciLexer.h, scintilla/include/Scintilla.iface,
2323    scintilla/KeyWords.cxx, scintilla/Makefile.am, src/highlighting.c,
2324    src/about.c, src/filetypes.c, src/filetypes.h, THANKS,
2325    tagmanager/parsers.h, tagmanager/makefile.win32,
2326    tagmanager/markdown.c, tagmanager/Makefile.am, wscript:
2327    Add Markdown filetype (patch by Jon Strait, thanks).
2328  * src/pluginprivate.h, src/pluginutils.c, src/plugins.c:
2329    Fix disconnecting plugin signal id when not using geany_object.
2330  * src/filetypes.c:
2331    Add filetype_make_title() instead of using:
2332    ft->title = g_strdup_printf(_("%s source file"), ft->name);
2333    It also supports "%s file" strings.
2336 2009-07-29  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2338  * src/pluginprivate.h, src/utils.h, src/plugindata.h,
2339    src/stash.c, src/pluginutils.c, src/plugins.c, src/pluginutils.h,
2340    doc/pluginsymbols.c, doc/plugins.dox, plugins/geanyfunctions.h,
2341    plugins/filebrowser.c:
2342    Add plugin_signal_connect() for connecting plugin signals at
2343    runtime and also for connecting to any GObject signal.
2344    Add 'Plugin Utility Functions' on main page.
2345    Add foreach_array() macro.
2346  * src/keybindings.c, src/sciwrappers.c, src/sciwrappers.h,
2347    src/document.c, src/editor.c:
2348    Rename 3 sci functions to sci_set_target_start(),
2349    sci_set_target_end(), sci_replace_target() to match the SCI_
2350    message name.
2353 2009-07-28  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
2355  * wscript: Fix compiling error with waf.
2358 2009-07-28  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2360  * src/pluginprivate.h, src/makefile.win32, src/plugindata.h,
2361    src/pluginutils.c, src/plugins.c, src/pluginutils.h,
2362    src/Makefile.am, wscript:
2363    Move plugin_* utility functions to pluginutils.c.
2364    Add pluginprivate.h.
2365  * src/editor.c:
2366    Fix reshowing calltip in the wrong document.
2369 2009-07-25  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2371  * doc/geany.txt, doc/geany.html:
2372    Add some general information about auto-completion capabilities
2373    (patch by Lex Trotman, thanks).
2376 2009-07-25  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
2378  * po/LINGUAS, po/sl_SI.po, THANKS, src/about.c:
2379    Added a first Slovenian translation. Thanks to Joze Klepec.
2382 2009-07-24  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2384  * src/highlighting.c:
2385    Use full styleset_foo[_init] function name as argument to
2386    init_styleset_case() and styleset_case() macros so it's easier to
2387    understand the code.
2388  * src/keybindings.c, src/keybindings.h, src/sciwrappers.c,
2389    src/sciwrappers.h, src/editor.c, src/editor.h, THANKS,
2390    doc/geany.txt, doc/geany.html:
2391    Add 'Reflow lines/paragraph' keybinding, defaults to Ctrl-J.
2392    Heavily based on a patch by Eugene Arshinov (thanks).
2393    Add sci_lines_split(), sci_lines_join(), sci_text_width(),
2394    editor_strip_line_trailing_spaces().
2397 2009-07-24  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2399  * src/editor.c:
2400    Attempt to fix reshowing calltips after the autocompletion list
2401    has been shown.
2402    Reshow calltips also when the autocompletion list was closed
2403    implicitly by not choosing an item.
2405 2009-07-23  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2407  * src/utils.c, src/utils.h, src/toolbar.c, src/plugindata.h,
2408    plugins/splitwindow.c:
2409    Change utils_str_remove_chars() to work in place; fix allocating on
2410    the stack (the string length could exhaust the stack size).
2411  * src/templates.c, src/build.c, src/utils.c, src/utils.h,
2412    src/printing.c, src/callbacks.c:
2413    Rename utils_str_replace() utils_str_replace_all(), setting a
2414    'gchar **haystack' argument instead of returning a new string.
2415  * src/editor.c:
2416    For the Tabs indent type, remove spaces when unindenting (only) if
2417    there are no tabs on the line.
2418    Group undo actions for (un)indenting of multiple lines.
2419  * src/document.c, src/editor.c:
2420    Fix scrolling horizontally after finding a search match with the
2421    search bar or Find Next/Previous which is off-screen.
2422  * src/keybindings.c:
2423    Fix GLib warning when pressing a key with no documents open.
2426 2009-07-21  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2428  * src/utils.c:
2429    Start unifying usage of @a and @c markup elements in API docs,
2430    to be continued.
2431  * src/main.c, src/prefs.c, src/toolbar.c, src/toolbar.h:
2432    Show/hide the toolbar without a restart when the setting in the
2433    preferences dialog is changed (closes #2824785).
2434  * src/dialogs.c, src/document.c, src/editor.c, src/encodings.c,
2435    src/filetypes.c, src/keybindings.h, src/main.c, src/msgwindow.c,
2436    src/navqueue.c, src/plugindata.h, src/prefs.c, src/toolbar.c,
2437    src/toolbar.h:
2438    Continue unifying usage of @a and @c markup elements in API docs.
2441 2009-07-21  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2443  * src/document.c:
2444    Remove relative/untidy path elements when creating new documents
2445    with a filename (e.g. from the command-line) (#2823998).
2448 2009-07-20  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2450  * src/callbacks.c:
2451    Disable 'Recent Projects' menu item if the list of recent projects
2452    is empty.
2453  * src/win32.c:
2454    Fix some harmless compiler warnings.
2455  * plugins/geanyfunctions.h, plugins/splitwindow.c, src/plugindata.h,
2456    src/plugins.c, src/utils.c, src/utils.h:
2457    Move utils_str_remove_chars() from the plugins/splitwindow.c to
2458    src/utils.c and add it to the plugin API.
2459    Make utils_str_remove_chars() work on a new copy of the input string
2460    instead of modifying it in place.
2461  * src/toolbar.c:
2462    Remove underscores from the toolbar items labels.
2463  * src/utils.c:
2464    Fix typos.
2465  * plugins/splitwindow.c:
2466    Fix broken 'Show the current document' tool button icon.
2469 2009-07-20  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2471  * src/treeviews.c, src/callbacks.c, src/stash.c, src/stash.h,
2472    src/keyfile.c:
2473    Add stash_group_add_widget_property() so we can save any widget's
2474    read/write properties.
2475    Use Stash for ui_prefs.sidebar_page setting.
2476  * src/utils.h, src/prefs.c, src/keyfile.c, src/symbols.c:
2477    Make foreach_ptr_array() use an integer argument for its
2478    implementation, as this is more useful potentially than a gpointer*
2479    argument, and more straightforward.
2480    Add foreach_c_array(), foreach_ptr_array() to API.
2481  * src/utils.c, src/utils.h, src/document.c:
2482    Remove relative/untidy path elements when opening documents (closes
2483    #2823998).
2484  * src/treeviews.c:
2485    Fix showing project name for documents list files with no
2486    subdirectory (oops).
2487  * src/dialogs.c:
2488    Fix checking whether to overwrite when using the Rename button in
2489    the 'Save As' dialog.
2492 2009-07-19  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2494  * src/dialogs.c:
2495    Don't use the main window as parent for dialog boxes if it is not
2496    yet realised.
2497    Set titles for message dialogs.
2500 2009-07-18  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2502  * src/toolbar.c:
2503    Display item labels instead of raw names in the toolbar editor.
2504    Apply changes in the toolbar editor instantly.
2505    Show icons in the toolbar editor.
2506    Speed up toolbar editor dialog creation.
2507  * src/templates.c:
2508    Improve inserting of comment templates like File header or licence
2509    notices. The comment information are now read from the filetype
2510    configuration files.
2512 2009-07-16  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2514  * src/document.c:
2515    Enable file monitoring for files which are written to disk by Geany
2516    for the first time.
2517  * src/filetypes.c:
2518    Fix broken special case handling when detecting filetypes from a
2519    shebang or other special file headers.
2522 2009-07-16  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2524  * src/search.c:
2525    Make Mark All keybinding clear search highlighting when there's no
2526    current word.
2527  * src/search.c:
2528    Fix wrong match length when using Mark with regex.
2529  * src/geanyobject.c, src/geanyobject.h, src/treeviews.c,
2530    src/keyfile.c, src/main.c:
2531    Add 'Show Paths' documents list popup item.
2532    Add "load_settings" core-only signal emitted just after loading
2533    main keyfile settings; useful to delay building UI elements until
2534    settings have been read.
2535  * src/treeviews.c:
2536    Fix GTK warning when right-clicking on default tag tree.
2537  * src/treeviews.c, src/treeviews.h, src/keyfile.c, src/main.c:
2538    Add treeviews_finalize().
2539    Remove tv.popup_openfiles field.
2542 2009-07-15  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2544  * src/highlighting.c:
2545    Fix building on GTK 2.8 (patch by Eugene Arshinov, thanks).
2548 2009-07-14  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2550  * src/utils.c:
2551    Quote the uri before passing it to the browser when opening a
2552    website (closes #2818635).
2553  * src/win32:
2554    Fix broken 'builtin' Run command for HTML files on Windows.
2557 2009-07-14  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2559  * src/editor.c:
2560    Properly fix wrong brace highlighting of non-brace character.
2561  * src/editor.c:
2562    Allow autocompletion in Perl double-quoted strings.
2563    Don't autocomplete in Perl single-quoted strings (closes #2821061).
2564    Don't autocomplete in Perl q() strings.
2565  * data/filetypes.common:
2566    Make Mark highlighting brighter.
2567  * src/interface.c, doc/geany.txt, doc/geany.html, geany.glade:
2568    Use hyphen for auto-feature terms.
2569  * src/plugindata.h, src/geany.h, src/filetypes.c, src/filetypes.h,
2570    src/document.h, src/main.c:
2571    Add documents_foreach() API macro that skips invalid docs.
2572    Make filetypes[], documents[] part of the API again.
2573    Add GEANY() macro for sharing geany symbols between API and core.
2574  * src/plugindata.h, src/plugins.c, doc/plugins.dox,
2575    plugins/saveactions.c, plugins/export.c, plugins/geanyfunctions.h,
2576    plugins/demoplugin.c, plugins/filebrowser.c, plugins/splitwindow.c,
2577    plugins/htmlchars.c, plugins/geanyplugin.h, plugins/Makefile.am,
2578    plugins/classbuilder.c, wscript:
2579    Add geanyplugin.h single include for plugin API; update all core
2580    plugins to use it.
2581    Add sci_set_font() to API.
2582    Update plugin howto.
2583  * src/filetypes.c, src/filetypes.h:
2584    Remove filetypes_foreach_named().
2587 2009-07-13  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2589  * src/highlighting.c, src/about.c, src/filetypes.c, src/document.c,
2590    src/document.h, src/main.c, THANKS:
2591    Apply patch from Eugene Arshinov to reload color schemes via menu
2592    (thanks).
2593  * src/filetypes.c:
2594    Reload filetypes.common after saving it.
2595  * src/editor.c:
2596    Improve wrong brace highlighting of non-brace character.
2599 2009-07-10  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2601  * src/editor.c:
2602    Delay highlighting matching braces by 100ms, which speeds up
2603    scrolling with the arrow keys.
2604  * src/keybindings.c, src/keybindings.h, src/search.c, src/search.h:
2605    Add 'Mark All' keybinding.
2606  * tagmanager/diff.c:
2607    Show relative paths in diff filename tags.
2610 2009-07-09  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2612  * src/highlighting.c:
2613    Fix setting keyword list 'classes' for Haxe
2614    (pointed out by Andreas Mokros, thanks).
2617 2009-07-09  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2619  * src/interface.c, src/keyfile.c, src/editor.c, src/editor.h,
2620    doc/geany.txt, doc/geany.html, geany.glade:
2621    Add 'Drop rest of word on completion' pref.
2622  * src/editor.c, doc/geany.txt, doc/geany.html:
2623    If autocompletion is already visible when forcing completion, show
2624    document word completion instead of tag completion.
2625    Docs: Minor edits of related prefs items.
2626  * src/printing.c, src/dialogs.c, src/dialogs.h, src/plugindata.h:
2627    Add warning when printing and editor font is not monospaced.
2628    Fix using GtkMessageType instead of gint param for
2629    dialogs_show_msgbox*().
2630    Add missing G_GNUC_PRINTF macro check to API dialog funcs.
2631  * src/editor.c:
2632    Support 'tab indents, space aligns' style for auto-indentation
2633    (closes #2789109).
2636 2009-07-08  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2638  * src/document.c, src/documentprivate.h:
2639    Rework the GIO based file monitoring code. Now it is used only
2640    to indicate a possible change of the file, the real check if the
2641    file has been changed is performed by stat().
2642  * data/filetypes.common, doc/geany.txt, src/highlighting.c:
2643    Add style 'line_height' to increase the line height.
2644    Add style 'marker_mark' and change style 'marker_search' to
2645    define the style used for marked search results.
2646  * doc/geany.txt, doc/geany.html:
2647    Add the new 'Autocomplete all words in document' pref to the docs.
2650 2009-07-08  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2652  * src/interface.c, src/keyfile.c, src/editor.c, src/editor.h,
2653    doc/geany.txt, doc/geany.html, geany.glade, TODO:
2654    Add 'Autocomplete all words in document' pref.
2655    Use 'autocompletion' in dialog and docs, not 'auto completion'.
2656  * src/editor.c:
2657    Fix limiting number of word completion entries too much.
2658  * src/editor.c, TODO, icons/16x16/classviewer-var.xpm,
2659    icons/16x16/classviewer-method.xpm, icons/16x16/Makefile.am:
2660    Show autocompletion icons for tag symbols - for now only tags with
2661    an arglist have the 'function/method' icon, all others have the
2662    'variable' icon.
2663    Note: XPMs were created from the PNGs with the ImageMagick 'convert'
2664    program.
2665  * src/highlighting.c:
2666    Highlight D WYSIWYG backtick `strings` and r"strings" (closes
2667    #1895745).
2670 2009-07-06  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2672  * src/highlighting.c, src/utils.h, plugins/splitwindow.c:
2673    Fix removing underscores in translated string using no_underscore()
2674    macro.
2675    Set a tooltip for the Split Window plugin's Show Current tool button.
2676    Add utils_strdupa() macro.
2677  * src/interface.c, geany.glade:
2678    Use stock Select All icon now we have >= GTK 2.8.
2679  * src/treeviews.c:
2680    Fix using project name for document items that start with the
2681    project base path but don't match it e.g. ".../geany-plugins"
2682    instead of ".../geany" when project name is 'geany'.
2685 2009-07-04  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2687  * src/build.c:
2688    Fix warnings when the toolbar does not contain the Run button.
2689  * tagmanager/lua.c:
2690    Fix wrong parsing of complex expressions in the Lua parser.
2691  * src/editor.c, src/geany.h, src/keybindings.c, src/plugindata.h,
2692    src/utils.c:
2693    Remove unnecessary enums.
2694  * scintilla/*, scintilla/include/*, src/plugindata.h:
2695    Update Scintilla to version 1.79.
2696  * src/document.c, src/editor.c, src/sciwrappers.c, src/sciwrappers.h,
2697    src/search.c:
2698    Use the new Scintilla struct names prefixed with 'Sci_'.
2699  * TODO, data/filetypes.common, doc/geany.html, doc/geany.txt,
2700    src/highlighting.c:
2701    Add second argument to the 'line_wrap_indent' styling setting to
2702    control the new Scintilla indentation mode for wrapped lines.
2703  * src/toolbar.c:
2704    Properly close the toolbar editor on delete-events.
2705    Fix warnings and possible crashes in the toolbar editor when the list
2706    of displayed toolbar items is empty.
2707  * data/filetypes.tcl:
2708    Update Tcl keywords for Tcl 8.6 (patch by Witek Mozga, thanks).
2709  * src/plugins.c:
2710    Make the plugin manager dialog a bit bigger.
2713 2009-06-30  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2715  * doc/geany.html, doc/geany.txt:
2716    Fix wrong default values for the 'Show Calltip' keybinding.
2719 2009-06-29  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2721  * data/filetypes.tcl, src/symbols.c:
2722    Fix duplicate "context_action_cmd" key.
2723    Use different icons for "Methods" and "Procedures" in the symbol
2724    list for Tcl files.
2725  * src/filetypes.c:
2726    Fix a small memory leak.
2727  * doc/geany.html, doc/geany.txt, src/editor.c, src/keybindings.c,
2728    src/keybindings.h, src/plugindata.h:
2729    Make the Scintilla keybindings 'Delete to end of line' and
2730    'Go to end of display line' configurable.
2731  * geany.nsi:
2732    Fix a typo (closes #2813624).
2735 2009-06-28  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2737  * tagmanager/tcl.c, src/symbol.c:
2738    Improve parsing of Tcl files (parsing new Tcl8.6 style classes,
2739    methods and namespaces).
2740    Patch by Witek Mozga, thanks.
2743 2009-06-25  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2745  * data/ui_toolbar.xml, doc/geany.txt, doc/geany.html, src/ui_utils.c,
2746    src/toolbar.c, src/toolbar.h:
2747    Remove ui_toolbar.xml Configuration Files menu item.
2748    Add a real toolbar editor dialog.
2749  * geany.glade, src/callbacks.c, src/callbacks.h, src/interface.c,
2750    src/prefs.c:
2751    Add a button in the preferences dialog and an item for the toolbar
2752    popup menu to run the toolbar editor dialog.
2755 2009-06-25  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2757  * src/dialogs.c:
2758    Fix Gtk NULL warning with gtk_file_chooser_set_current_folder().
2759    Fix using locale encoding for default Save As dialog path.
2760  * src/editor.c:
2761    Beep when trying to activate the '...' autocompletion item.
2762    Limit (forced) document word completion to
2763    autocompletion_max_entries.
2764    Beep if no completions are shown when forcing autocompletion.
2767 2009-06-24  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2769  * data/ui_toolbar.xml, src/toolbar.c:
2770    Add 'Build' toolbar button to the default layout.
2773 2009-06-24  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2775  * src/editor.c:
2776    If forcing autocompletion and there's nothing else to show, complete
2777    from words in the current document (using code from Enrico's
2778    'AutoComplete Test' plugin).
2781 2009-06-23  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2783  * src/plugins.c:
2784    Add debug message if plugin has not set a name for its keybinding
2785    group.
2786  * data/filetype_extensions.conf:
2787    Add *.m4 for shell scripts.
2790 2009-06-22  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2792  * src/highlighting.c, doc/geany.txt, doc/geany.html,
2793    data/filetypes.common, TODO:
2794    Make filetypes.common named styles use the "default" named style for
2795    all missing style fields.
2796    Set named styles to usually leave the background style empty. This
2797    currently allows C-like filetypes to have a common default
2798    background color.
2799    Allow hard-coded colors to use -1 for the default color.
2800    Add some highlighting style examples to the manual.
2803 2009-06-21  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2805  * src/templates.c:
2806    Create initial template files with proper platform-specific line
2807    ending characters.
2810 2009-06-20  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2812  * data/ui_toolbar.xml, doc/geany.txt, src/build.c,
2813    src/geanymenubuttonaction.c, src/geanymenubuttonaction.h, src/main.c,
2814    src/plugins.c, src/templates.c, src/toolbar.c, src/toolbar.h,
2815    src/ui_utils.c, src/ui_utils.h:
2816    Instantly reload (i.e. rebuild) the toolbar when ui_toolbar.xml is
2817    saved within Geany.
2818    Refactor some related code.
2819  * tagmanager/conf.c:
2820    Strip trailing spaces from "Key" tags.
2821  * geany.nsi:
2822    Quote the full filename to the Geany executable when creating the
2823    "Open with Geany" context menu item.
2824  * plugins/splitwindow.c:
2825    Avoid using deprecated GTK API.
2826  * src/log.c, src/main.c:
2827    Properly clean up the logging mechanism.
2828  * src/build.c:
2829    Fix LaTeX view commands on Windows (part of #2807688).
2830  * src/prefs.c:
2831    Add a popup menu for the keybinding list in the preferences dialog
2832    to easily expand and collapse all groups.
2833    Refactor the keybindings code for the preferences dialog, prefix all
2834    related functions.
2835  * src/main.c, src/ui_utils.c, src/ui_utils.h:
2836    Init stock items before creating the toolbar (closes #2809324).
2837  * wscript:
2838    Generate the geany.pc file also on Windows.
2839  * src/ui_utils.c:
2840    Invert the logic to determine which Save All we want to use:
2841    Use the Tango like icon only for the Tango theme and the Gnome / GTK
2842    like icon for any other themes.
2845 2009-06-18  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2847  * src/highlighting.c, README.Packagers, HACKING:
2848    Remove gsd_* default styles, use named styles instead.
2849    Note: this relies on filetypes.common being installed.
2850    Add load_style_entries(), which makes style initialization
2851    simpler, used in styleset_c_like_init().
2854 2009-06-17  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2856  * src/win32.c:
2857    Prevent possible crash on Windows when not setting an initial
2858    directory for native File Open/Save dialogs.
2859  * data/filetypes.xml, src/highlighting.c:
2860    Add style 'jscript_regex' for filetype HTML
2861    (patch by Chris Macksey, thanks).
2864 2009-06-17  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2866  * src/filetypes.h, src/document.c, src/document.h, src/ui_utils.c:
2867    Make GeanyDocument::file_type always be non-NULL, even for a new
2868    document with no filetype set.
2869  * src/editor.c:
2870    Only autocomplete scope for scopes matching the current filetype's
2871    language.
2872  * data/filetypes.java, data/filetypes.cpp, data/filetypes.vala,
2873    data/filetypes.haxe, data/filetypes.common, data/filetypes.glsl,
2874    data/filetypes.actionscript, data/filetypes.cs,
2875    data/filetypes.ferite, data/filetypes.c, data/filetypes.d,
2876    data/filetypes.javascript, HACKING:
2877    Make C++, D lexer filetypes use named styles (apart from uuid,
2878    verbatim, regex styles).
2881 2009-06-16  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2883  * src/dialogs.c:
2884    Don't explicitly change the current directory of the Save As dialog
2885    so that it uses the last used directory.
2888 2009-06-14  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2890  * src/encodings.c, src/encodings.h, src/plugindata.h:
2891    Add Japanese encoding "CP932" (patch by Ryūsei Yamaguchi, thanks).
2892  * src/editor.c:
2893    Remove dead code.
2894    When completing from the macro list, put the cursor after
2895    the inserted text.
2898 2009-06-12  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2900  * tagmanager/pascal.c:
2901    Fix type definitions being parsed as functions.
2902  * src/editor.c:
2903    Don't autocomplete in unterminated strings as well.
2904  * src/templates.c, src/utils.h, src/dialogs.c, src/plugindata.h,
2905    src/filetypes.c, src/ui_utils.c, plugins/saveactions.c:
2906    Remove data_ptr argument to foreach_[s]list() macros, as using
2907    node->data is enough sometimes; this makes the macro a bit more
2908    efficient too.
2909    Add foreach_[s]list() macros to the plugin API docs.
2912 2009-06-11  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2914  * scintilla/LexPascal.cxx:
2915    Backport fix from Scintilla CVS:
2916    Pascal lexer hanging on file that starts with 'interface' after
2917    whitespace.
2920 2009-06-11  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2922  * waf:
2923    Update Waf to 1.5.7.
2924  * wscript:
2925    Overwrite installation prefix on Windows only if it wasn't
2926    specified explicitly.
2929 2009-06-10  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2931  * src/editor.c:
2932    Display calltips for Pascal symbols in the Pascal way (#2803945).
2933  * tagmanager/pascal.c:
2934    Fix wrongly set return values for procedures (closes #2803945).
2935  * doc/Doxyfile.in, tagmanager/include/tm_work_object.h,
2936    tagmanager/include/tm_source_file.h,
2937    tagmanager/include/tm_workspace.h:
2938    Fix doxygen warnings.
2941 2009-06-10  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2943  * src/editor.c, tagmanager/include/tm_workspace.h,
2944    tagmanager/tm_workspace.c, TODO:
2945    Autocomplete scoped fields like struct members when typing '.' (and
2946    also '->' or '::' in C/C++).
2947    Save all tag types for C/C++ when generating a global tags file, so
2948    we can use autocompletion for structs also.
2949    Merge tm_workspace_find_scope_members(),
2950    tm_workspace_find_namespace_members() (currently not built) from
2951    Anjuta 2.24.1 tagmanager.
2954 2009-06-09  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2956  * tagmanager/pascal.c:
2957    Parse Pascal calltips (closes #2802640).
2960 2009-06-09  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2962  * src/filetypes.c, src/ui_utils.c:
2963    Add filetypes.common Configuration Files menu item.
2966 2009-06-08  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2968  * src/callbacks.c:
2969    Add backslash to the wordchars on Windows when using
2970    'Open Selected File'.
2971  * src/wscript:
2972    Add support (configure, build and install) for building on Windows
2973    and cross-compiling for Windows using the Waf build system.
2976 2009-06-05  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2978  * src/toolbar.c:
2979    Set status bar text instead of showing a dialog when saving
2980    ui_toolbar.xml because the user might save several times.
2981  * src/editor.c:
2982    Fix redrawing due to colourising just after the document is first
2983    drawn. Now colourising should happen before the first draw.
2984  * src/utils.c, src/highlighting.c, data/filetypes.common:
2985    Fix segfault on parsing a filetypes.* style definition that has < 4
2986    fields.
2987    Allow style definitions to have missing fields to use the default
2988    style fields.
2991 2009-06-05  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2993  * src/images.c, src/about.c, src/ui_utils.c, THANKS:
2994    Add a more Tango like icon for 'Save All' (by Jesse Mayes, thanks).
2995  * plugins/classbuilder.c:
2996    Fix wrongly created header guards when the class filenames contains
2997    dashes (patch by PCMan, thanks).
2998  * data/filetypes.matlab:
2999    Add build_settings section to allow executing Matlab scripts.
3000  * src/document.c:
3001    When closing a document, mark it as invalid before removing it from
3002    the documents notebook (this fixes wrong Save All button state when
3003    closing an unsaved document because the "switch-page" signal handler
3004    was using old data).
3007 2009-06-03  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
3009  * src/highlighting.c, doc/geany.txt, doc/geany.html:
3010    Support toggling bold/italic when using a named style, e.g.:
3011    commentdockeyword=commentdoc,bold,italic
3012    Improve named style docs.
3015 2009-06-01  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3017  * src/build.c, src/editor.c:
3018    Fix crashes when parsing the output of a compiler which reports
3019    errors on line 0.
3022 2009-06-01  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
3024  * src/highlighting.c:
3025    Support named styles also for filetypes.common [styling] entries.
3026  * doc/geany.txt, doc/geany.html, HACKING:
3027    Update docs for named styles in filetypes.* files.
3028  * src/symbols.c:
3029    Fix grouping symbol list children when parent name has "." character
3030    in for reStructuredText and Conf filetypes.
3031  * tagmanager/python.c:
3032    Fix grouping functions/classes under a nested function.
3035 2009-05-30  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3037  * geany.spec.in:
3038    Adjust icon paths (patch by Dominic Hopf, thanks).
3039  * doc/geany.txt, doc/geany.html, src/toolbar.c:
3040    Add 'Replace' toolbar button (closes #2798225).
3043 2009-05-30  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
3045  * src/utils.c, src/highlighting.c, TODO:
3046    Implement named styles support for filetypes.* using a
3047    filetypes.common [named_styles] section e.g.:
3048    foo=0xc00000;0xffffff;false;true
3049    bar=foo
3050    These can be used in e.g. filetypes.c as:
3051    comment=foo
3054 2009-05-28  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3056  * src/ui_utils.c:
3057    Fix wrong sensitiveness of the Redo buttons (closes #2797862).
3060 2009-05-28  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
3062  * THANKS, src/about.c, po/lb.po, po/LINGUAS:
3063    Added Luxembourgian translation. Huge thanks to Laurent Hoeltgen.
3066 2009-05-27  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3068  * src/build.c:
3069    Remove quote_executable() as it is not used anymore.
3070    When creating the geany_run_script.bat use the "%0" variable
3071    expansion and quote it for the "del" command (closes #2797172).
3072  * src/win32.c:
3073    On Windows, fallback to the literal build command line if searching
3074    for the command in the system path failed (related to #2795923).
3075    Properly terminate the resulting strings when reading the stdout
3076    and stderr of any spawned commands on Windows.
3079 2009-05-26  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3081  * src/win32.c:
3082    Use the wide character versions of native Windows File dialogs.
3083  * src/project.c:
3084    Fix wrong initialisation of the default project path button callback
3085    in the preferences dialog.
3086  * Makefile.am, configure.in, geany.nsi, geany.spec.in, wscript,
3087    geany_private.rc, icons/16x16/Makefile.am, icons/16x16/geany.png,
3088    icons/48x48, icons/48x48/Makefile.am, icons/48x48/geany.png,
3089    icons/Makefile.am, icons/geany.ico, icons/scalable,
3090    icons/scalable/Makefile.am, icons/scalable/geany.svg,
3091    src/makefile.win32:
3092    Move the icons geany.png and geany.ico into the icons directory.
3093    Add a 16x16 pixel Geany icon and the scalable SVG icon.
3094    Drop the pixmaps directory.
3097 2009-05-22  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
3099  * src/keybindings.c:
3100    Improve MRU document switching so there are no duplicates in the
3101    list and documents switched to whilst the dialog is open are
3102    ignored. Also beep when cycling through to the first document in the
3103    list.
3106 2009-05-21  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3108  * src/dialogs.c:
3109    Fix broken 'Cancel' button in the Save As dialog.
3112 2009-05-20  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
3114  * src/editor.c:
3115    Fix multiline indent when selection covers text on the last line.
3116  * src/notebook.c:
3117    Show current document in bold in tab popup menu.
3118  * src/editor.c, tagmanager/python.c, TODO:
3119    Parse Python calltips.
3122 2009-05-19  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3124  * src/symbols.c, tagmanager/python.c:
3125    Parse Python import statements to get symbol completion for the
3126    imported module names.
3127  * src/editor.c, src/editor.h:
3128    Make some only locally used functions static.
3129    Fix wrong sanity check.
3130  * src/build.c:
3131    Fix quoting the build command string on Windows (closes #2791769).
3132    This broke when we made build commands run synchronously on Windows,
3133    now we don't need to special quote the commands anymore.
3136 2009-05-19  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
3138  * src/editor.c:
3139    Drop rest of word to the right of cursor when autocompleting (do we
3140    need a pref for this?).
3143 2009-05-18  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
3145  * src/sciwrappers.c, src/sciwrappers.h, src/editor.c:
3146    Add sci_set_selection().
3147  * doc/geany.txt, doc/geany.html:
3148    Update manual for MRU switching.
3149  * src/callbacks.c, src/editor.c, src/editor.h:
3150    Make indenting with the Tabs indent type preserve spaces on the line,
3151    so it works for the 'tab indents, space aligns' formatting style.
3154 2009-05-17  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3156  * tagmanager/python.c:
3157    Fix missing symbols for variables when an equal sign is used
3158    in a comment on the same line as the variable declaration.
3159    Backport change from CTags SVN to keep the parser more in sync:
3160    Add support for Cython constructs to the Python parser.
3161  * src/search.c:
3162    Remember the additional Find in Files search flags at startup.
3163  * src/dialogs.c:
3164    Don't close the Save As dialog when saving the file didn't succeed.
3167 2009-05-13  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
3169  * src/keyfile.c:
3170    Remember scribble cursor position.
3171  * src/keybindings.c, TODO:
3172    Implement Most-Recently-Used document switching when pressing
3173    Ctrl-Tab keybinding. (It's probably not perfect, but works OK).
3176 2009-05-13  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
3178  * data/latex.tags: Added some more commands from unit.sty and
3179    moderncv.sty.
3182 2009-05-12  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
3184  * src/symbols.c, doc/geany.txt, doc/geany.html,
3185    tagmanager/makefile.win32, tagmanager/nestlevel.c,
3186    tagmanager/nestlevel.h, tagmanager/python.c, tagmanager/rest.c,
3187    tagmanager/Makefile.am, wscript:
3188    Merge unstable branch:
3189    Add reStructuredText scope information for tags (for symbol list
3190    grouping).
3191    Read custom system global tags files from $prefix/share/geany/tags;
3192    Closes #2778923.
3193    Show the number of tags in a user global tags file (instead of the
3194    running total) in the debug message.
3195    Also print debug messages when loading a tag file manually or for
3196    default global tags files e.g. python.tags.
3197  - code:
3198    Move NestingLevel tags code into a separate file, add functions.
3199  - docs:
3200    Add 'Installation prefix' section instead of quoting '/usr/local'
3201    each time.
3202    Update for custom system global tags files.
3205 2009-05-11  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3207  * src/highlighting.c:
3208    Unset maybe previously keywords when setting up Scintilla for
3209    XML files. This fixed wrong highlighting after switching back to
3210    filetype XML from another one.
3211  * src/utils.c:
3212    Use plain old fwrite() in utils_write_file(). g_file_set_contents()
3213    is only used when explicitly requested.
3214  * src/dialogs.c:
3215    Remove unnecessary call to g_intern_string() to fix build with
3216    GLib 2.8 (closes #2790051).
3219 2009-05-10  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3221  * src/ui_utils.c:
3222    Make the clear icon of entry fields act on the release event, not
3223    on the press event like for other buttons.
3224  * src/editor.c:
3225    Refactor some multiple used code into get_multiline_comment_style().
3226  * src/main.c:
3227    Create parent directories if necessary when checking for the
3228    configuration directory on startup (closes #2784577).
3231 2009-05-08  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3233  * plugins/filebrowser.c:
3234    When a filter is set, apply it only to files, not directories and
3235    apply the filter to the UTF-8 name of the file as the filter string
3236    itself is also UTF-8.
3237  * src/utils.c, src/utils.h, src/highlighting.c, src/printing.c:
3238    Add utils_color_invert() and use it in highlighting.c and printing.c.
3239  * scintilla/include/Scintilla.h, scintilla/scintilla_changes.patch:
3240    Backport change from Scintilla CVS:
3241    Change capitalisation of header file to suit cross-compilation on
3242    Unix for Windows.
3245 2009-05-03  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3247  * wscript, scintilla/*, scintilla/include/*, src/plugindata.h:
3248    Update Scintilla to version 1.78.
3249  * src/editor.c, src/highlighting.c:
3250    Update Pascal styles as they changed in Scintilla.
3253 2009-05-02  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3255  * src/printing.c:
3256    Ignore the invert syntax highlighting colours setting when printing
3257    to not print characters on a dark background (closes #2785244).
3258  * New release: Geany 0.17 "Wessex".
3259  * configure.in, geany.nsi, geany_private.rc, win32-config.h, wscript,
3260    src/geany.h, doc/geany.html, doc/geany.txt:
3261    Post-release version bump.
3264 2009-04-30  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3266  * src/callbacks.c, src/callbacks.h, src/main.c:
3267    Update the View->Fullscreen menu item when fullscreen state is
3268    changed externally (e.g. by the window manager).
3269  * src/project.c:
3270    Fix passing wrong pointer to the File Open dialog for the Run
3271    command in the Project Properties dialog.
3274 2009-04-27  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3276  * src/callbacks.c, src/keyfile.c, src/main.c, src/ui_utils.c,
3277    src/ui_utils.h:
3278    Remember the active sidebar page between sessions.
3279  * src/project.c:
3280    Add a recent project item after creating a new project.
3281  * tagmanager/ruby.c:
3282    Fix wrong parsing of string literals (closes #2781264).
3283  * src/treeviews.c:
3284    Fix setting focus to the editor widget after changing the selection
3285    in the symbol list.
3288 2009-04-25  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3290  * src/symbols.c:
3291    Prevent crashes when two or more top level items in the symbol
3292    list have the same name (closes #2778246).
3295 2009-04-24  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3297  * src/keybindings.c:
3298    Manually show the main notebook tab bar menu when Shift-F10 is
3299    pressed. This broke when we disabled the default GTK tab bar menu.
3300  * src/document.c:
3301    Fix a crash when USE_GIO_FILEMON is enabled at closing a document
3302    which was reloaded shortly before.
3303  * src/editor.c:
3304    When the editor menu is opened by the Menu key, use the text cursor
3305    position for retrieving the current word. This fixes disabled
3306    Go to Tag items in the menu (#2780044).
3307  * src/treeviews.c:
3308    Set the "ellipsize" property of GtkCellRendererText to automatically
3309    shorten the path and file names in the Documents list.
3310  * doc/geany.html, doc/geany.txt, src/build.h:
3311    Increase the amount of highlighted build error messages to 100.
3312    At least for LaTeX we need higher values as there is a lot of
3313    informative output before any errors are reported.
3314  * src/filebrowser.c:
3315    Use the startup path as the initial directory for the filebrowser
3316    plugin when no project and no files are opened
3317    (patch by Matias Gea, thanks; closes #2780521).
3320 2009-04-21  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3322  * src/dialogs.c, src/document.c, src/document.h, src/treeviews.c,
3323    src/utils.c, src/utils.h:
3324    Ellipsize tab labels and some status messages for very long
3325    filenames (closes #2777348).
3326  * src/plugins.c, src/plugindata.h, plugins/geanyfunctions.h:
3327    Add utils_str_middle_truncate() and
3328    document_get_basename_for_display() to the plugin API.
3329  * doc/geany.html, doc/geany.txt, src/toolbar.c:
3330    Add new toolbar element: Print (patch by Roland Baudin, thanks).
3331  * doc/geany.html, doc/geany.txt, src/document.c, src/document.h,
3332    src/keyfile.c:
3333    Add a hidden preference 'use_safe_file_saving' to save files to disk
3334    by creating a temporary file first. This has serious side effects,
3335    please read the documentation before enabling this.
3336  * src/build.c:
3337    Make build commands on Windows run synchronously to avoid problems
3338    with reading build commands' output.
3339  * doc/geany.html, doc/geany.txt, src/build.c, src/build.h:
3340    Limit the amount of highlighted build error messages in the
3341    Compiler window to 50 for performance reasons.
3344 2009-04-20  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3346  * src/callbacks.c, src/editor.c, src/keybindings.c, src/keybindings.h,
3347    src/prefs.c:
3348    Replace our own GEANY_KEYS_MODIFIER_MASK by
3349    gtk_accelerator_get_default_mod_mask() which gives the same result.
3350  * src/filetypes.c, src/symbols.c, tagmanager/Makefile.am,
3351    tagmanager/makefile.win32, tagmanager/parsers.h, wscript:
3352    Add a trivial symbol parser for NSIS files.
3355 2009-04-19  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3357  * src/dialogs.c:
3358    Hide the extra file open dialog options in an expander to make the
3359    dialog more compact by default and to provide more space for the
3360    file view.
3361    Remove the filename field as it is also provided by GTK itself with
3362    more features like auto-completion.
3363    Watch the 'show-hidden' property of the file chooser widget using
3364    GObject's "notify" signal which gives accurate results and remove
3365    the hack using the "selection-changed" signal.
3368 2009-04-17  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3370  * src/callbacks.c, src/callbacks.h, src/encodings.c, src/filetypes.c:
3371    Prevent double execution of radio menu item "activate" or "toggled"
3372    signal handlers.
3373    Move 'Set Encoding' callback function into encodings.c.
3376 2009-04-16  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3378  * src/project.c:
3379    Add some missing 'void's in function definitions.
3380    If the project base path is './', just use the path of the project
3381    config file instead of appending './'.
3382  * src/treeviews.c, src/project.c:
3383    When a project is loaded, replace the project base path with the
3384    project name in the Documents sidebar for parent items
3385    (closes #2723679).
3388 2009-04-15  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3390  * src/keyfile.c, src/keyfile.h, src/project.c:
3391    Fix duplicating the recent files and projects lists when closing
3392    a project.
3393  * src/build.c, src/callbacks.c, src/dialogs.c, src/document.c,
3394    src/editor.c, src/encodings.c, src/filetypes.c,
3395    src/geanymenubuttonaction.c, src/geanyobject.c, src/geanywraplabel.c,
3396    src/highlighting.c, src/keybindings.c, src/keyfile.c, src/main.c,
3397    src/msgwindow.c, src/navqueue.c, src/notebook.c, src/plugins.c,
3398    src/prefs.c, src/queue.c, src/sciwrappers.c, src/socket.c,
3399    src/symbols.c, src/templates.c, src/toolbar.c, src/tools.c,
3400    src/treeviews.c, src/ui_utils.c, src/utils.c, src/vte.c:
3401    Remove all G_LIKELY macros inside g_return_if_fail() statements as
3402    this is redundant.
3403    Remove many other G_LIKELY/G_UNLIKELY macros which doesn't make much
3404    sense to keep the code more readable.
3407 2009-04-09  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3409  * src/symbols.c:
3410    When updating global type definitions for opened documents, take
3411    also C++ namespace symbols into account and don't ignore symbols
3412    which are defined inside a scope.
3415 2009-04-09  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
3417  * src/plugins.c:
3418    Don't show 'plugin is not binary compatible' messages on the status
3419    bar, only the status window.
3422 2009-04-08  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3424  * src/socket.c:
3425    When opening files from a remote instance on X11, set the window
3426    server time to encourage window managers to pop up the main window
3427    (related to #2735467 and #2276179).
3428  * src/main.c:
3429    When finished sending filenames to a remote instance, notify the
3430    environment that we finished starting up.
3433 2009-04-08  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
3435  * src/ui_utils.h, src/utils.h, src/ui_utils.c:
3436    Sort Configuration Files menu.
3437    Add ui_menu_sort_by_label().
3438    Add foreach_list() macro.
3439  * src/editor.c:
3440    Fix autocompletion.
3443 2009-04-07  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3445  * src/main.c:
3446    Fix setting a wrong default window size when starting without an
3447    existing configuration.
3448  * src/editor.c, src/sciwrappers.c, src/sciwrapper.h:
3449    Make editor_highlight_braces() static.
3450    Remove unused wrapper functions.
3451  * src/editor.c, src/symbols.c, src/symbols.h:
3452    Prevent showing an empty macro list.
3453    Show only macros of the same filetype instead of all macros of all
3454    loaded filetypes.
3455  * src/ui_utils.c:
3456    Don't add opened project files to the GtkRecentManager.
3459 2009-04-07  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
3461  * src/editor.c:
3462    Add Configuration Files item for snippets.conf.
3463  * src/highlighting.c, src/symbols.c:
3464    Fix 2 old uses of filetype IDs.
3467 2009-04-06  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3469  * src/interface.c, src/printing.c, geany.glade:
3470    Minor string improvements (spotted by Jean-Philippe Moal, thanks).
3473 2009-04-05  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3475  * src/ui_utils.c:
3476    Add sanity checks in ui_lookup_widget() just to be safe.
3477  * THANKS, TODO, geany.glade, src/about.c, src/interface.c,
3478    src/keyfile.c, src/main.c, src/plugindata.h, src/project.c,
3479    src/project.h, src/ui_utils.c, src/ui_utils.h:
3480    Add "Recent Projects" menu to the Project menu
3481    (#2728630, patch by Elias Pschernig, thanks).
3482  * doc/geany.txt, doc/geany.html:
3483    Describe how to build Geany using the Waf build system.
3484  * src/build.c, src/callbacks.c, src/dialogs.c, src/document.c,
3485    src/document.h, src/editor.c, src/encodings.c, src/filetypes.c,
3486    src/geanymenubuttonaction.c, src/geanyobject.c, src/geanywraplabel.c,
3487    src/highlighting.c, src/keybindings.c, src/keyfile.c, src/log.c,
3488    src/main.c, src/msgwindow.c, src/navqueue.c, src/notebook.c,
3489    src/plugins.c, src/prefs.c, src/queue.c, src/sciwrappers.c,
3490    src/socket.c, src/symbols.c, src/templates.c, src/toolbar.c,
3491    src/tools.c, src/tools.h, src/treeviews.c, src/ui_utils.c,
3492    src/utils.c, src/utils.h, src/vte.c:
3493    Start using G_LIKELY/G_UNLIKELY macros to gain a little more
3494    performance when building the code with gcc.
3495  * src/highlighting.c:
3496    Fix typo in the G_LIKELY checks, introduced in last commit.
3497    Fix the size of the styles array.
3498  * src/document.c:
3499    Show a message dialog when renaming a file fails.
3502 2009-04-03  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3504  * src/build.c:
3505    Remove checks for the .pdf or .dvi files when viewing a LaTeX file
3506    (as we did for all other files in SVN r3382).
3509 2009-04-03  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
3511  * src/filetypes.c, doc/geany.txt:
3512    Move ActionScript to the Script group.
3513    Fix wording & typo.
3514  * src/templates.c, src/utils.h, src/highlighting.c, src/dialogs.c,
3515    src/plugindata.h, src/filetypes.c, src/filetypes.h, src/plugins.c,
3516    src/symbols.c, src/ui_utils.c, plugins/saveactions.c,
3517    plugins/htmlchars.c:
3518    Merge reorder-filetypes branch:
3519    Make GEANY_FILETYPES_NONE = 0, sort filetype IDs randomly (so we can
3520    append randomly without breaking the ABI).
3521    Make None filetype name = title = _("None").
3522    Add foreach_slist() macro.
3523    Add filetypes_by_title list to GeanyData for plugin API access
3524    - a list of filetype pointers, which includes the None filetype
3525    first. This list stays constant by the time plugins are initialized,
3526    so you can use e.g. g_slist_nth_data(filetypes_by_title, n) to
3527    index the sorted list.
3530 2009-03-31  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3532  * doc/geany.txt, doc/geany.html, src/main.c:
3533    Add widget names for the menubar and toolbar.
3534  * src/msgwindow.c:
3535    When hiding the messages window, set the input focus back to the
3536    editor widget (part of #1910393).
3539 2009-03-30  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3541  * scintilla/LexOthers.cxx, src/highlighting.c, tagmanager/conf.c:
3542    Backport recent changes from Scintilla CVS to add partial support
3543    for RFC2822 styled text using the Properties lexer.
3544    Ignore leading whitespace for config files and RFC2822 text.
3545  * data/filetypes.actionscript:
3546    Update/fix ActionScript keywords (patch by Chris Macksey, thanks).
3547  * THANKS, src/treeviews.c:
3548    Display file/directory icons in the Documents sidebar
3549    (patch by Simon Treny, thanks).
3552 2009-03-29  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3554  * doc/geany.html, doc/geany.txt, geany.glade, src/callbacks.c,
3555    src/callbacks.h, src/interface.c, src/keyfile.c, src/main.c,
3556    src/plugindata.h, src/prefs.c, src/toolbar.c, src/toolbar.h:
3557    Add an option to allow appending the toolbar to the main menu bar
3558    to save some vertical space.
3559    Allow setting toolbar icon size to very small (menu icon size).
3562 2009-03-27  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3564  * src/keyfile.c, src/utils.c, src/utils.h:
3565    Add utils_path_skip_root(), a relative path safe variant of
3566    g_path_skip_root (forgotten patch by Colomban Wendling, #2518658).
3567  * src/keyfile.c, src/main.c:
3568    Allow negative window coordinates when saving and restoring the
3569    position of the main window.
3570    Restore the main window position and size *after* the window has
3571    been realised to get it positioned accordingly
3572    (this affects at least Windows).
3575 2009-03-26  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3577  * src/main.c, src/plugins.c, src/win32.c, src/win32.h:
3578    Use g_win32_get_package_installation_directory_of_module() on Windows
3579    with newer GLib versions instead of deprecated API.
3580  * src/keybindings.c:
3581    Don't manage the last used documents list when quitting to prevent
3582    errors by accessing invalid memory (may close #2533990).
3585 2009-03-25  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3587  * src/build.c:
3588    Delete the geany_run_script.sh immediately after execution
3589    to prevent leaking old copies when the script was quit unexpectedly
3590    (closes #2710482, patch by Martin Olsson, thanks).
3591  * src/keyfile.c:
3592    Check whether skipping the root element of a document's filename
3593    succeeded and use the filename itself if not (e.g. on relative
3594    filenames, #2702844).
3595    Use the locale encoded filename when saving session files.
3596  * src/callbacks.c:
3597    Re-set the quitting status after all documents have been closed on
3598    quitting.
3601 2009-03-24  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
3603  * plugins/htmlchars.c:
3604    Remove usage of deprecated sci_get_selected_text() from plugin.
3607 2009-03-24  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3609  * src/callbacks.c:
3610    Delay disk file checks when switching between documents a little
3611    bit to avoid fast, unintentional page switching in some cases.
3612  * plugins/geanyfunctions.h, src/plugindata.h, src/plugins.c,
3613    src/sciwrappers.c, src/sciwrappers.h:
3614    Deprecate sci_get_text(), sci_get_selected_text() and
3615    sci_get_text_range().
3616    Add sci_get_contents(), sci_get_contents_range() and
3617    sci_get_selection_contents() as replacement functions to provide
3618    an easier and cleaner API (initial patch by Frank).
3621 2009-03-22  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3623  * tagmanager/css.c:
3624    Fix wrong parsing of CSS tags when the definition block starts on
3625    a new line (reported by Dominic Hopf, thanks).
3628 2009-03-20  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
3630  * plugins/htmlchars.c:
3631    Extend plugin by feature to bulk replace and replace on input for
3632    special characters to their HTML entities.
3635 2009-03-19  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3637  * src/build.c:
3638    Update build menu items after changing anything in the
3639    'Set Includes and Arguments' dialog.
3640    Disable Compile/Run buttons/menu items when Compile/Run commands are
3641    set but empty.
3642    Reset current build directory to the base directory after reading a
3643    "Leaving directory" message when parsing Make output
3644    (closes #2694479, patch by Andrea Mazzoleni, thanks).
3645  * src/notebook.c:
3646    Fix wrong display of the filename in the tab bar menu for new files.
3647  * src/dialog.c:
3648    Set the initial directory for the Save As dialog only once on
3649    initialisation.
3650    Add a shortcut of the project's base directory to the
3651    File Open/Save As dialogs when a project is open for faster access.
3652  * src/splitwindow.c:
3653    Add keybindings for the split actions.
3656 2009-03-16  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3658  * src/search.c:
3659    When using Find All in the Find dialog (in Session and Document),
3660    display the right amount of matches.
3661    Fix the display of the matches once per line (I broke the original
3662    patch).
3663  * src/ui_uitls.c:
3664    Fix wrong directory selection behaviour in all Open Folder dialogs
3665    (closes #2688020, patch by Marcel Stimberg, thanks).
3666  * src/socket.c:
3667    Don't present the main window of a running instance when starting
3668    a second instance separately.
3671 2009-03-15  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3673  * src/socket.c:
3674    Reduce default file permissions on the Unix Domain socket file
3675    (reported by Jörg Sommer, thanks).
3678 2009-03-13  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3680  * doc/geany.txt, doc/geany.html, geany.glade, src/interface.c,
3681    src/main.c, src/plugindata.h, src/plugins.c, src/prefs.c,
3682    src/prefs.h:
3683    Add an option to set an additional plugin lookup path.
3684  * src/search.c:
3685    When using Find All in the Find dialog, display matches only once
3686    per line in the messages window (patch by Bert Vermeulen, thanks).
3689 2009-03-10  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3691  * data/filetype_extensions.conf, data/filetypes.actionscript,
3692    src/about.c, src/document.c, src/filetypes.c, src/filetypes.h,
3693    src/highlighting.c, src/plugindata.h, src/symbols.c,
3694    tagmanager/Makefile.am, tagmanager/actionscript.c,
3695    tagmanager/makefile.win32, tagmanager/parsers.h, THANKS, wscript:
3696    Add filetype ActionScript (patch by Chris Macksey, thanks).
3697    Update type keywords only for real C-like languages.
3698    Fix wrong sorting of Assembler and Ada filetypes.
3699  * plugins/classbuilder.c:
3700    Use G_DEFINE_TYPE in the GTK+ class template instead of manual code.
3701    Other minor cleanups.
3704 2009-03-05  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3706  * src/notebook.c:
3707    Don't use menu item images for the tab bar menu to save some
3708    vertical space.
3709  * data/filetypes.fortran, tagmanager/fortran.c:
3710    Add keyword 'extends' and fix Fortran parser to support the
3711    'extends' keyword (closes #2654492).
3712  * geany.glade, plugins/export.c, src/interface.c, src/printing.c,
3713    src/search.c, src/toolbar.c:
3714    Fix punctuation.
3717 2009-03-03  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
3719  * src/about.c, THANKS:
3720    Added Jari Rahkonen to list of Finnish translators.
3723 2009-03-02  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3725  * geany.pc.in:
3726    Adjust minimum required GTK version.
3727  * src/Makefile.am, wscript:
3728    Add main.h to the list of installed header files.
3729  * geany.glade, src/document.c, src/documentprivate.h, src/interface.c,
3730    src/notebook.c, src/ui_utils.c:
3731    Remove GeanyDocumentPrivate::tabmenu_label.
3732    Disable the default tab bar menu for the main notebook widget and
3733    use a custom menu instead which lists all open files as usual plus
3734    'Close Other Documents' and 'Close All' menu items.
3737 2009-02-27  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3739  * src/callbacks.c, src/search.c, src/ui_utils.c, src/ui_utils.c:
3740    Move ui_set_search_entry_background() into ui_utils.c.
3741    Change the background colour of the search entries in the Find
3742    and Replace dialogs according to the search results like in the
3743    toolbar search field.
3744    Add images to the 'Replace' and 'Replace and Find' buttons in the
3745    Replace dialog.
3746    Minor cleanups in search.c.
3747  * tagmanager/tm_source_file.c:
3748    Update source files upon creation.
3749  * data/c99.tags:
3750    Update C tags for glibc 2.9.
3751  * src/callbacks.c, src/toolbar.c:
3752    Fix broken non-incremental search with the toolbar search entry when
3753    pressing Enter (closes #2638180).
3754  * plugins/splitwindow.c:
3755    Fix possible crash on non-32-bit systems (patch by
3756    Wolfgang Ocker, thanks).
3757  * geany.spec.in:
3758    Update the Packager tag due to Dominic's various contributions.
3759    Update description and feature list.
3760    Change Source tag to the gzip'ed tarball to be in sync with the
3761    Makefile target (thanks to Wolfgang Ocker for reporting).
3764 2009-02-26  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
3766  * plugins/vcdiff.c, plugins/Makefile.am, po/POTFILES.in:
3767    Removed deprecated plugin VC Diff
3770 2009-02-25  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3772  * src/templates.c:
3773    Fix wrong Fortran 90 comment characters when inserting templates.
3774  * doc/geany.html, doc/geany.txt, geany.glade, src/callbacks.c,
3775    src/callbacks.h, src/editor.c, src/interface.c, src/keybindings.c,
3776    src/keybindings.h, src/main.c, src/plugindata.h, src/vte.c,
3777    src/vte.h, THANKS:
3778    Add 'Send Selection to Terminal' command to the Edit->Format menu
3779    (initial patch by David Gleich, thanks).
3780  * geany.glade, src/interface.c:
3781    Fix mnemonic for the Edit->Preferences menu item.
3784 2009-02-24  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3786  * configure.in, plugins/Makefile.am:
3787    Enable socket support when cross-compiling.
3788    Enable plugin compilation when cross-compiling.
3789  * src/msgwindow.c:
3790    Fix missing NULL checks when reading the colour value of compiler
3791    output messages.
3792  * src/main.c, src/win32.c, src/win32.h:
3793    On Windows, change the working directory to the Geany installation
3794    path at startup to avoid unwanted directory locking(closes #2626124).
3795  * src/encoding.c:
3796    Fix broken selection of "Document->Set Encoding" menu items.
3797  * src/document.c, tagmanager/include/tm_source_file.h,
3798    tagmanager/include/tm_work_object.h, tagmanager/tm_project.c,
3799    tagmanager/tm_source_file.c, tagmanager/tm_tag.c,
3800    tagmanager/tm_work_object.c, tagmanager/tm_workspace.c:
3801    Don't let the tagmanager automatically reparse files if they
3802    seem to be changed on disk (affects all files in the current session,
3803    not the current one). This should speed up file saving a little bit,
3804    especially with remote files.
3805    Remove now unnecessary calls to tm_workspace_update().
3806  * src/printing.c:
3807    Allow an empty value for the date format in the print settings to
3808    omit the date/time string in the print header.
3811 2009-02-20  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
3813  * src/editor.c: Set cursor for LaTeX at auto closing of environment
3814    direct into area.
3817 2009-02-19  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3819  * src/utils.h:
3820    Add missing header include (closes #2615808).
3823 2009-02-18  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3825  * src/symbols.c:
3826    Fix a possible crash when comparing symbol names
3827    (could be related to Ubuntu bug #147151).
3828    Fix broken symbol list tooltips when tag names contain ampersands.
3831 2009-02-15  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
3833  * plugins/makefile.win32:
3834    Don't build Split Window plugin on Windows (doesn't work).
3837 2009-02-15  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3839  * ChangeLog, Makefile.am: Rotate ChangeLog.
3840  * configure.in, geany.nsi, geany_private.rc, win32-config.h,
3841    wscript, doc/geany.txt, doc/geany.html, src/geany.h:
3842    Post-release version bump.
3845 *** See ChangeLog.pre-0-17 for earlier changes ***