Make plugin_signal_connect() string argument const (patch by
[geany-mirror.git] / ChangeLog
blob48a69723854d384aa29c2e09d88f44b0cfa91eb3
1 2010-04-22  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
3  * src/plugindata.h, src/pluginutils.c, src/pluginutils.h, THANKS:
4    Make plugin_signal_connect() string argument const (patch by
5    Colomban Wendling, thanks).
8 2010-04-21  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
10  * src/socket.c:
11    Fix Windows build by properly guarding Unix-only code.
14 2010-04-21  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
16  * src/templates.c, doc/geany.txt, doc/geany.html:
17    Support {ob} and {cb} in fileheader and file templates; they are
18    replaced last with { and }. This allows 'escaping' of wildcard
19    strings.
20  * src/editor.c, plugins/classbuilder.c:
21    Fix Class Builder plugin to use correct indentation instead of
22    always tabs.
23    Make editor_insert_text_block() only replace leading tabs for the
24    'Tabs' indent type; also group edits for undo.
25  * src/templates.c, src/templates.h, src/editor.c, doc/geany.txt,
26    doc/geany.html:
27    Support {ob} and {cb} wildcards for snippets too (fixes #2937008).
30 2010-04-19  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
32  * tagmanager/pascal.c:
33    More fixes to prevent possible crashes by trying to free NULL
34    pointers.
35  * src/sidebar.c:
36    Automatically show and hide the sidebar notebook tabs according
37    to the amount of visible pages (patch by Adrian Dimitrov, thanks).
38  * src/editor.c:
39    Add a static global variable to monitor autocompletion mode in order
40    to prevent cancellation of the struct/class (C/C++) auto completion
41    list (patch by Thomas Martitz, thanks).
42  * src/socket.c:
43    When starting and trying to access the Unix Domain socket of a
44    potentially running instance, first compare file ownership with the
45    user id of the running process to prevent accessing a wrong socket
46    file (part of #2985463, this might not yet be the final solution).
49 2010-04-19  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
51  * plugins/filebrowser.c:
52    Synchronize popup menu and plugin preferences dialog 'Show Hidden
53    Files' option (fixes #2989288).
56 2010-04-18  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
58  * tagmanager/entry.c, tagmanager/entry.h,
59    tagmanager/include/tm_source_file.h, tagmanager/parse.c,
60    tagmanager/parse.h, tagmanager/tm_source_file.c:
61    Add tm_source_file_set_tag_arglist() to manually set the argument
62    list of a tag.
63  * tagmanager/python.c:
64    Use tm_source_file_set_tag_arglist() to set the argument list
65    field of Python class tags to the argument list of their
66    __init__() methods.
67    Backport a fix from CTags SVN to prevent possible crashes by trying
68    to free NULL pointers.
71 2010-04-17  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
73  * tagmanager/txt2tags.c:
74    Remove duplicate code from Txt2Tags parser.
75    Remove the title control characters ('=') when parsing titles.
76    Also parse numbered titles (closes #2984703).
77  * doc/geany.html, doc/geany.txt, src/keybindings.c, src/keybindings.h,
78    src/plugindata.h:
79    Add 'Remove Markers' and 'Remove Error Indicators' keybindings.
80    Add missing documentation for 'Reset Zoom' keybinding.
81  * tagmanager/php.c:
82    Another attempt to fix the PHP parser regexp for parsing functions.
83    Fix wrong parsing of function arguments when those contain nested
84    brackets (as reported by Harold Aling).
85  * src/notebook.c:
86    Fix Ctrl-Click on notebook tab if Numpad is active.
89 2010-04-11  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
91  * geany.glade, doc/geany.txt, plugins/geanyfunctions.h,
92    src/callbacks.c, src/interface.c, src/keyfile.c, src/plugindata.h,
93    src/plugins.c, src/prefs.c, src/toolbar.c, src/toolbar.h,
94    src/ui_utils.c, src/ui_utils.h:
95    Add option 'System Default' for toolbar icon style and size to
96    use the GTK default value.
97  * geany.glade, src/callbacks.c, src/callbacks.h, src/interface.c,
98    src/toolbar.c, src/toolbar.h:
99    Shorten the toolbar popup menu, only provide items for Toolbar
100    Preferences and to Hide the toolbar.
101  * src/toolbar.c:
102    Instantly update the toolbar icon size and style when the
103    corresponding global GTK settings are changed.
104  * doc/geany.1.in, doc/geany.txt, src/main.c, src/main.h,
105    src/plugindata.h, src/socket.c:
106    Add new command line option --list-documents to return a list
107    of currently opened documents (closes #2979933).
110 2010-04-09  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
112  * plugins/htmlchars.c:
113    Make plugin remember whether replacement of special characters was
114    activated even after restart of Geany or reloading of plugin.
117 2010-04-09  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
119  * src/editor.c:
120    Fix inserting snippets with an indent when using Mac CR line
121    endings.
122  * src/callbacks.c:
123    Update status bar after using Document->Set Line Endings.
124  * src/editor.c:
125    Improve API docs for editor_insert_text_block().
128 2010-04-08  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
130  * src/editor.c:
131    Refactor snippets_complete_constructs().
132    Remove an unnecessary TODO.
133  * src/editor.c:
134    Fix indenting a snippet when there is whitespace after the
135    snippet key name.
138 2010-04-07  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
140  * doc/geany.txt, doc/geany.html:
141    Improve wording.
142  * src/build.c, src/msgwindow.c:
143    Fix disabled compiler message tracking if using indicators to
144    show build errors is disabled (closes #2982834).
147 2010-04-07  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
149  * scintilla/Editor.cxx:
150    Backport fix from Scintilla CVS to fix using SCI_GETSELECTIONSTART
151    and SCI_GETSELECTIONEND with rectangular selections. This fixes
152    replacing in a rectangular selection.
155 2010-04-06  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
157  * src/filetypes.c:
158    Re-detect any document filetypes set to None after reloading
159    filetype extensions (closes #2979661).
160  * src/editor.c:
161    Fix showing '...' item last instead of first for document word
162    completion.
165 2010-04-05  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
167  * data/filetypes.perl:
168    Adjust Perl Compile command to use the -c command
169    line option to perform a syntax check instead of using the
170    deprecated ByteCompile module.
171    Add error_regex to parse error messages and warnings when performing
172    syntax checks on Perl files.
175 2010-04-05  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
177  * src/keybindings.c, src/keybindings.h, doc/plugins.dox:
178    Add API docs for keybinding enums.
179  * src/notebook.c, doc/geany.txt, doc/geany.html:
180    Make Ctrl-click on any notebook tab switch to the last used
181    document.
184 2010-04-01  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
186  * src/geanymenubuttonaction.c, src/geanymenubuttonaction.h,
187    src/geanyentryaction.c, src/geanyentryaction.h,
188    src/geanywraplabel.c:
189    Cache G_TYPE_INSTANCE_GET_PRIVATE() result when initializing an
190    object for efficiency.
193 2010-03-31  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
195  * plugins/classbuilder.c:
196    Beep if the user hasn't entered a class name on pressing OK.
197  * src/search.c:
198    Fix replacing '^' regex.
199  * src/plugindata.h, src/stash.c, src/stash.h, src/plugins.c,
200    plugins/geanyfunctions.h:
201    Add Stash widget functions to API.
202  * configure.ac:
203    Revert commit to use AC_PATH_PROG instead of 'which' (fixes
204    #2973764).
207 2010-03-30  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
209  * THANKS, src/vte.c:
210    Apply patch from Yoann Le Montagner to set VTE bold color (thanks,
211    fixes #2976905).
212  * wscript, src/plugindata.h, src/stash.c, src/stash.h, src/plugins.c,
213    src/Makefile.am, doc/plugins.dox, doc/stash-example.c,
214    plugins/geanyfunctions.h, plugins/geanyplugin.h:
215    Add Stash setting functions to API.
216    Remove unnecessary argument to stash_group_load_from_file().
217  * src/geanyobject.c, plugins/classbuilder.c:
218    Don't generate FOO_GET_PRIVATE() macro because caching the result
219    in Foo::priv can be much more efficient.
222 2010-03-25  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
224  * src/editor.c:
225    Fix cursor positioning when toggling comments
226    (patch by Thomas Martitz, thanks).
229 2010-03-25  Peter Scholtens  <peter(dot)scholtens(at)xs4all(dot)nl>
231  * src/keybindings.[hc]:
232    Added Control+0 for zoom reset, see suggestion from #2969886.
235 2010-03-25  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
237  * src/search.c, src/document.c:
238    Fix wrong selection range after Replace in Selection.
241 2010-03-20  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
243  * src/win32.c:
244    Make CreateChildProcess() working with Unicode strings, e.g.
245    directory names (closes #2972606).
246  * geany.nsi:
247    Remove reference to already removed latex.tags file.
248    Future releases probably still depend on GTK 2.16.
249  * scintilla/ScintillaGTK.cxx:
250    Backport fix from Scintilla CVS to not paste text beyond the end
251    of lines (closes #2969096).
252  * plugins/htmlchars.c, src/geany.h, src/keybindings.c, src/main.c,
253    src/plugindata.h:
254    Deprecate GEANY_WINDOW_MINIMAL_WIDTH/GEANY_WINDOW_MINIMAL_HEIGHT
255    to not set Geany's minimum window size anymore (closes #2972992).
256    As replacement, add GEANY_DEFAULT_DIALOG_HEIGHT.
259 2010-03-19  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
261  * src/stash.c:
262    Make adding string and string vector settings initialise the setting
263    to NULL for safety.
264  * src/utils.c, src/stash.c, src/stash.h, doc/stash-example.c:
265    Add stash_group_load_from_file() and stash_group_save_to_file().
268 2010-03-18  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
270  * data/filetypes.common:
271    Set default for wrapped lines to show marker at end of line only
272    (more expected and doesn't change line alignment - closes #2972386).
273  * src/toolbar.c, src/toolbar.h, src/prefs.c, src/prefs.h,
274    src/pluginutils.c, doc/plugins.dox:
275    Improve API docs contents page by listing all commonly-used files.
276    Fix 'Date' appearing twice on the date line.
277    Don't generate API docs for prefs.h, toolbar.h (unused).
278    Move some '@file' doc-comments to the .c file.
279  * src/interface.c, geany.glade:
280    Add frame for 'Printing' prefs dialog page.
281  * src/sidebar.c, src/project.c, src/prefs.c, src/stash.c, src/stash.h,
282    src/keyfile.c, src/keyfile.h, src/search.c, src/plugins.c,
283    doc/stash-example.c:
284    Rename Stash data types to be independently named from Geany (so
285    Stash can be reused for other projects).
286    Rename GeanyPrefGroup to StashGroup.
289 2010-03-17  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
291  * tagmanager/python.c:
292    Apply patch from Colomban Wendling to parse Python lambda functions
293    (thanks) - modified to only parse toplevel or class member lambdas.
294  * src/stash.c, src/stash.h, doc/Doxyfile.in, doc/Makefile.am,
295    doc/stash-example.c:
296    Add doc-comments for Stash setting functions.
297    Add an example file showing usage of Stash.
298    (Not enabled yet until added to the plugin API).
301 2010-03-17  Lex Trotman  <elextr.at.gmail.dot.com>
303  * src/build.c:
304    Fix using return value without checking return status, caused
305    incorrect sensitivity settings on build dialog.
308 2010-03-16  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
310  * HACKING:
311    Add tip about gcc optimization & warnings/debugging.
312    Add Testing section.
313    Update Libraries section about synchronizing with other projects.
316 2010-03-15  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
318  * src/ui_utils.c:
319    For now revert the recent patch which set real_path of newly
320    open non-existent configuration files as this seems hackish and
321    causes 'file not found' warnings.
322  * wscript:
323    Fix/Improve GIT repository detection
324    (patch by Thomas Martitz, thanks).
325  * plugins/geanyfunctions.h, src/plugindata.h, src/plugins.c,
326    src/utils.c:
327    Add utils_copy_environment() to the plugin API.
330 2010-03-15  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
332  * src/utils.c, src/utils.h, src/sciwrappers.c, src/dialogs.c,
333    src/navqueue.c, src/msgwindow.c, src/filetypes.c, src/document.c,
334    src/main.c:
335    Use 3rd person for more API dox.
336    Change 'This is a wrapper function for...' to 'Wraps...' in brief
337    descriptions.
338    Change 'After all...' to 'Afterwards...'.
339  * src/interface.c, geany.glade:
340    Apply patch from Eugene Arshinov to make frame packing/alignment
341    more consistent (thanks).
344 2010-03-12  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
346  * src/ui_utils.c:
347    Fix ui_button_new_with_image() to call gtk_button_set_image() so
348    that gtk_button_[sg]et_label() work as expected.
349  * src/build.c, src/dialogs.c, src/dialogs.h, src/callbacks.c:
350    Make Build Commands dialog show menu item labels as a button (to
351    help show that menu labels don't normally need to be edited &
352    display the mnemonic correctly). Clicking shows an input dialog to
353    set a new menu item label.
354    Split dialogs_show_input() into 2 functions: one simple, one for
355    a persistent dialog.
356    Fix possible double-destroy of input dialog when closed by user.
357  * src/dialogs.c:
358    Fix not destroying 'Make Custom Target' input dialog after first
359    use (oops).
360  * src/project.c:
361    Make Long Line Marker settings for existing projects default to
362    general settings instead of 0 (thanks to Eugene Arshinov).
363  * src/utils.c, src/ui_utils.h, src/utils.h, src/highlighting.c,
364    src/keybindings.c, src/sciwrappers.c, src/plugindata.h,
365    src/filetypes.c, src/filetypes.h, src/document.c, src/pluginutils.c,
366    src/document.h, src/editor.c, src/editor.h, src/ui_utils.c:
367    Use 3rd person (gets not get) for API function brief descriptions.
368    Avoid using 'convenience function' in API brief descriptions.
371 2010-03-10  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
373  * doc/geany.txt, doc/geany.html:
374    Warn about some GNU extensions for regular expressions & clarify
375    some points.
376  * src/interface.c, src/keybindings.c, src/project.c, src/project.h,
377    src/prefs.c, src/plugindata.h, src/keyfile.c, src/editor.c,
378    src/editor.h, geany.glade:
379    Apply patch from Eugene Arshinov to add project long line marker
380    customisation (thanks).
381  * src/interface.c, geany.glade:
382    Edit/tidy 'Long line marker' labels.
385 2010-03-10  Lex Trotman  <elextr.at.gmail.dot.com>
387  * src/build.c, src/project.c:
388    Fix crash due to NULL in project build preferences (thanks to
389    Wolfgang Ocker).
392 2010-03-09  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
394  * src/utils.c, src/utils.h, src/search.c, src/search.h,
395    src/document.c, doc/geany.txt, doc/geany.html:
396    Merge gnu-regex branch:
397    Use POSIX system/GNU regex engine for find & replace 'Use regular
398    expressions' option. This alters regex syntax a bit - see the docs
399    for details; we now support '?' operator and replacement backslash
400    escaping is more standard.
401    Make regex search imply replacing escaped chars.
402    Allow \0 backreference replacement for the whole match.
403    Note: Replace All may be slower; if this is a problem please let me
404    know.
405  - code:
406    Add argument to utils_str_replace_escape() for keeping
407    uninterpreted backslash escapes e.g. '\\', '\e'.
408  * scintilla/LexMarkdown.cxx:
409    Backport minor formatting/style changes from Scintilla project.
410  * doc/geany.txt, doc/geany.html:
411    Remove warning about no visual indication for zero-column-mode
412    editing.
415 2010-03-09  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
417  * wscript:
418    Skip unavailable languages in LINGUAS (thanks to Christian Dywan).
421 2010-03-07  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
423  * wscript, scintilla/*, scintilla/include/*:
424    Update Scintilla to version 2.03.
425  * geany.glade, doc/geany.txt, doc/geany.html, src/editor.c,
426    src/editor.h, src/interface.c, src/keyfile.c, src/plugindata.h:
427    Add preference for virtual spaces.
428  * src/log.c:
429    Fix wrong default response for the Debug Messages dialog.
430  * src/dialogs.c:
431    Fix crashes when using Save As with no open files (closes #2964406).
432  * src/document.c:
433    Fix duplicate mnemonics on 'Resave missing file' dialog, also
434    move the question from the secondary to the main text to be
435    more compatible with the Gnome HIG.
436    Fix broken 'Save' action in 'Resave missing file' dialog.
437  * tagmanager/php.c:
438    Improve PHP parser to parse also the argument lists of PHP functions.
439  * src/prefs.c:
440    Correctly set the parent widget for the keybinding overwrite
441    confirmation dialog.
442  * src/dialog.c:
443    Fix setting the icon for some dialogs if the parent itself is also
444    a dialog.
445  * src/ui_utils.c:
446    When editing non-existent config files using the Tools->Configuration
447    Files menu, explicitly set the real_path to avoid presenting the Save
448    As dialog when saving the file (patch by Tony Rick, thanks).
449  * src/callbacks.c:
450    Focus the editor widget after hiding the sidebar when it had the
451    input focus (patch by Can Koy, thanks).
452    Properly show/hide the mesages window when using the View menu item
453    (closes #2961282).
454  * plugins/filebrowser.c:
455    After opening files, focus the editor widget
456    (based on a patch by Can Koy, thanks).
457  * plugins/filebrowser.c, plugins/geanyfunctions.h, src/msgwindow.c,
458    src/plugindata.h, src/plugins.c, src/sidebar.c, src/ui_utils.c,
459    src/ui_utils.h, src/vte.c:
460    Add and use convenience function ui_is_keyval_enter_or_return() and
461    add it to the plugin API.
464 2010-03-05  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
466  * src/about.c, THANKS, po/ast.po:
467    Added Asturian translation. Thanks to Marcos Costales for providing.
470 2010-02-28  Dominic Hopf  <dmaphy(at)googlemail(dot)com>
472  * src/log.c:
473    Fix keyboard accelerators in debug messages window
474    (Thanks Can Koy).
477 2010-02-28  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
479  * scintilla/LexR.cxx:
480    Backport R lexer from Scintilla CVS to fix case sensitive keywords
481    (Scintilla bug #2956543).
482  * src/sidebar.c, src/about.c, THANKS:
483    Make Space on the symbol and document list not focus the editor
484    widget while Enter does (closes #2919444, patch by Can Koy, thanks).
485  * src/document.c, src/document.h:
486    Fix document_try_focus() to make it work with the sidebar document
487    list as well.
488  * src/msgwindow.c, src/msgwindow.h, src/ui_utils.c, src/ui_utils.h:
489    Make Space on the compiler and messages widgets not focus the editor
490    widget while Enter does (patch by Can Koy, thanks).
491  * src/editor.c:
492    Fix wrongly auto-detected multiline comments
493    (patch by Eugene Arshinov, thanks).
496 2010-02-28  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
498  * src/ui_utils.c:
499    Show number of lines of current document inside statusbar. Thanks to
500    Can Koy for providing the patch.
503 2010-02-24  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
505  * src/keybindings.c, doc/geany.txt, doc/geany.html:
506    Make Switch to Editor keybinding reshow the document statistics
507    line, so user doesn't have to move the cursor.
510 2010-02-22  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
512  * data/filetypes.r:
513    Update keywords for the R language (patch by Jon Senior, thanks).
516 2010-02-21  Dominic Hopf  <dmaphy(at)googlemail(dot)com>
518  * doc/geany.txt:
519    Fix the instruction how to insert unicode characters
520    (thanks Tony Rick).
523 2010-02-21  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
525  * scripts/create_py_tags.py:
526    Minor fixes.
527    Replace tabs by spaces.
528  * plugins/genapi.py:
529    Minor fixes.
530    Replace tabs by spaces.
531  * tagmanager/r.c, plugins/geanyfunctions.h, src/about.c,
532    src/filetypes.c, src/symbols.c, tagmanager/Makefile.am,
533    tagmanager/makefile.win32, tagmanager/parsers.h, wscript, THANKS:
534    Add R tagmanager symbol parser (patch by Jon Senior, thanks).
535  * doc/geany.html, doc/geany.txt, src/keybindings.c, src/keybindings.h,
536    src/plugindata.h, src/sidebar.c, src/sidebar.h:
537    Add keybindings to switch to the sidebar's Document and Symbol list
538    as well as to the Message Window's current tab
539    (patch by Eugene Arshinov, thanks).
540  * data/filetypes.r:
541    Update primary keywords for the R language
542    (patch by Jon Senior, thanks).
545 2010-02-20  Dominic Hopf  <dmaphy(at)googlemail(dot)com>
547  * doc/geany.txt:
548    Add more detailed hints about reloading configuration
549    (thanks to Tony Rick).
550  * data/filetypes.javascript:
551    Correct the keyword list for JavaScript (thanks to Jonas).
554 2010-02-14  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
556  * New release: Geany 0.18.1 "Balfour".
559 2010-02-13  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
561  * src/keybindings.c:
562    Add special cases for handling the Select All keybinding (Ctrl-A) in
563    the toolbar search and goto line text entries (closes #2948040).
564    Strip trailing spaces after reflowing a paragraph, patch by
565    Dominik Wagenfuehr, thanks (closes #2945497).
568 2010-02-07  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
570  * src/geanymenubuttonaction.c, src/templates.c:
571    Partly revert last commit:
572    Unref the new files toolbar menu when freeing templates as it
573    was done before but unref it *after* the menu has been removed
574    from the GeanyMenuButtonAction.
575  * src/encodings.c:
576    Fix possible endless loop when trying to detect the encoding of
577    non-text files (patch by Alexey Antipov, thanks).
580 2010-02-06  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
582  * src/document.c:
583    Allow saving remote files using g_file_set_contents() as well
584    (patch by Алексей Антипов, thanks).
585  * data/filetypes.python:
586    Adjust style for secondary keywords to be less aggressive.
587    Add Python 2.5 builtins keywords.
588  * src/geanymenubuttonaction.c, src/templates.c:
589    Unref the new files toolbar menu when setting a new menu to fix
590    possible crashes when reloading configuration.
591  * src/filetypes.c:
592    When reloading configuration, process the current document at last
593    so the symbol list will be updated correctly.
596 2010-02-01  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
598  * src/symbols.c:
599    Explicitly read filetype configuration files before generating
600    global tags to get settings for custom filetypes.
603 2010-02-01  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
605  * src/plugins.c:
606    Fix GLib warning when toggling 'no plugins available' item.
609 2010-01-31  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
611  * icons/Makefile.am:
612    Include geany.ico in the distribution tarball.
613  * Makefile.am:
614    Fix 'make distcheck' by removing data/latex.tags from EXTRA_DIST.
615  * scripts/create_py_tags.py:
616    Make the script a bit more robust with newer Python versions.
617  * src/templates.c:
618    Use utils_spawn_sync() instead of g_spawn_sync().
621 2010-01-31  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
623  * plugins/export.c:
624    Close meta tag for export date properly.
627 2010-01-28  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
629  * geany.spec.in:
630    Update RPM Spec file (patch by Dominic Hopf, thanks).
633 2010-01-28  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
635  * src/plugindata.h:
636    Fix renaming sci_send_message(), sci_send_command() function pointers.
639 2010-01-25  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
641  * src/highlighting.c, src/highlighting.h, src/sciwrappers.c,
642    src/plugindata.h, doc/Doxyfile.in, doc/pluginsymbols.c,
643    plugins/geanyfunctions.h, plugins/Makefile.am,
644    plugins/pluginmacros.h, plugins/genapi.py, ChangeLog, wscript:
645    Use full function name for GeanyFunctions function pointers. This
646    avoids naming conflicts e.g. with C++'s 'new' keyword.
647    Remove deprecated header pluginmacros.h - use geanyfunctions.h instead.
650 2010-01-24  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
652  * src/utils.c, src/utils.h, src/vte.c:
653    Add utils_copy_environment() and make use of it.
654  * data/snippets.conf, doc/geany.html, doc/geany.txt, src/callbacks.c,
655    src/editor.c, src/templates.c, src/templates.h:
656    Add new special template wildcard "{command:...}" to use the
657    output of a command in templates.
658    Adjust template functions to mostly work with GeanyDocuments.
659    Minor cleanups in the template code.
660  * src/gb.c:
661    Replace the old icons with smiley icons from the Rodent icon theme.
662    Fix showing the same icon for two or more slots.
663    Minor cleanups.
664  * src/editor.c, src/editor.h, src/keybindings.c:
665    Rename fold_symbol_click() to editor_toggle_fold().
666    Use editor_toggle_fold() when the 'Toggle current fold' keybinding
667    was used to respect the 'Fold/unfold all children' preference
668    (closes #2935053).
671 2010-01-22  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
673  * src/build.c:
674    Prevent possible segfault in get_build_group().
675  * src/callbacks.c:
676    Fix GLib warning & beep if trying to insert multiline comment for a
677    filetype that doesn't support it.
680 2010-01-18  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
682  * doc/plugins.dox:
683    Add gcc commands to build a plugin to the HowTo.
684  * src/search.c, src/document.c, src/document.h:
685    Show 'Replaced X matches in Y documents' message when using Replace in
686    Session.
689 2010-01-17  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
691  * scripts/plugin_test.c:
692    Add a little test program which can load and test Geany plugins to
693    verify it is loadable at runtime and all necessary symbols are
694    defined.
695  * doc/plugins.dox, src/geanyobject.c, src/geanyobject.h, src/main.c,
696    src/plugindata.h:
697    Add new signal: "geany-startup-complete" which is sent once all
698    initialization and startup tasks has been done.
699  * README.I18N, configure.ac, wscript, po/LINGUAS:
700    Remove po/LINGUAS from the repository.
701    Generate it automatically if needed by reading available
702    message catalogs from the po directory.
703    Also respect the LINGUAS environment variable properly.
706 2010-01-16  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
708  * src/editor.c:
709    Remove editor_auto_latex() from Geany core and move it to geanyLaTeX
710    plugin.
713 2010-01-12  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
715  * src/editor.c, src/templates.c, src/templates.h:
716    Refactor templates_replace_all() into templates_replace_valist()
717    to save some code duplication.
720 2010-01-11  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
722  * plugins/geanyfunctions.h, src/editor.c, src/editor.h,
723    src/plugindata.h, src/plugins.c:
724    Add editor_insert_text_block() to plugin API.
727 2010-01-01  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
729  * *.*:
730    Update copyright information.
731  * src/keybindings.c, src/keybindings.h, src/plugindata.h,
732    doc/geany.txt, doc/geany.html:
733    Add keybinding to open the last closed tab (closes #2912692).
736 2009-12-31  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
738  * autogen.sh, configure.in, configure.ac:
739    Rename configure.in to configure.ac.
740  * plugins/geanyfunctions.h, src/plugins.c, src/plugindata.h,
741    src/sciwrappers.c:
742    Add sci_find_text() to the plugin API.
743  * doc/geany.html, doc/geany.txt, geany.glade, src/callbacks.c,
744    src/interface.c, src/prefs.c:
745    Add a checkbox in the preferences dialog to explicitly toggle
746    the visibility of the sidebar (closes #2923340).
749 2009-12-29  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
751  * src/editor.c, src/plugins.c, src/plugindata.h,
752    plugins/geanyfunctions.h:
753    Add editor_get_eol_char_name(), editor_get_eol_char_len() and
754    editor_get_eol_char() to the plugin API.
755  * src/callbacks.c, src/plugins.c, src/plugins.h:
756    Fix sensitivity of the Edit->Plugin Preferences menu item
757    if plugins are loaded which do not provide a configuration dialog.
758  * scripts/create_py_tags.py:
759    Rewrite and extend the Python tags parsing script to use
760    Python's inspect module to read symbols from Python modules
761    including scope information.
762  * data/filetypes.restructuredtext:
763    Add the default comment character sequence for reStructuredText.
764  * src/callbacks.c:
765    Show the Find/Goto dialogs if the corresponding toolbar buttons are
766    clicked but their text fields are not part of the toolbar (#2920807).
767  * data/filetypes.common, doc/geany.html, doc/geany.txt,
768    src/highlighting.c:
769    Add new style to change foreground and background colours for
770    calltips (patch by Dimitar Zhekov, thanks, closes #2919229).
771  * src/search.c:
772    Remember the window position of the Find, Replace and Find in Files
773    dialogs (closes #2877988).
776 2009-12-26  Frank Lanitz  <frank@frank.uvena.de>
778  * doc/plugins.dox:
779    Fix a minor typo inside plugin API reference.
782 2009-12-20  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
784  * src/dialog.c, src/dialogs.h, src/document.c, src/prefs.c:
785    Make dialogs_show_prompt() more flexible to take up to three
786    button/response code pairs to be shown.
787    Add a close button to the dialog when asking to Re-Save a
788    deleted file
789    (closes #2916954, based on a patch by Dominik Stadler, thanks).
790  * src/editor.c:
791    Fix LaTeX environment auto completion with CR/LF line endings.
792    Add some sanity checks.
793  * src/document.c:
794    When closing a document after it was deleted from the filesystem,
795    don't ask whether it should be saved first.
796    Mark the document only as changed if it is not closed afterwards.
797    Prevent possible segfaults if the document was closed when it is
798    missing from the filesystem.
799  * src/keybindings.c, src/keyfile.c, src/main.c, src/msgwindow.c,
800    src/msgwindow.h, src/prefs.c:
801    Add MessageWindow::scribble and use it instead of searching the
802    widget pointer everytime.
803  * src/keyfile.c, src/msgwindow.c, src/msgwindow.h, src/ui_utils.h:
804    Add preferences for hiding single tabs from the messages window
805    (no GUI preferences yet, still to be implemented).
806  * src/callbacks.c, src/prefs.c, src/toolbar.c, src/toolbar.h:
807    Set the correct parent window for the toolbar editor
808    dialog (closes #2913334).
809  * src/win32.c, src/win32.h, src/ui_utils.c:
810    Rename win32_show_project_folder_dialog() to
811    win32_show_folder_dialog() as it is not related and not used by any
812    project management related code.
813  * src/ui_utils.c, src/win32.c, src/win32.h, src/dialogs.c:
814    Rename win32_show_file_dialog() to win32_show_document_open_dialog()
815    as it is specialised for opening documents.
816    Implement win32_show_file_dialog() as a generic file open dialog and
817    use it with ui_path_box_new().
820 2009-12-20  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
822  * src/editor.c:
823    Extend auto_latex() function to check whether an environment has been
824    closed within the next lines to avoid auto adding double \end{}.
825  * data/latex.tags:
826    Remove LaTeX tags from SVN. Can be found at
827    http://download.geany.org/contrib/tags/ if needed.
830 2009-12-19  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
832  * src/callbacks.c, src/dialogs.c, src/document.c, src/document.h:
833    Add document_need_save_as().
834    Show the Save As also for documents created from filetype templates
835    instead of saving them directly with the untitled filename.
838 2009-12-09  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
840  * geany.glade, src/interface.c:
841    Move 'Send Selection to Terminal' menu item from Format to Commands
842    submenu.
843  * src/msgwindow.c:
844    When going to a build error, try the current document's path if
845    the parsed filename doesn't exist. (This can happen when we receive
846    build messages in the wrong order - after the 'Leaving directory'
847    messages).
848  * src/msgwindow.c:
849    Refactor msgwin_goto_compiler_file_line().
850  * src/interface.c, src/keybindings.c, geany.glade:
851    Capitalize, add mnemonics, sync with kb.c the Edit->Commands menu item
852    labels.
853  * src/search.c:
854    Refactor/reformat on_replace_dialog_response().
857 2009-12-08  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
859  * geany.spec.in:
860    Improve geany.spec (split the package into a binary and devel
861    package, update BuildRequires and other minor improvements).
862    Patch by Dominic Hopf, thanks.
865 2009-12-08  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
867  * src/filetypes.c, src/filetypes.h:
868    Make group for custom filetypes.
869  * data/filetypes.Genie.conf, data/filetype_extensions.conf:
870    Add custom filetype Genie.
873 2009-12-07  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
875  * src/highlighting.c:
876    Highlight D & Java types from a global tags file.
877  * src/highlighting.c, doc/geany.txt, doc/geany.html:
878    Add debug message warning if recursive lexer_filetype is set.
879  * src/highlighting.c, src/sciwrappers.c, src/sciwrappers.h:
880    Remove duplicate sci_set_keywords(), make argument const.
881  * src/highlighting.c:
882    Only show debug message once if recursive lexer_filetype is set.
883    Tidy highlighting_init_styles code for filetype None handling.
884  * scintilla/makefile.win32, scintilla/KeyWords.cxx,
885    scintilla/LexVerilog.cxx, scintilla/Makefile.am, src/highlighting.c,
886    src/filetypes.c, src/filetypes.h, src/symbols.c, THANKS,
887    tagmanager/parsers.h, tagmanager/makefile.win32,
888    tagmanager/verilog.c, tagmanager/Makefile.am,
889    data/filetypes.verilog, data/filetype_extensions.conf, wscript:
890    Apply patch from Kelvin Gardiner to add Verilog filetype (thanks).
891  * src/highlighting.c:
892    Fix segfault on startup (oops).
893  * data/filetypes.verilog:
894    Fix using common style colours for Verilog.
897 2009-12-03  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
899  * src/highlighting.c, data/filetypes.cpp, data/filetypes.vala,
900    data/filetypes.glsl, data/filetypes.cs, data/filetypes.c:
901    Move C-like filetype properties into configuration files.
902  * src/highlighting.c, data/filetypes.cpp, data/filetypes.cs,
903    data/filetypes.c:
904    Remove now unnecessary "styling_within_preprocessor" C style key.
905  * src/highlighting.c, data/filetypes.cpp, data/filetypes.vala,
906    data/filetypes.glsl, data/filetypes.cs:
907    Use lexer_filetype=C configuration file key instead of duplicate
908    styleset functions for C++, C#, GLSL, Vala.
911 2009-12-02  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
913  * doc/geany.txt, doc/geany.html:
914    Warn about not using BOM for configuration files (confuses GKeyFile
915    parser, at least on my system).
916  * src/filetypes.c:
917    Add/improve debug messages for custom filetypes.
920 2009-11-30  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
922  * data/latex.tags:
923    Add a couple of further latex-beamer commands to list of LaTeX tags.
926 2009-11-30  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
928  * plugins/filebrowser.c:
929    Add an in-entry clear icon to the filebrowser plugin's filter
930    entry (patch by Dominic Hopf, thanks).
931  * src/prefs.c, src/ui_utils.c:
932    Fix two compiler warnings about possibly uninitialised variables.
935 2009-11-29  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
937  * src/main.c, src/main.h, src/plugins.c, src/plugindata.h,
938    plugins/geanyfunctions.h:
939    Add main_is_realized() to the plugin API.
940  * tagmanager/include/tm_tagmanager.h:
941    Update partly outdated and wrong doc comment.
942  * src/main.c, src/main.h, src/socket.c:
943    Allow opening Geany projects remotely.
944  * doc/geany.txt, doc/geany.html, src/vte.c, src/vte.h, src/keyfile.c:
945    Add a hidden pref to allow executing text which was sent to the
946    terminal directly, i.e. do not strip trailing newline characters.
947    Also fix the stripping of trailing newline characters if there was
948    more than one.
951 2009-11-26  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
953  * src/about.c, THANKS:
954    Add Peter Scholtens and Ayke van Laethem to list of translators. Move
955    Kurt de Bree into section of previous translators.
958 2009-11-26  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
960  * src/about.c, src/symbols.c, THANKS, tagmanager/vhdl.c:
961    Fix VHDL symbol list to display all tags (patch from Kelvin Gardiner,
962    thanks).
965 2009-11-24  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
967  * src/highlighting.c:
968    Make stylesets take a ft_id argument so they can be reused fully with
969    custom filetypes, so custom styles and keywords can be set.
970  * src/highlighting.c:
971    Fix setting filetype properties when both the system and the user file
972    have properties set.
973  * src/symbols.c, tagmanager/vhdl.c:
974    Parse VHDL signals.
975  * src/highlighting.c:
976    Fix lexer settings for custom filetypes.
979 2009-11-23  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
981  * tagmanager/php.c:
982    Remove duplicate regular expression for parsing classes.
983    Fix and improve parsing of constants (patch by Harold Aling, thanks).
984  * doc/geany.1.in, doc/geany.html, doc/geany.txt, src/main.c,
985    src/main.h, THANKS, src/about.c:
986    Add new command line option "--socket-file" to be able to specify
987    separate socket filenames for instances
988    (closes #2896027, patch by Jörn Reder, thanks).
989  * src/keybindings.c, src/keybindings.h:
990    Add keybindings_check_event() to manually check GdkKeyEvents against
991    Geany's keybindings.
992  * src/callbacks.c, src/utils.c, src/utils.h:
993    Add and use utils_get_help_url().
994  * geany.glade, src/interface.c, src/prefs.c:
995    Add a Help button to the preferences dialog.
996    Handle Help keybinding events for the preferences dialog especially
997    and open the manual with the corresponding anchor link to the current
998    preferences page (same goes for the new Help button).
1001 2009-11-22  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1003  * src/toolbar.c, src/geanymenubuttonaction.c,
1004    src/geanymenubuttonaction.h:
1005    Use separate tooltips for toolbar menu buttons and their attached
1006    drop-down arrows.
1007  * tagmanager/latex.c:
1008    Improve parsing of sections and chapters by ignoring shortnames
1009    like \section[shortname]{label} (closes #2890477).
1012 2009-11-19  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1014  * src/geanymenubuttonaction.c:
1015    Try to fix Gtk warning when using Tools->Reload Configuration.
1018 2009-11-18  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1020  * src/highlighting.c, doc/geany.txt, doc/geany.html,
1021    data/filetypes.nsis, data/filetypes.php, data/filetypes.perl,
1022    data/filetypes.pascal, data/filetypes.docbook,
1023    data/filetypes.python, data/filetypes.conf:
1024    Use filetypes.foo [lexer_properties] group instead of hardcoding
1025    lexer properties (more flexible e.g. for custom filetypes).
1026  * src/highlighting.c, data/filetypes.xml, data/filetypes.html:
1027    Replace filetypes.xml html_asp_default_language key with
1028    filetypes.html asp.default.language property in [lexer_properties]
1029    group.
1032 2009-11-17  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1034  * doc/geany.txt, doc/geany.html:
1035    Fix slightly wrong description of how to insert Unicode characters.
1036  * src/ui_utils.c:
1037    Implement GTK_FILE_CHOOSER_ACTION_OPEN mode in
1038    ui_setup_open_button_callback().
1039  * src/prefs.c, src/prefs.c, src/vte.c:
1040    Refactor color and font button callback functions in the
1041    preferences dialog. Move the VTE related callback functions
1042    into vte.c.
1043    Make use of ui_setup_open_button_callback().
1044  * src/printing.c:
1045    Improve printing status texts (patch by Dominic Hopf, thanks).
1046  * src/prefs.c, src/vte.c:
1047    Use the default dialog title set by ui_setup_open_button_callback()
1048    to be more consistent and to save one string.
1051 2009-11-16  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1053  * tagmanager/c.c:
1054    Separate DKinds from CKinds.
1055    Don't generate macro tags for D, Java.
1058 2009-11-12  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1060  * tagmanager/ctags.c, tagmanager/general.h:
1061    Make TagManager Assert statements cause g_warning on failure.
1062  * src/keybindings.c:
1063    Fix reflow paragraph command when cursor < anchor using
1064    sci_fix_selection().
1067 2009-11-10  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1069  * tagmanager/perl.c:
1070    Fix Geany segfault with constant tags (#2895168).
1071  * src/symbols.c:
1072    Fix invalid tree iter access when using tv_iters.tag_other but not
1073    using tv_iters.tag_variable.
1074  * HACKING, tagmanager/perl.c:
1075    Fix parsing Perl format statements ("other" type doesn't seem to work).
1076  * tagmanager/tm_tag.c, tagmanager/perl.c, HACKING:
1077    Fix using "other" tag type.
1080 2009-11-09  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1082  * src/vte.c:
1083    Remove useless comment about applying settings only when libvte.so
1084    could be loaded which is only displayed *if* libvte.so is loaded.
1085  * src/editor.c:
1086    Allow autocompletion for HTML entities even within a word.
1087  * src/geanymenubuttonaction.c:
1088    Only set the menu of the button if a non-empty GtkMenu is passed to
1089    geany_menu_button_action_set_menu() so the menu arrow keeps
1090    insensitive.
1093 2009-11-07  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1095  * tagmanager/c.c:
1096    Fix parsing some Java code (e.g. filetypes.java) after r4407.
1099 2009-11-06  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1101  * tagmanager/c.c:
1102    Parse D functions with contracts (fixes #1885480).
1103    Parse D alias statement like typedef.
1104    (Ignore some more D keywords).
1105  * tagmanager/c.c:
1106    Fix creating D interface tags properly.
1107  * tagmanager/c.c:
1108    Parse contents of D extern{} and version{} blocks.
1111 2009-11-05  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1113  * src/main.c:
1114    Remove old code.
1117 2009-11-05  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1119  * src/plugindata.h, HACKING:
1120    Deprecate PLUGIN_KEY_GROUP() macro - use plugin_set_key_group()
1121    instead.
1122  * src/callbacks.c:
1123    Show number of files saved on status bar when using Save All.
1124  * src/highlighting.c:
1125    Use default color scheme if pref color scheme file doesn't exist.
1126  * src/keybindings.c:
1127    Fix moving correct lines after selecting whole line(s).
1130 2009-11-04  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1132  * tagmanager/makefile.win32:
1133    Fix broken build on Windows because of a typo
1134    (patch by Timothy Boronczyk, thanks).
1137 2009-11-04  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1139  * src/highlighting.c, src/highlighting.h, src/keyfile.c, src/main.c,
1140    src/editor.h:
1141    Add 'View->Editor->Color Schemes' menu, for now only shown if color
1142    scheme files exist in a colorschemes config directory. Color scheme
1143    files must end in ".conf" and currently only the [named_styles]
1144    section is read.
1145  * src/templates.c, src/utils.c, src/highlighting.c, src/utils.h:
1146    Add utils_get_config_files().
1147  * src/highlighting.c:
1148    Fix issue with default color not being reset if overridden with a
1149    system default color.
1150  * src/highlighting.c:
1151    Only reload filetype files when changing color scheme, not all
1152    configuration files.
1153  * src/filetypes.c, src/document.c, src/document.h, doc/Doxyfile.in:
1154    Deprecate documents_foreach() as it looks more like a function; use
1155    foreach_document() instead.
1156    Generate dox even for GEANY_DISABLE_DEPRECATED declarations.
1159 2009-10-30  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1161  * src/stash.c, src/stash.h:
1162    Use typedef instead of pointer for widget_id function arguments.
1165 2009-10-29  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1167  * src/pluginutils.c:
1168    Don't expand Plugin Preferences page spacing vertically to fill the
1169    height of the dialog.
1170  * src/interface.c, src/keybindings.c, src/keybindings.h, src/prefs.c,
1171    geany.glade, plugins/splitwindow.c:
1172    Allow GeanyKeyBinding label field to contain underscores, which won't
1173    be displayed by Geany. This saves adding near-duplicate translation
1174    strings.
1175    Add mnemonics for 3 Edit->Format menu items.
1176    Add keybindings_get_label().
1177  * src/interface.c, geany.glade:
1178    Use GtkVBoxes for Encoding prefs combo boxes to reduce width of prefs
1179    dialog.
1182 2009-10-28  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1184  * src/ui_utils.c:
1185    Desensitize Edit->Commands menu item when no docs are open.
1186  * src/interface.c, src/keybindings.c, src/callbacks.c,
1187    src/callbacks.h, geany.glade:
1188    Add 'Reflow, Transpose, Smart line indent' Edit->Format menu items.
1189  * src/sciwrappers.c, src/sciwrappers.h, src/editor.c:
1190    Add general function sci_get_string() that works with any string
1191    buffer messages that follow the Windows message convention.
1192  * src/pluginprivate.h, src/interface.c, src/keybindings.c,
1193    src/keybindings.h, src/callbacks.c, src/callbacks.h,
1194    src/pluginutils.c, src/pluginutils.h, geany.glade:
1195    Add 'Edit->Plugin Preferences' menu item and keybinding.
1196    Don't include plugindata.h in pluginutils.h because it redefines the
1197    GEANY() macro for plugin use.
1198  * doc/geany.txt, doc/geany.html:
1199    Update for Plugin Preferences keybinding.
1202 2009-10-27  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1204  * src/editor.c:
1205    Sort document word completion list.
1206  * src/interface.c, src/keybindings.c, src/callbacks.c,
1207    src/callbacks.h, geany.glade:
1208    Add some useful commands to editor popup menu under "Commands"
1209    submenu (thanks to Lex).
1210    Move 'Duplicate line or selection' from Format -> Commands submenu.
1211  * src/prefs.c, src/ui_utils.c, doc/geany.txt, doc/geany.html:
1212    Enable switching the sidebar to the right on Windows again, as it
1213    apparently works after all.
1214  * src/editor.c:
1215    Fix using tab to autocomplete in some other situations that word part
1216    completion doesn't apply in.
1217  * src/templates.c, src/interface.c, src/ui_utils.c, geany.glade:
1218    Add Edit->Commands submenu which is shared with the editor popup menu.
1219  * src/interface.c, src/keybindings.c, src/ui_utils.c, geany.glade:
1220    Change editor popup Commands submenu to start as child of menubar Edit
1221    menu, as this is more usual e.g. for keybindings initialization.
1222  * src/interface.c, src/keybindings.c, src/tools.c, src/ui_utils.c,
1223    geany.glade:
1224    Share a single Format submenu for menubar Edit and popup menu.
1227 2009-10-26  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1229  * src/build.c:
1230    Fix a compiler warning about an uninitialised variable.
1231  * wscript:
1232    Don't install unnecessary headers: dialogs.h, main.h, plugins.h,
1233    sciwrappers.h, build.h (for the Waf build system,
1234    accordingly to r4366).
1237 2009-10-26  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1239  * src/prefs.h, src/search.h, src/support.h, src/templates.h,
1240    src/toolbar.c, src/toolbar.h:
1241    Add missing dox for types/files in the API.
1242  * src/filetypes.h, src/Makefile.am, plugins/geanyplugin.h:
1243    Don't install unnecessary headers: dialogs.h, main.h, plugins.h,
1244    sciwrappers.h, build.h. (This helps to get compiler warnings for uses
1245    of functions not in the API).
1246    Warning: any plugins that include these headers should remove them.
1247  * src/build.c, src/build.h:
1248    Move function doc-comments to build.c so they stay in sync. Note:
1249    these functions are still not in the API.
1250  * HACKING:
1251    Add 'Doc-comments' plugin API subsection.
1252  * plugins/filebrowser.c:
1253    Fix packing configure widgets equally.
1254    Use spacing multiples of 6 as recommended by Gnome HIG.
1255  * src/prefs.c, src/ui_utils.c, doc/geany.txt, doc/geany.html:
1256    Disable switching the sidebar to the right on Windows as it will
1257    probably fail like the Split Window plugin.
1258  * src/document.c:
1259    Improve 'Detect from file' indentation pref by ignoring lines with
1260    indentation wider than 24 characters as this is more likely to be
1261    alignment than indentation.
1264 2009-10-25  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1266  * plugins/saveactions.c:
1267    Fix adding the filetype's default extension when using the
1268    Instant Save plugin (closes #2885142).
1269  * src/main.c:
1270    Before looking for line and column numbers specified as part
1271    of a filename, ensure the file doesn't exist on disk. This allows
1272    opening of files like "test:0".
1273  * src/sidebar.c:
1274    Rename "select" variables into "selection" to avoid shadowed names.
1275  * plugins/geanyfunctions.h, src/plugins.c, src/plugindata.h:
1276    Add ui_widget_modify_font_from_string() and sci_goto_line()
1277    to the plugin API.
1278  * plugins/filebrowser.c:
1279    Rename "select" variables into "selection" to avoid shadowed names.
1280    Make use of ui_widget_modify_font_from_string().
1283 2009-10-23  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1285  * src/interface.c, src/ui_utils.h, src/prefs.c, src/keyfile.c,
1286    src/main.c, src/ui_utils.c, doc/geany.txt, doc/geany.html,
1287    geany.glade:
1288    Add sidebar position interface pref.
1291 2009-10-23  Lex Trotman  <elextr.at.gmail.dot.com>
1293  * doc/geany.txt, doc/geany.html:
1294    Add missing underscores to links.
1297 2009-10-22  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1299  * src/keybindings.c, src/keybindings.h, doc/geany.txt, doc/geany.html:
1300    Add 'Move line(s) up/down' keybindings.
1303 2009-10-22  Lex Trotman  <elextr.at.gmail.dot.com>
1305  * src/build.c, src/build.h, src/filetypes.h:
1306    Include code for project filetype execute commands and fix bug in
1307    saving project filetypes list.
1308  * src/project.c, src/build.c, doc/geany.txt:
1309    Make non-project execute configuration save to filetypes not geany.conf.
1310    Fix closing of project failing to remove build commands dialog entry.
1313 2009-10-21  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1315  * src/project.c, src/ui_utils.c:
1316    Set border width for project properties build table.
1317  * geany.glade, src/interface.c:
1318    Don't expand hard tab width alignment.
1321 2009-10-20  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1323  * src/highlighting.c, src/filetypes.c, src/document.c, src/symbols.c,
1324    doc/geany.txt, doc/geany.html:
1325    Support loading global tags files for custom filetypes.
1326  * src/keybindings.c, src/keybindings.h, src/editor.c, src/editor.h,
1327    doc/geany.txt, doc/geany.html:
1328    Add 'Word part completion' keybinding so keys other than Tab can be
1329    used, or to clear/change the combination so Tab does full completion
1330    like before.
1331  * src/keybindings.c, src/keybindings.h, doc/geany.txt, doc/geany.html:
1332    Add 'Select to previous/next word part' keybindings.
1333  * src/keybindings.c, src/keybindings.h, doc/geany.txt, doc/geany.html:
1334    Add 'Switch to Messages' focus keybinding.
1337 2009-10-19  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1339  * doc/geany.txt, doc/geany.html:
1340    Add 'Custom filetypes' section.
1341  * src/filetypes.c, src/filetypes.h, src/document.c,
1342    doc/geany.txt, doc/geany.html, tagmanager/tm_source_file.c,
1343    tagmanager/include/tm_source_file.h:
1344    Add filetype "tag_parser" key so custom filetypes can use an existing
1345    tag parser.
1346    Add tm_source_file_get_named_lang().
1347  * src/highlighting.c, src/filetypes.c, src/filetypes.h, doc/geany.txt,
1348    doc/geany.html:
1349    Add filetype "lexer_filetype" key so custom filetypes can use an
1350    existing lexer.
1353 2009-10-19  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
1355  * THANKS, src/about.c:
1356    Add Xhacker Liu for his work at zh_CN translation to long list of
1357    translators.
1360 2009-10-16  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1362  * src/sciwrappers.c:
1363    Remove unnecessary line number margin padding.
1364  * scintilla/include/Scintilla.h, scintilla/include/Scintilla.iface,
1365    scintilla/ScintillaBase.h, scintilla/ScintillaBase.cxx,
1366    src/editor.c:
1367    Improve word part autocompletion so AC list is not cancelled and
1368    reshown (this also stops the selection changing).
1369    Add SCI_AUTOCGETCURRENTTEXT message (will be sent upstream).
1370  * src/editor.c:
1371    Improve CamelCase word part autocompletion for runs of capital letters.
1372  * src/editor.c:
1373    Don't complete snippets if there's a selection.
1376 2009-10-16  Lex Trotman  <elextr(at)gmail(dot)com>
1378  * src/build.c:
1379    Fix crash opening project when Geany started with no geany.conf.
1382 2009-10-15  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1384  * scintilla/ScintillaBase.h, scintilla/ScintillaBase.cxx, src/utils.c,
1385    src/utils.h, src/sciwrappers.c, src/editor.c, doc/geany.txt,
1386    doc/geany.html:
1387    Add word part autocompletion for the current selected item when
1388    pressing Tab - Enter still completes normally.
1389    Add foreach_str() API macro.
1390    Temporarily modify scintilla to say if tab was used for
1391    autocompletion.
1392  * src/templates.c, src/build.c, src/utils.c, src/utils.h,
1393    src/project.c, src/search.c, src/editor.c, src/ui_utils.c,
1394    plugins/classbuilder.c:
1395    Revert r4301 - utils_free_pointers() taking 4 arguments.
1396  * src/highlighting.c, src/highlighting.h, src/plugindata.h,
1397    src/document.c, src/plugins.c, plugins/geanyfunctions.h,
1398    plugins/splitwindow.c:
1399    Add highlighting_set_styles() to API, use for Split Window plugin so
1400    filetypes.common settings get set too.
1401    Make highlighting_set_styles() take GeanyFiletype pointer instead of
1402    filetype id.
1403  * src/document.c, src/editor.c, plugins/splitwindow.c:
1404    Call editor_apply_update_prefs() from editor_create_widget() so
1405    correct tab width and other settings are applied for Split Window
1406    plugin.
1409 2009-10-14  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1411  * src/keybindings.c:
1412    Don't include trailing newlines when using reflow command.
1413  * src/notebook.c:
1414    Add stock close buttons to notebook tab popup menu.
1415  * src/plugindata.h, src/document.c, src/plugins.c, src/ui_utils.c,
1416    plugins/geanyfunctions.h:
1417    Add document_get_notebook_page() to API.
1418    Minor edits of dox.
1419  * data/templates/files/file.html, data/templates/files/file.php:
1420    Fix wrong escaping (patch by dmaphy, thanks - closes #2878138).
1421  * src/interface.c, src/ui_utils.c, geany.glade:
1422    Move Tools configuration items to top of menu.
1423  * src/keybindings.c, src/search.c:
1424    Fix warning when using Find in Files with no documents open; make
1425    keybinding work in this case.
1428 2009-10-13  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1430  * src/notebook.c, src/plugindata.h, src/plugins.c, src/ui_utils.c,
1431    src/ui_utils.h, plugins/geanyfunctions.h, plugins/splitwindow.c:
1432    Make Split Window 'Show current document' button have a drop-down menu
1433    to select the other documents.
1434    Add new API function ui_menu_add_document_items().
1437 2009-10-13  Lex Trotman  <elextr(at)gmail(dot)com>
1439  * src/build.c:
1440    Fix sensitivity settings for compile and build toolbar items.
1443 2009-10-12  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1445  * src/templates.c:
1446    Don't use filetype submenus for templates (slower to navigate, often
1447    only 1 per-filetype anyway).
1448  * src/templates.c:
1449    Put old filetype template menu items in 'Old' submenu as they should
1450    be removed after the 0.19 release.
1451  * src/keybindings.c, src/keybindings.h, src/pluginutils.c:
1452    Add GeanyKeyGroup callback support, which allow keybinding callbacks
1453    to be ignored if inappropriate so a later keybinding with the same
1454    key combination can intercept it. (Also group callbacks are usually
1455    tidier than separate callbacks).
1456    Remove special handling for GEANY_KEYS_EDIT_COMPLETESNIPPET.
1457  * src/templates.c, src/build.c, src/utils.c, src/utils.h,
1458    src/project.c, src/search.c, src/editor.c, src/ui_utils.c,
1459    plugins/classbuilder.c:
1460    Make utils_free_pointers() take 4 arguments, add to API.
1461  * src/templates.c, src/tools.c, src/ui_utils.c:
1462    Fix memory leaks with gtk_container_get_children().
1465 2009-10-12  Lex Trotman  <elextr(at)gmail(dot)com>
1467  * src/build.c:
1468    Ensure that old style build config is not loaded if it does not exist.
1471 2009-10-12  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
1473  * THANKS, src/about.c, po/LINGUAS, po/gl.po:
1474    Added Galician translation. Thanks to José Manuel Castroagudín Silva.
1477 2009-10-11  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1479  * geany.glade, THANKS, src/about.c, src/document.c, src/encodings.c,
1480    src/interface.c:
1481    Apply set default encoding for existing files only if the files are
1482    non-Unicode (patch by Alexey Antipov, thanks).
1485 2009-10-04  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1487  * src/highlighting.c:
1488    Move new_styleset() and preprocessor setup code into styleset_c_like().
1489  * src/highlighting.c:
1490    Call apply_filetype_properties() from styleset_c_like().
1493 2009-10-03  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1495  * doc/geany.txt, doc/geany.html:
1496    Improve information about predefined keybindings which are
1497    commonly used across applications (patch by Lex Trotman, thanks).
1498  * src/printing.c:
1499    Enable embedded page setup properties in the (Unix) Print dialog
1500    on newer GTK versions (closes #2870596).
1501  * src/highlighting.c:
1502    Map global types (read from tags files) to keyword style for
1503    filetype Java.
1506 2009-10-01  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1508  * src/templates.c:
1509    Fix wrong creation of filetype template menu items for custom
1510    filetypes.
1511  * src/highlighting.c:
1512    Use jscript_keyword for SCE_HB[A]_WORD markup styles.
1513  * src/templates.c:
1514    Group 'New with template' items by filetype submenu (currently only for
1515    toolbar menu).
1516    Show custom file template items before filetype template items.
1517  * src/templates.c, src/interface.c, src/geanymenubuttonaction.c,
1518    geany.glade:
1519    Only use one 'New with template' submenu - reparent as needed.
1520  * src/templates.c:
1521    Don't create templates/filetype.none either.
1522  * src/templates.c:
1523    Warn if custom template file no longer exists.
1526 2009-09-30  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1528  * src/symbols.c:
1529    Add missing icon for Java packages in the Symbol List.
1532 2009-09-30  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1534  * src/highlighting.c, data/filetypes.vala:
1535    Add Vala keywords to conf file.
1536  * src/templates.c, doc/geany.txt, doc/geany.html:
1537    Read custom file templates from $prefix/share/geany/templates/files as
1538    well as user dir.
1539  * src/templates.c, data/templates, data/templates/files,
1540    data/templates/files/file.rb, data/templates/files/file.html,
1541    data/templates/files/main.java, data/templates/files/main.c,
1542    data/templates/files/main.cxx, data/templates/files/file.php,
1543    data/templates/files/main.d, data/templates/files/program.pas,
1544    data/templates/files/main.py, data/templates/files/file.tex,
1545    wscript, Makefile.am:
1546    Move filetype template defaults into custom file template files.
1549 2009-09-29  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1551  * src/symbols.c, tagmanager/perl.c:
1552    Change Perl tag parser to ctags SVN r601. This removes support for
1553    buggy local/my/our but it parses constant/format/labels and should
1554    be less buggy overall (closes #2861232).
1555  * src/templates.c, src/utils.c, src/utils.h, src/symbols.c:
1556    Add utils_get_file_list_full() which can optionally sort or include
1557    a full path for each list item.
1558  * src/utils.c, src/plugindata.h, src/plugins.c:
1559    Add utils_get_file_list_full() to API.
1562 2009-09-28  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1564  * src/keybindings.c, src/sidebar.c, src/sidebar.h,
1565    src/makefile.win32, src/project.c, src/prefs.c, src/treeviews.c,
1566    src/callbacks.c, src/notebook.c, src/treeviews.h, src/document.c,
1567    src/main.c, src/symbols.c, src/Makefile.am, src/ui_utils.c,
1568    po/POTFILES.in, wscript:
1569    Rename treeviews.[hc] -> sidebar.[hc].
1570  * data/filetypes.common:
1571    Remove unused [styling] arguments.
1572  * src/highlighting.c, data/filetypes.markdown,
1573    data/filetypes.restructuredtext:
1574    Remove style defaults from the code - just read them from
1575    configuration files.
1576  * src/highlighting.c, HACKING:
1577    Add apply_style_entries() to simplify implementing styleset_foo().
1578  * src/highlighting.c:
1579    Remove filetype keyword defaults from the code - just read them from
1580    configuration files.
1581  * src/highlighting.c:
1582    Add sci_set_keywords() wrapper.
1585 2009-09-27  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1587  * scripts/create_py_tags.py:
1588    Make the code a bit more pythonic.
1589  * doc/images/build_menu_commands_dialog.png,
1590    doc/images/main_window.png:
1591    Add new images referenced in the documentation.
1592  * doc/geany.html, doc/geany.txt:
1593    Several documentation improvements (patch by Lex Trotman, thanks).
1594  * src/pluginutils.c:
1595    Fix setting the appropriate page of the combined plugins
1596    preferences dialog.
1599 2009-09-27  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1601  * src/keybindings.c:
1602    Only focus toolbar goto line entry when pressing keybinding if it's
1603    visible (patch by Eugene Arshinov, thanks).
1604  * src/callbacks.c:
1605    Focus editor after entering a number in the goto line toolbar entry.
1606  * configure.in:
1607    Use AC_PATH_PROG instead of which for portability (patch by Erik
1608    Southworth, thanks).
1609  * src/plugins.c:
1610    Show plugins that only implement plugin_configure_single() in the
1611    multiple-configure dialog as a page with a configure button on it.
1612    Add padding for multiple-configure dialog.
1613    Make the multiple-configure dialog notebook tabs scrollable.
1614  * src/pluginutils.c, src/pluginutils.h:
1615    Don't build pluginutils.o if HAVE_PLUGINS is not defined.
1616  * src/pluginprivate.h, src/plugindata.h, src/pluginutils.c,
1617    src/plugins.c, src/pluginutils.h, src/plugins.h, po/POTFILES.in,
1618    plugins/geanyfunctions.h, plugins/filebrowser.c:
1619    Add plugin_show_configure() API utility function.
1620    Add File Browser popup menu 'Preferences' item.
1621  * src/highlighting.c:
1622    Add get_keyfile_ints() instead of using tmp_style hack.
1623  * src/highlighting.c, data/filetypes.xml:
1624    Change new html_asp_default_language markup pref to use integer,
1625    not hex in config file.
1626    Fix minor issue with changing pref back to 0.
1627  * src/highlighting.c:
1628    Fix possible segfault in get_keyfile_int() if key value is malformed.
1631 2009-09-24  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1633  * THANKS, src/about.c, src/highlighting.c, data/filetypes.xml:
1634    Add "html_asp_default_language" pseudo style to filetypes.xml
1635    to allow setting the used language in embedded ASP code
1636    (patch by Ross McKay, thanks).
1637  * src/filetypes.xml:
1638    Update VBScript keywords (patch by Ross McKay, thanks).
1641 2009-09-24  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1643  * src/keybindings.c, THANKS:
1644    Apply patch from Lex Trotman to make 'Reflow block/lines(s)'
1645    keybinding use line breaking column when enabled.
1646  * src/document.c:
1647    Fix showing the document before reload dialog when opening an
1648    already-open file.
1649  * src/pluginprivate.h, src/plugins.c, doc/pluginsymbols.c:
1650    Add plugin_configure_single() plugin symbol which is easier to
1651    implement than plugin_configure() but won't support a
1652    multiple-plugin configure dialog.
1653  * src/plugins.c:
1654    Show multiple plugins in the 'Configure Plugins' dialog.
1657 2009-09-22  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1659  * doc/geany.txt, doc/geany.html:
1660    Change 'Foo tab in preferences dialog' titles to 'Foo preferences'.
1661    Minor edits.
1662  * doc/geany.txt, doc/geany.html:
1663    Add 'Toolbar entries' section.
1664  * doc/geany.txt, doc/geany.html:
1665    Update 'Go to line' keybinding description.
1666  * doc/geany.txt, doc/geany.html:
1667    Split keybinding table into group tables; update KB links.
1670 2009-09-21  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1672  * src/build.c:
1673    Fix compiler warnings about uninitialised variables.
1674  * src/callbacks.c, src/document.c:
1675    When reloading files, use the previously set encoding instead of
1676    detecting it again (closes #2862041).
1677  * configure.in:
1678    Turn on automake silent rules if supported.
1681 2009-09-21  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1683  * src/utils.c:
1684    Speed up sorting in utils_get_file_list(). This reduces the file
1685    browser delay on displaying a big directory, e.g. /usr/bin.
1686  * src/build.c:
1687    Expand command entry width when expanding Build Commands dialog.
1688  * src/build.c:
1689    Split Build Commands dialog notes label and edit text.
1690  * src/build.c:
1691    Add padding for Build Commands dialog separators.
1692    Add colons for regex field labels; fix 1 capitalisation.
1693  * src/build.c:
1694    Fix none filetype Build Commands dialog label.
1695    Make group labels bold.
1696  * src/build.c, src/ui_utils.h, src/dialogs.c, src/notebook.c,
1697    src/ui_utils.c:
1698    Add & use ui_label_set_markup(), ui_label_new_bold().
1699  * src/ui_utils.h, src/printing.c, src/tools.c, src/project.c,
1700    src/prefs.c, src/dialogs.c, src/geanyentryaction.c,
1701    src/plugindata.h, src/vte.c, src/search.c, src/ui_utils.c:
1702    Make ui_entry_add_clear_icon() take a GtkEntry, not GtkWidget.
1703  * src/keybindings.c:
1704    Make 'Go to Line' keybinding focus the toolbar entry if visible.
1707 2009-09-20  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1709  * src/filetypes.c, src/filetypes.h, src/symbols.c,
1710    tagmanager/parsers.h, tagmanager/makefile.win32,
1711    tagmanager/abc.c, tagmanager/Makefile.am, data/filetypes.abc,
1712    data/filetype_extensions.conf, wscript:
1713    Add new filetype: Abc (patch by Eric Forgeot, thanks).
1714  * tagmanager/php.c:
1715    Merge recent changes from the CTags project to further improve
1716    PHP symbol parsing.
1719 2009-09-17  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1721  * src/printing.c:
1722    Fix wrong alignment of printed pages when page headers are
1723    disabled (closes #2856822).
1724    Plug a small memory leak and improve function signature of
1725    add_page_header().
1726  * src/keyfile.c:
1727    Save an if expression.
1728  * src/ui_utils.c:
1729    After clearing a text field using the embedded clear icon, put the
1730    input focus into this text field.
1733 2009-09-17  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1735  * plugins/filebrowser.c:
1736    Free file list memory whilst iterating the list.
1737    Minor formatting fixes.
1738  * src/utils.c, src/utils.h:
1739    Add foreach_dir() API macro.
1740    Update API docs for utils_get_file_list().
1741  * wscript, src/queue.c, src/editor.c, src/Makefile.am, src/queue.h,
1742    po/POTFILES.in:
1743    Remove queue.[hc] - use GQueue instead of GeanyQueue.
1744    Beep if there are no more snippet positions.
1745    Limit length of snippet positions queue to 20.
1748 2009-09-16  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1750  * src/keybindings.c, src/callbacks.c, src/search.c:
1751    Make Goto Tag commands use the current selection if present (useful
1752    for selecting part of a tag or for ReST section names with spaces
1753    in).
1754  * src/document.c:
1755    Don't move the cursor when reloading.
1756  * src/plugindata.h, src/editor.c, src/editor.h:
1757    Make editor_prefs.snippets hash table private (not a pref).
1760 2009-09-15  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
1762  * src/main.c:
1763    Remove deprecated --debug flag. Please use --verbose/-v instead.
1766 2009-09-15  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1768  * src/search.c:
1769    Show Find in Files stderr output in messages window instead of
1770    debug window so that invalid regex messages can be seen easily.
1771    Combine FIF stdout and stderr callback code.
1774 2009-09-14  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1776  * src/utils.c:
1777    Fix opening filenames beginning with two dots (closes #2858487).
1778  * src/interface.c, src/highlighting.c, src/prefs.c, src/filetypes.c,
1779    src/filetypes.h, src/main.c, doc/geany.txt, doc/geany.html,
1780    data/filetypes.common, geany.glade:
1781    Update syntax highlighting after changing the 'Invert syntax
1782    highlighting colors' pref, instead of requiring a restart.
1783    Remove filetypes.common invert_all option - use 'Invert syntax
1784    highlighting colors' pref instead (closes #2854525).
1785  * src/prefs.c, src/dialogs.c, src/dialogs.h:
1786    Add 'Allow' button when showing the conflicting keybinding dialog.
1787    Make dialogs_show_question_full() use GTK dialog on Windows if
1788    button text is not the stock yes/no items.
1789    Add dialogs_show_prompt() which also has an 'Apply' button.
1790  * src/queue.c, src/queue.h:
1791    Add warning that GeanyQueue may be removed.
1792  * src/keybindings.c, src/editor.c, src/editor.h:
1793    Change snippet_goto_next_cursor() to
1794    editor_goto_next_snippet_cursor() as it's in editor.h.
1795    Avoid using GPOINTER_TO_INT macro.
1798 2009-09-13  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1800  * src/keybindings.c:
1801    Fix 'Reflow block' command when at the last paragraph and there's
1802    no last newline (patch by Eugene Arshinov, thanks).
1803  * HACKING:
1804    Add 'Compiler options & warnings' section.
1805    Update Style section to be clearer about code alignment and show
1806    some example code.
1807    Other minor edits.
1810 2009-09-12  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1812  * src/keybindings.c, src/sciwrappers.c, src/sciwrappers.h,
1813    src/plugindata.h, src/plugins.c, src/editor.c,
1814    plugins/geanyfunctions.h:
1815    Add sci_set_marker_at_line(), sci_delete_marker_at_line(),
1816    sci_is_marker_set_at_line() to the plugin API (thanks to Yura
1817    Siamashka).
1818    Add sci_toggle_marker_at_line().
1819    Fix SciFuncs alignment.
1822 2009-09-11  Lex Trotman  <elextr(at)gmail(dot)com>
1824  * src/build.c
1825    Fix erroneous free of returned string in prepare_run_script.
1828 2009-09-10  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
1830  * data/filetypes.latex:
1831    Changing default value for showing pdf and dvi to ensure to take
1832    *.pdf and *.dvi file.
1835 2009-09-07  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
1837  * src/about.c, THANKS:
1838    Change language string for Slovenian translation.
1841 2009-09-07  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1843  * tagmanager/txt2tags.c:
1844    Fix multi-byte character constant comparison.
1845  * src/treeviews.c:
1846    Fix Gtk warning when trying to update documents popup menu item
1847    sensitivity before they exist.
1850 2009-09-06  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1852  * src/plugins.c:
1853    Improve the opening string in the plugin manager dialog.
1854  * doc/geany.css:
1855    Use "max-width" to set the document width of the generated
1856    HTML documentation to let the text be auto-wrapped.
1857  * src/prefs.c, src/tagmanager/include/guregex.h,
1858    src/tagmanager/include/tm_tagmanager.h:
1859    Remove trailing spaces (patch by André Hentschel, thanks).
1860  * src/treeviews.c:
1861    Fix a compiler warning.
1862  * src/document.c:
1863    Fix crash when opening documents.
1864  * src/build.c, src/build.h, src/project.c:
1865    Adjust coding style (no code changes).
1866  * src/build.c, src/project.c:
1867    Use NZV() macro instead of strlen() to check for empty strings.
1868    Remove the FOREACH_GEANYBUILDCMD_ENTRY() macro.
1869  * doc/plugins.dox, plugins/geanyfunctions.h, src/document.c,
1870    src/geanyobject.c, src/geanyobject.h, src/plugindata.h,
1871    src/plugins.c, THANKS:
1872    Add new plugin signal: "document-before-save".
1873    Add get_line_end_position(), set_target_start(), set_target_end(),
1874    replace_target() to the plugin API
1875    (patch by Eugene Arshinov, thanks).
1876    Add new plugin signal: "document-filetype-set" (closes #2852286).
1877  * data/filetype_extensions.conf, data/filetypes.txt2tags, src/about.c,
1878    src/filetypes.c, src/filetypes.h, src/plugindata.h, src/symbols.c,
1879    tagmanager/Makefile.am, tagmanager/makefile.win32,
1880    tagmanager/parsers.h, tagmanager/txt2tags.c, tagmanager/txt2tags.c,
1881    wscript, THANKS:
1882    Add new filetype: Txt2Tags (patch by Eric Forgeot, thanks).
1885 2009-09-04  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1887  * src/treeviews.c, src/document.c:
1888    Apply patch from Thomas Martitz to improve sidebar type-ahead code:
1889    Use gtk_notebook_set_current_page() instead of
1890    document_open_file_full() when choosing an item from the documents
1891    list.
1892    Avoid using goto in document_open_file_full().
1895 2009-09-03  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1897  * src/treeviews.c, src/document.c, src/document.h, THANKS:
1898    Enable type-ahead find for sidebar symbols and documents tabs
1899    (patch by Thomas Martitz, thanks).
1900  * src/build.c:
1901    Fix 2 free's of possibly uninitialized pointers.
1904 2009-09-03  Lex Trotman  <elextr(at)gmail(dot)com>
1906  * src/build.c, src/filetypes.h, src/filetypes.c
1907    Only write filetype config files when build command or regex is
1908    actually changed.  Removed commented code in src/filetypes.c.
1909  * src/build.c
1910    Ensure uses of filename are protected against nulls when running
1911    a build command and give status message if not.
1914 2009-09-01  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1916  * src/plugins.c:
1917    Remove plugin from plugin manager dialog on unloading if it no
1918    longer exists or is incompatible.
1921 2009-08-31  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1923  * src/plugins.c:
1924    Add warning if only one of the plugin_key_group[_info] symbols is
1925    defined for a plugin.
1926  * src/templates.c, src/highlighting.c, src/dialogs.c, src/filetypes.c,
1927    src/filetypes.h, src/document.c, src/main.c, src/symbols.c,
1928    TODO:
1929    Merge custom-filetypes branch:
1930    Support adding custom filetype files e.g. filetypes.Foo.conf.
1931  - Code:
1932    Allow GeanyFiletype::extension to be NULL.
1933    Add note about using GeanyFiletype pointer instead of filetype_id
1934    for filetypes.c function arguments.
1935    Replace styleset_none() with styleset_default().
1938 2009-08-30  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1940  * src/prefs.c:
1941    Show the sidebar if either the documents or the symbols list are
1942    enabled (related to #1876107).
1945 2009-08-29  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1947  * src/build.c, src/filetypes.c:
1948    Fix compiler warnings.
1949  * src/utils.c:
1950    Fix removing leading double slashes in filenames which are used for
1951    network resources on Windows (closes #2844085).
1954 2009-08-27  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1956  * src/keybindings.c:
1957    Fix Make keybindings (patch by Lex Trotman, thanks).
1958  * src/geany.h:
1959    Define G_GNUC_WARN_UNUSED_RESULT if GLib < 2.10.
1960  * doc/plugins.dox:
1961    Mention Files link at top for header files; demoplugin.c.
1962    Minor edits; remove 'far from being complete'.
1963  * src/keyfile.c, src/keyfile.h, src/main.c,
1964    data/filetype_extensions.conf, HACKING:
1965    Remove --generate-data-files argument & code - just edit
1966    filetype_extensions.conf by hand (filetype order was broken
1967    anyway).
1968    Add *.H extension for C++ (useful for non-Windows systems).
1971 2009-08-27  Lex Trotman  <elextr(at)gmail(dot)com>
1973  * src/build.c
1974    Fix implementation of loading old project files with base
1975    directories. Use project_make_base_path instead of re-
1976    implementing.  Now depends on project.c reading base dir
1977    prior to calling load_build_menu.
1978  * src/build.c
1979    Change usage of project base directory to conform with
1980    previous documented behavior when loading old project files.
1981  * src/build.c:
1982    Change make custom and make object to ignore make in base path
1983    when reading old project file settings.  Changed some indent
1984    spaces to tabs. Fix missing compile menu accelerator.
1987 2009-08-26  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1989  * doc/plugins.dox:
1990    Add warning about not using undocumented features.
1991    Add reference to HACKING for plugin API development.
1992  * HACKING:
1993    Add section 'Plugin API/ABI design'.
1994  * src/keybindings.h, src/makefile.win32, src/project.h,
1995    src/filetypes.h, src/Makefile.am, wscript:
1996    Use GEANY_PRIVATE to hide some fields from plugins.
1997  * src/build.c:
1998    Fix invalid memory read (#2844632, patch by Lex Trotman, thanks).
1999  * src/build.c, src/build.h, src/project.c:
2000    Use build_ prefix for 3 functions in build.h; add a static modifier.
2003 2009-08-25  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2005  * tagmanager/php.c:
2006    Improve parsing of PHP functions by requiring a valid modifier or
2007    whitespace before the 'function' keyword to ignore some false
2008    positives like function tags inside comments
2009    (patch by Harold Aling, thanks).
2010  * tagmanager/python.c:
2011    Don't parse comments after import statements and other tags
2012    (closes #2838938, patch by Huandari Lopez, thanks).
2015 2009-08-25  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2017  * data/filetypes.markdown:
2018    Add filetypes.markdown for configuration (thanks to Jon Strait).
2019  * src/build.c, src/keybindings.c, src/keybindings.h, src/plugindata.h,
2020    src/pluginutils.c, src/plugins.c, src/pluginutils.h,
2021    plugins/geanyfunctions.h:
2022    Remove GeanyKeyGroup struct from the API - plugins should not set
2023    these fields.
2024    Make keybindings_set_item() duplicate the name and label fields
2025    (needed by GeanyLua) and return a keybinding pointer.
2026    Add keybindings_get_item() to the API (in case it's useful).
2027    Move some keybinding code out of plugin source files.
2030 2009-08-24  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2032  * src/build.h, src/project.h, src/plugindata.h, src/filetypes.h:
2033    Don't generate build.h API docs until everything is approved and
2034    functions are actually in geany_functions.
2035    Move new GeanyFiletype and GeanyProject field(s) to end of struct
2036    as they may be changed or made private later.
2037    Break ABI for fields removed.
2040 2009-07-30  Lex Trotman  <elextr(at)gmail(dot)com>
2042  * src/build.h, src/build.c, src/keybindings.c, src/filetypes.c
2043    src/keyfile.c, src/project.c
2044    Changed names of symbols visible in build API to GEANY_xxx.
2047 2009-07-29  Lex Trotman  <elextr(at)gmail(dot)com>
2049  * src/project.h, src/project.c, src/build.c
2050    Remove make_in_base_dir and run_cmd fields from project structure.
2051    Replaced by build functionality.  Remove incorrect use in src/build.c
2052    build_run_cmd function.
2055 2009-07-28  Lex Trotman  <elextr(at)gmail(dot)com>
2057  * src/project.h, src/project.c
2058    Removed unused project_get_make_dir function, this is now per
2059    command.
2062 2009-07-28  Lex Trotman  <elextr(at)gmail(dot)com>
2064  * src/build.c, src/build.h, src/project.c, src/keyfile.c, src/filetypes.c
2065    Fix some more warnings.
2066    Fix commented out execute/stop toolbar code in build.c.
2067    Add extra plugins documentation for GBO_TO_CMD and GBO_TO_GBG macros.
2068    Changed build.h api so all functions prefixed with build_.
2071 2009-07-27  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2073  * src/build.c, src/build.h, src/project.c:
2074    Fix some gcc warnings with '-Wall -W -ansi' enabled.
2077 2009-07-25  Lex Trotman  <elextr(at)gmail(dot)com>
2079  * src/build.c
2080    Fixed leaks and crashes due to inconsistent use of static vs dynamic strings
2081    when reading old format configuration & project files.
2082  * src/build.c, src/project.c
2083    Fixed GLib array assertion warnings when no project filetypes are
2084    available to be saved.
2086 2009-07-24  Lex Trotman  <elextr(at)gmail(dot)com>
2088  * src/build.c
2089    Fix build warnings.
2092 2009-07-22  Lex Trotman  <elextr(at)gmail(dot)com>
2094  * src/build.h, src/build.c, src/project.c
2095    Created and documented plugins interface to build menu.
2096    Factored out new get_cmd_group function.
2097    Changed name of remove_command function to be consistent with the rest
2098    of the interface & changed calls in project.c.
2099  * src/Makefile.am, wscript
2100    Added build.h to installed files lists.
2102 2009-07-20  Lex Trotman  <elextr(at)gmail(dot)com>
2104  * doc/geany.txt
2105    Updated manual to match build-menu capability.
2108 2009-07-19  Lex Trotman  <elextr(at)gmail(dot)com>
2110  * src/build.c, src/build.h
2111    Added set_build_non_ft_wd_to_proj() for use by project dialog.
2112    Improved interpretation of run_in_base_dir from old [build-settings]
2113    Added spacing to build commands dialog
2114  * src/project.c
2115    Removed run in base path option from project dialog and added button to
2116    set working directories to d the same.
2119 2009-07-18  Lex Trotman  <elextr(at)gmail(dot)com>
2121  * src/build.c
2122    Re-incorporated toolbar changes in trunk accidently excluded in merge
2124 2009-07-17  Lex Trotman  <elextr(at)gmail(dot)com>
2126  * src/build.c
2127    Fixed substitute %f etc in commands
2128    Fixed potential leak in build_replace_placeholder
2129    Fixed leak in prepare_run_script (Thanks for patch Thomas)
2130    Fixed build_replace_placeholder to not require document.
2132 2009-07-17  Lex Trotman  <elextr(at)gmail(dot)com>
2134  * src/build.c, src/build.h, src/filetypes.h, src/filetypes.c
2135    Fixed crash and lots of warnings, deleted some commented out code.
2136  * geany.glade, src/keyfile.c, src/prefs.c, src/prefs.h, src/project.c
2137    Removed make command from preferences and associated code
2139 2009-07-16  Lex Trotman  <elextr(at)gmail(dot)com>
2141  * src/build.c, src/build.h
2142    Incorporated patch for working directory field (thanks Thomas)
2143    Removed run_in_base_dir option and associated code that it replaces
2144    Improved handling of old config files and mapping to new ones.
2146 2009-07-15  Lex Trotman  <elextr(at)gmail(dot)com>
2148  * src/build.h, src/build.c
2149    Changed to itterate over entries in build commands dialog to allow
2150    additional fields to be added
2151    Implement support for multiple run commands
2152  * data/filetypes.latex
2153    Implement configured commands and labels for latex.
2156 2009-07-14  Lex Trotman  <elextr(at)gmail(dot)com>
2158  * src/build.h, src/build.c
2159    added dialog support for error regular expressions from multiple sources
2160    and storing and loading them
2161    fixed some typos and memory leaks
2162  * src/filetypes.c, src/filetypes.h, project.c
2163    added support for using error regexes from multiple sources
2166 2009-07-11  Lex Trotman  <elextr(at)gmail(dot)com>
2168  * src/filetypes.h, src/filetypes.c, src/build.c, src/build.h,
2169    src/project.c
2170    Removal of build menu item source made redundant by the following fix
2171  * src/build.c
2172    Corrected priority oreder and loading of filetype dependent build
2173    menu items saved in the project file.  Added print routine for
2174    debugging command sources and priorities set compile symbol
2175    PRINTBUILDCMDS true to enable
2177 2009-07-10  Lex Trotman  <elextr(at)gmail(dot)com>
2179  * src/build.c
2180    fixed problem loading old format filetype files, some formatting fixes
2181    fixed saving new format files
2182    added operation for clear button on build commands dialog
2183  * src/filetypes.c
2184    fixed loading and saving filetype files
2187 2009-07-09  Lex Trotman  <elextr(at)gmail(dot)com>
2189 Configurable Build Menu Changes
2191  * doc/geany.html, doc/geany.txt:
2192    Updated build menu section to new functionality
2193  * src/build.h, src/build.c:
2194    Largly re-written, configurability added, Latex code removed
2195  * src/filetypes.h, src/filetypes.c:
2196    Filetype structure updated to add new command pointers, configuration
2197    load and store changed
2198  * src/keybindings.h, src/keybindings.c:
2199    Changed to address new command storage structure.
2200  * src/keyfile.c:
2201    Changed to load/store new configuration.
2202  * src/main.c:
2203    Minor change to initialisation order.
2204  * src/msgwindow.c:
2205    Changed to address new menu item storage structure.
2206  * src/project.h, src/project.c:
2207    Changed to load/store the new configuration info.
2209 2009-08-24  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2211  * src/keybindings.c, src/keybindings.h, src/plugindata.h,
2212    src/pluginutils.c, src/plugins.c, src/pluginutils.h,
2213    doc/pluginsymbols.c, plugins/geanyfunctions.h,
2214    plugins/splitwindow.c:
2215    Update PLUGIN_KEY_GROUP() macro so it doesn't allocate any
2216    GeanyKeyBinding or GeanyKeyGroup structs, so we don't need to break
2217    the ABI when adding fields to them.
2218    Add plugin_set_key_group() for plugins to dynamically set a
2219    keybinding group (e.g. for the Lua script plugin). Used in Split
2220    Window plugin as an example.
2221    Improve keybinding docs a little.
2224 2009-08-20  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2226  * doc/Doxyfile.in, plugins/geanyfunctions.h, plugins/genapi.py:
2227    Add geanyfunctions.h to API docs.
2228  * plugins/splitwindow.c:
2229    Set the cursor color for the split window.
2232 2009-08-18  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2234  * src/callbacks.c:
2235    Fix 'Open Selected File' for unsaved new documents.
2236  * src/keybindings.c, src/keybindings.h, src/prefs.c:
2237    Fix updating main menu accelerators after changing keybindings
2238    (thanks to Lex Trotman).
2239  * src/callbacks.c:
2240    Fix using 'Insert date' keybinding when a custom date string has
2241    not been set.
2242  * src/pluginprivate.h, src/pluginutils.c, src/plugins.c:
2243    Merge Plugin and GeanyPluginPrivate structs.
2246 2009-08-18  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2248  * src/keybindings.c:
2249    Fix non-working Home and End keys on numpads.
2252 2009-08-17  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2254  * doc/geany.txt, doc/geany.html, NEWS:
2255    Add 'Scope autocompletion' section.
2256    Add 'Tools menu items' section to explain configuration files
2257    submenu, reload configuration item.
2258    Minor updates/fixes.
2261 2009-08-16  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2263  * src/document.c:
2264    Add a translation hint to an ambiguous format string.
2265  * src/Makefile.am:
2266    Add missing include path to fix 'make distcheck'.
2267  * src/win32.c:
2268    Fix opening of local files in the browser on Windows.
2269  * New release: Geany 0.18 "Kaine".
2270  * configure.in, geany.nsi, geany_private.rc, win32-config.h, wscript,
2271    src/geany.h, doc/geany.html, doc/geany.txt:
2272    Post-release version bump.
2275 2009-08-15  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2277  * src/editor.c:
2278    Temporarily disable reshowing calltips when the autocompletion
2279    list was closed implicitly by not choosing an item to fix
2280    problems with wrongly displayed calltips.
2281  * src/template.c:
2282    Add missing 'coding' cookie to the Python filetype template.
2283  * doc/images/pref_dialog_edit_completions.png,
2284    doc/images/pref_dialog_toolbar.png:
2285    Update images for Geany 0.18.
2288 2009-08-13  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2290  * wscript:
2291    Add command '--hackingdoc' to create the HTML form of the
2292    HACKING file.
2295 2009-08-12  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
2297  * po/pt_PT.po, po/LINGUAS:
2298    Added a first Portugese (Portugal) translation based on work done at
2299    launchpad by e.g. André Glória and Alexandre Jesus.
2300  * src/main.c: Fix a minor typo on --help call.
2303 2009-08-11  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2305  * src/highlighting.c:
2306    Call get_keyfile_wordchars() in highlighting_init_styles().
2309 2009-08-09  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2311  * data/filetypes.ada:
2312    Add missing file.
2313  * src/keybindings.c:
2314    Switching notebook tabs now works for the currently used notebook
2315    widget instead of always using the documents notebook.
2316  * src/document.c, src/document.h, src/documentprivate.h,
2317    doc/plugins.dox:
2318    Small corrections to some API docs.
2321 2009-08-02  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2323  * src/build.c, src/win32.h, src/win32.c:
2324    Expand system environment variables (%variableName%) on Windows when
2325    running Build commands.
2328 2009-07-30  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2330  * src/keybindings.c:
2331    Rename 'Reflow lines/paragraph' to 'Reflow lines/block' because in
2332    future using an indent block is more useful e.g. for ChangeLog
2333    files.
2334  * scintilla/LexMarkdown.cxx, scintilla/makefile.win32,
2335    scintilla/include/SciLexer.h, scintilla/include/Scintilla.iface,
2336    scintilla/KeyWords.cxx, scintilla/Makefile.am, src/highlighting.c,
2337    src/about.c, src/filetypes.c, src/filetypes.h, THANKS,
2338    tagmanager/parsers.h, tagmanager/makefile.win32,
2339    tagmanager/markdown.c, tagmanager/Makefile.am, wscript:
2340    Add Markdown filetype (patch by Jon Strait, thanks).
2341  * src/pluginprivate.h, src/pluginutils.c, src/plugins.c:
2342    Fix disconnecting plugin signal id when not using geany_object.
2343  * src/filetypes.c:
2344    Add filetype_make_title() instead of using:
2345    ft->title = g_strdup_printf(_("%s source file"), ft->name);
2346    It also supports "%s file" strings.
2349 2009-07-29  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2351  * src/pluginprivate.h, src/utils.h, src/plugindata.h,
2352    src/stash.c, src/pluginutils.c, src/plugins.c, src/pluginutils.h,
2353    doc/pluginsymbols.c, doc/plugins.dox, plugins/geanyfunctions.h,
2354    plugins/filebrowser.c:
2355    Add plugin_signal_connect() for connecting plugin signals at
2356    runtime and also for connecting to any GObject signal.
2357    Add 'Plugin Utility Functions' on main page.
2358    Add foreach_array() macro.
2359  * src/keybindings.c, src/sciwrappers.c, src/sciwrappers.h,
2360    src/document.c, src/editor.c:
2361    Rename 3 sci functions to sci_set_target_start(),
2362    sci_set_target_end(), sci_replace_target() to match the SCI_
2363    message name.
2366 2009-07-28  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
2368  * wscript: Fix compiling error with waf.
2371 2009-07-28  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2373  * src/pluginprivate.h, src/makefile.win32, src/plugindata.h,
2374    src/pluginutils.c, src/plugins.c, src/pluginutils.h,
2375    src/Makefile.am, wscript:
2376    Move plugin_* utility functions to pluginutils.c.
2377    Add pluginprivate.h.
2378  * src/editor.c:
2379    Fix reshowing calltip in the wrong document.
2382 2009-07-25  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2384  * doc/geany.txt, doc/geany.html:
2385    Add some general information about auto-completion capabilities
2386    (patch by Lex Trotman, thanks).
2389 2009-07-25  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
2391  * po/LINGUAS, po/sl_SI.po, THANKS, src/about.c:
2392    Added a first Slovenian translation. Thanks to Joze Klepec.
2395 2009-07-24  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2397  * src/highlighting.c:
2398    Use full styleset_foo[_init] function name as argument to
2399    init_styleset_case() and styleset_case() macros so it's easier to
2400    understand the code.
2401  * src/keybindings.c, src/keybindings.h, src/sciwrappers.c,
2402    src/sciwrappers.h, src/editor.c, src/editor.h, THANKS,
2403    doc/geany.txt, doc/geany.html:
2404    Add 'Reflow lines/paragraph' keybinding, defaults to Ctrl-J.
2405    Heavily based on a patch by Eugene Arshinov (thanks).
2406    Add sci_lines_split(), sci_lines_join(), sci_text_width(),
2407    editor_strip_line_trailing_spaces().
2410 2009-07-24  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2412  * src/editor.c:
2413    Attempt to fix reshowing calltips after the autocompletion list
2414    has been shown.
2415    Reshow calltips also when the autocompletion list was closed
2416    implicitly by not choosing an item.
2418 2009-07-23  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2420  * src/utils.c, src/utils.h, src/toolbar.c, src/plugindata.h,
2421    plugins/splitwindow.c:
2422    Change utils_str_remove_chars() to work in place; fix allocating on
2423    the stack (the string length could exhaust the stack size).
2424  * src/templates.c, src/build.c, src/utils.c, src/utils.h,
2425    src/printing.c, src/callbacks.c:
2426    Rename utils_str_replace() utils_str_replace_all(), setting a
2427    'gchar **haystack' argument instead of returning a new string.
2428  * src/editor.c:
2429    For the Tabs indent type, remove spaces when unindenting (only) if
2430    there are no tabs on the line.
2431    Group undo actions for (un)indenting of multiple lines.
2432  * src/document.c, src/editor.c:
2433    Fix scrolling horizontally after finding a search match with the
2434    search bar or Find Next/Previous which is off-screen.
2435  * src/keybindings.c:
2436    Fix GLib warning when pressing a key with no documents open.
2439 2009-07-21  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2441  * src/utils.c:
2442    Start unifying usage of @a and @c markup elements in API docs,
2443    to be continued.
2444  * src/main.c, src/prefs.c, src/toolbar.c, src/toolbar.h:
2445    Show/hide the toolbar without a restart when the setting in the
2446    preferences dialog is changed (closes #2824785).
2447  * src/dialogs.c, src/document.c, src/editor.c, src/encodings.c,
2448    src/filetypes.c, src/keybindings.h, src/main.c, src/msgwindow.c,
2449    src/navqueue.c, src/plugindata.h, src/prefs.c, src/toolbar.c,
2450    src/toolbar.h:
2451    Continue unifying usage of @a and @c markup elements in API docs.
2454 2009-07-21  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2456  * src/document.c:
2457    Remove relative/untidy path elements when creating new documents
2458    with a filename (e.g. from the command-line) (#2823998).
2461 2009-07-20  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2463  * src/callbacks.c:
2464    Disable 'Recent Projects' menu item if the list of recent projects
2465    is empty.
2466  * src/win32.c:
2467    Fix some harmless compiler warnings.
2468  * plugins/geanyfunctions.h, plugins/splitwindow.c, src/plugindata.h,
2469    src/plugins.c, src/utils.c, src/utils.h:
2470    Move utils_str_remove_chars() from the plugins/splitwindow.c to
2471    src/utils.c and add it to the plugin API.
2472    Make utils_str_remove_chars() work on a new copy of the input string
2473    instead of modifying it in place.
2474  * src/toolbar.c:
2475    Remove underscores from the toolbar items labels.
2476  * src/utils.c:
2477    Fix typos.
2478  * plugins/splitwindow.c:
2479    Fix broken 'Show the current document' tool button icon.
2482 2009-07-20  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2484  * src/treeviews.c, src/callbacks.c, src/stash.c, src/stash.h,
2485    src/keyfile.c:
2486    Add stash_group_add_widget_property() so we can save any widget's
2487    read/write properties.
2488    Use Stash for ui_prefs.sidebar_page setting.
2489  * src/utils.h, src/prefs.c, src/keyfile.c, src/symbols.c:
2490    Make foreach_ptr_array() use an integer argument for its
2491    implementation, as this is more useful potentially than a gpointer*
2492    argument, and more straightforward.
2493    Add foreach_c_array(), foreach_ptr_array() to API.
2494  * src/utils.c, src/utils.h, src/document.c:
2495    Remove relative/untidy path elements when opening documents (closes
2496    #2823998).
2497  * src/treeviews.c:
2498    Fix showing project name for documents list files with no
2499    subdirectory (oops).
2500  * src/dialogs.c:
2501    Fix checking whether to overwrite when using the Rename button in
2502    the 'Save As' dialog.
2505 2009-07-19  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2507  * src/dialogs.c:
2508    Don't use the main window as parent for dialog boxes if it is not
2509    yet realised.
2510    Set titles for message dialogs.
2513 2009-07-18  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2515  * src/toolbar.c:
2516    Display item labels instead of raw names in the toolbar editor.
2517    Apply changes in the toolbar editor instantly.
2518    Show icons in the toolbar editor.
2519    Speed up toolbar editor dialog creation.
2520  * src/templates.c:
2521    Improve inserting of comment templates like File header or licence
2522    notices. The comment information are now read from the filetype
2523    configuration files.
2525 2009-07-16  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2527  * src/document.c:
2528    Enable file monitoring for files which are written to disk by Geany
2529    for the first time.
2530  * src/filetypes.c:
2531    Fix broken special case handling when detecting filetypes from a
2532    shebang or other special file headers.
2535 2009-07-16  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2537  * src/search.c:
2538    Make Mark All keybinding clear search highlighting when there's no
2539    current word.
2540  * src/search.c:
2541    Fix wrong match length when using Mark with regex.
2542  * src/geanyobject.c, src/geanyobject.h, src/treeviews.c,
2543    src/keyfile.c, src/main.c:
2544    Add 'Show Paths' documents list popup item.
2545    Add "load_settings" core-only signal emitted just after loading
2546    main keyfile settings; useful to delay building UI elements until
2547    settings have been read.
2548  * src/treeviews.c:
2549    Fix GTK warning when right-clicking on default tag tree.
2550  * src/treeviews.c, src/treeviews.h, src/keyfile.c, src/main.c:
2551    Add treeviews_finalize().
2552    Remove tv.popup_openfiles field.
2555 2009-07-15  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2557  * src/highlighting.c:
2558    Fix building on GTK 2.8 (patch by Eugene Arshinov, thanks).
2561 2009-07-14  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2563  * src/utils.c:
2564    Quote the uri before passing it to the browser when opening a
2565    website (closes #2818635).
2566  * src/win32:
2567    Fix broken 'builtin' Run command for HTML files on Windows.
2570 2009-07-14  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2572  * src/editor.c:
2573    Properly fix wrong brace highlighting of non-brace character.
2574  * src/editor.c:
2575    Allow autocompletion in Perl double-quoted strings.
2576    Don't autocomplete in Perl single-quoted strings (closes #2821061).
2577    Don't autocomplete in Perl q() strings.
2578  * data/filetypes.common:
2579    Make Mark highlighting brighter.
2580  * src/interface.c, doc/geany.txt, doc/geany.html, geany.glade:
2581    Use hyphen for auto-feature terms.
2582  * src/plugindata.h, src/geany.h, src/filetypes.c, src/filetypes.h,
2583    src/document.h, src/main.c:
2584    Add documents_foreach() API macro that skips invalid docs.
2585    Make filetypes[], documents[] part of the API again.
2586    Add GEANY() macro for sharing geany symbols between API and core.
2587  * src/plugindata.h, src/plugins.c, doc/plugins.dox,
2588    plugins/saveactions.c, plugins/export.c, plugins/geanyfunctions.h,
2589    plugins/demoplugin.c, plugins/filebrowser.c, plugins/splitwindow.c,
2590    plugins/htmlchars.c, plugins/geanyplugin.h, plugins/Makefile.am,
2591    plugins/classbuilder.c, wscript:
2592    Add geanyplugin.h single include for plugin API; update all core
2593    plugins to use it.
2594    Add sci_set_font() to API.
2595    Update plugin howto.
2596  * src/filetypes.c, src/filetypes.h:
2597    Remove filetypes_foreach_named().
2600 2009-07-13  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2602  * src/highlighting.c, src/about.c, src/filetypes.c, src/document.c,
2603    src/document.h, src/main.c, THANKS:
2604    Apply patch from Eugene Arshinov to reload color schemes via menu
2605    (thanks).
2606  * src/filetypes.c:
2607    Reload filetypes.common after saving it.
2608  * src/editor.c:
2609    Improve wrong brace highlighting of non-brace character.
2612 2009-07-10  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2614  * src/editor.c:
2615    Delay highlighting matching braces by 100ms, which speeds up
2616    scrolling with the arrow keys.
2617  * src/keybindings.c, src/keybindings.h, src/search.c, src/search.h:
2618    Add 'Mark All' keybinding.
2619  * tagmanager/diff.c:
2620    Show relative paths in diff filename tags.
2623 2009-07-09  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2625  * src/highlighting.c:
2626    Fix setting keyword list 'classes' for Haxe
2627    (pointed out by Andreas Mokros, thanks).
2630 2009-07-09  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2632  * src/interface.c, src/keyfile.c, src/editor.c, src/editor.h,
2633    doc/geany.txt, doc/geany.html, geany.glade:
2634    Add 'Drop rest of word on completion' pref.
2635  * src/editor.c, doc/geany.txt, doc/geany.html:
2636    If autocompletion is already visible when forcing completion, show
2637    document word completion instead of tag completion.
2638    Docs: Minor edits of related prefs items.
2639  * src/printing.c, src/dialogs.c, src/dialogs.h, src/plugindata.h:
2640    Add warning when printing and editor font is not monospaced.
2641    Fix using GtkMessageType instead of gint param for
2642    dialogs_show_msgbox*().
2643    Add missing G_GNUC_PRINTF macro check to API dialog funcs.
2644  * src/editor.c:
2645    Support 'tab indents, space aligns' style for auto-indentation
2646    (closes #2789109).
2649 2009-07-08  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2651  * src/document.c, src/documentprivate.h:
2652    Rework the GIO based file monitoring code. Now it is used only
2653    to indicate a possible change of the file, the real check if the
2654    file has been changed is performed by stat().
2655  * data/filetypes.common, doc/geany.txt, src/highlighting.c:
2656    Add style 'line_height' to increase the line height.
2657    Add style 'marker_mark' and change style 'marker_search' to
2658    define the style used for marked search results.
2659  * doc/geany.txt, doc/geany.html:
2660    Add the new 'Autocomplete all words in document' pref to the docs.
2663 2009-07-08  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2665  * src/interface.c, src/keyfile.c, src/editor.c, src/editor.h,
2666    doc/geany.txt, doc/geany.html, geany.glade, TODO:
2667    Add 'Autocomplete all words in document' pref.
2668    Use 'autocompletion' in dialog and docs, not 'auto completion'.
2669  * src/editor.c:
2670    Fix limiting number of word completion entries too much.
2671  * src/editor.c, TODO, icons/16x16/classviewer-var.xpm,
2672    icons/16x16/classviewer-method.xpm, icons/16x16/Makefile.am:
2673    Show autocompletion icons for tag symbols - for now only tags with
2674    an arglist have the 'function/method' icon, all others have the
2675    'variable' icon.
2676    Note: XPMs were created from the PNGs with the ImageMagick 'convert'
2677    program.
2678  * src/highlighting.c:
2679    Highlight D WYSIWYG backtick `strings` and r"strings" (closes
2680    #1895745).
2683 2009-07-06  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2685  * src/highlighting.c, src/utils.h, plugins/splitwindow.c:
2686    Fix removing underscores in translated string using no_underscore()
2687    macro.
2688    Set a tooltip for the Split Window plugin's Show Current tool button.
2689    Add utils_strdupa() macro.
2690  * src/interface.c, geany.glade:
2691    Use stock Select All icon now we have >= GTK 2.8.
2692  * src/treeviews.c:
2693    Fix using project name for document items that start with the
2694    project base path but don't match it e.g. ".../geany-plugins"
2695    instead of ".../geany" when project name is 'geany'.
2698 2009-07-04  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2700  * src/build.c:
2701    Fix warnings when the toolbar does not contain the Run button.
2702  * tagmanager/lua.c:
2703    Fix wrong parsing of complex expressions in the Lua parser.
2704  * src/editor.c, src/geany.h, src/keybindings.c, src/plugindata.h,
2705    src/utils.c:
2706    Remove unnecessary enums.
2707  * scintilla/*, scintilla/include/*, src/plugindata.h:
2708    Update Scintilla to version 1.79.
2709  * src/document.c, src/editor.c, src/sciwrappers.c, src/sciwrappers.h,
2710    src/search.c:
2711    Use the new Scintilla struct names prefixed with 'Sci_'.
2712  * TODO, data/filetypes.common, doc/geany.html, doc/geany.txt,
2713    src/highlighting.c:
2714    Add second argument to the 'line_wrap_indent' styling setting to
2715    control the new Scintilla indentation mode for wrapped lines.
2716  * src/toolbar.c:
2717    Properly close the toolbar editor on delete-events.
2718    Fix warnings and possible crashes in the toolbar editor when the list
2719    of displayed toolbar items is empty.
2720  * data/filetypes.tcl:
2721    Update Tcl keywords for Tcl 8.6 (patch by Witek Mozga, thanks).
2722  * src/plugins.c:
2723    Make the plugin manager dialog a bit bigger.
2726 2009-06-30  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2728  * doc/geany.html, doc/geany.txt:
2729    Fix wrong default values for the 'Show Calltip' keybinding.
2732 2009-06-29  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2734  * data/filetypes.tcl, src/symbols.c:
2735    Fix duplicate "context_action_cmd" key.
2736    Use different icons for "Methods" and "Procedures" in the symbol
2737    list for Tcl files.
2738  * src/filetypes.c:
2739    Fix a small memory leak.
2740  * doc/geany.html, doc/geany.txt, src/editor.c, src/keybindings.c,
2741    src/keybindings.h, src/plugindata.h:
2742    Make the Scintilla keybindings 'Delete to end of line' and
2743    'Go to end of display line' configurable.
2744  * geany.nsi:
2745    Fix a typo (closes #2813624).
2748 2009-06-28  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2750  * tagmanager/tcl.c, src/symbol.c:
2751    Improve parsing of Tcl files (parsing new Tcl8.6 style classes,
2752    methods and namespaces).
2753    Patch by Witek Mozga, thanks.
2756 2009-06-25  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2758  * data/ui_toolbar.xml, doc/geany.txt, doc/geany.html, src/ui_utils.c,
2759    src/toolbar.c, src/toolbar.h:
2760    Remove ui_toolbar.xml Configuration Files menu item.
2761    Add a real toolbar editor dialog.
2762  * geany.glade, src/callbacks.c, src/callbacks.h, src/interface.c,
2763    src/prefs.c:
2764    Add a button in the preferences dialog and an item for the toolbar
2765    popup menu to run the toolbar editor dialog.
2768 2009-06-25  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2770  * src/dialogs.c:
2771    Fix Gtk NULL warning with gtk_file_chooser_set_current_folder().
2772    Fix using locale encoding for default Save As dialog path.
2773  * src/editor.c:
2774    Beep when trying to activate the '...' autocompletion item.
2775    Limit (forced) document word completion to
2776    autocompletion_max_entries.
2777    Beep if no completions are shown when forcing autocompletion.
2780 2009-06-24  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2782  * data/ui_toolbar.xml, src/toolbar.c:
2783    Add 'Build' toolbar button to the default layout.
2786 2009-06-24  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2788  * src/editor.c:
2789    If forcing autocompletion and there's nothing else to show, complete
2790    from words in the current document (using code from Enrico's
2791    'AutoComplete Test' plugin).
2794 2009-06-23  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2796  * src/plugins.c:
2797    Add debug message if plugin has not set a name for its keybinding
2798    group.
2799  * data/filetype_extensions.conf:
2800    Add *.m4 for shell scripts.
2803 2009-06-22  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2805  * src/highlighting.c, doc/geany.txt, doc/geany.html,
2806    data/filetypes.common, TODO:
2807    Make filetypes.common named styles use the "default" named style for
2808    all missing style fields.
2809    Set named styles to usually leave the background style empty. This
2810    currently allows C-like filetypes to have a common default
2811    background color.
2812    Allow hard-coded colors to use -1 for the default color.
2813    Add some highlighting style examples to the manual.
2816 2009-06-21  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2818  * src/templates.c:
2819    Create initial template files with proper platform-specific line
2820    ending characters.
2823 2009-06-20  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2825  * data/ui_toolbar.xml, doc/geany.txt, src/build.c,
2826    src/geanymenubuttonaction.c, src/geanymenubuttonaction.h, src/main.c,
2827    src/plugins.c, src/templates.c, src/toolbar.c, src/toolbar.h,
2828    src/ui_utils.c, src/ui_utils.h:
2829    Instantly reload (i.e. rebuild) the toolbar when ui_toolbar.xml is
2830    saved within Geany.
2831    Refactor some related code.
2832  * tagmanager/conf.c:
2833    Strip trailing spaces from "Key" tags.
2834  * geany.nsi:
2835    Quote the full filename to the Geany executable when creating the
2836    "Open with Geany" context menu item.
2837  * plugins/splitwindow.c:
2838    Avoid using deprecated GTK API.
2839  * src/log.c, src/main.c:
2840    Properly clean up the logging mechanism.
2841  * src/build.c:
2842    Fix LaTeX view commands on Windows (part of #2807688).
2843  * src/prefs.c:
2844    Add a popup menu for the keybinding list in the preferences dialog
2845    to easily expand and collapse all groups.
2846    Refactor the keybindings code for the preferences dialog, prefix all
2847    related functions.
2848  * src/main.c, src/ui_utils.c, src/ui_utils.h:
2849    Init stock items before creating the toolbar (closes #2809324).
2850  * wscript:
2851    Generate the geany.pc file also on Windows.
2852  * src/ui_utils.c:
2853    Invert the logic to determine which Save All we want to use:
2854    Use the Tango like icon only for the Tango theme and the Gnome / GTK
2855    like icon for any other themes.
2858 2009-06-18  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2860  * src/highlighting.c, README.Packagers, HACKING:
2861    Remove gsd_* default styles, use named styles instead.
2862    Note: this relies on filetypes.common being installed.
2863    Add load_style_entries(), which makes style initialization
2864    simpler, used in styleset_c_like_init().
2867 2009-06-17  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2869  * src/win32.c:
2870    Prevent possible crash on Windows when not setting an initial
2871    directory for native File Open/Save dialogs.
2872  * data/filetypes.xml, src/highlighting.c:
2873    Add style 'jscript_regex' for filetype HTML
2874    (patch by Chris Macksey, thanks).
2877 2009-06-17  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2879  * src/filetypes.h, src/document.c, src/document.h, src/ui_utils.c:
2880    Make GeanyDocument::file_type always be non-NULL, even for a new
2881    document with no filetype set.
2882  * src/editor.c:
2883    Only autocomplete scope for scopes matching the current filetype's
2884    language.
2885  * data/filetypes.java, data/filetypes.cpp, data/filetypes.vala,
2886    data/filetypes.haxe, data/filetypes.common, data/filetypes.glsl,
2887    data/filetypes.actionscript, data/filetypes.cs,
2888    data/filetypes.ferite, data/filetypes.c, data/filetypes.d,
2889    data/filetypes.javascript, HACKING:
2890    Make C++, D lexer filetypes use named styles (apart from uuid,
2891    verbatim, regex styles).
2894 2009-06-16  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2896  * src/dialogs.c:
2897    Don't explicitly change the current directory of the Save As dialog
2898    so that it uses the last used directory.
2901 2009-06-14  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2903  * src/encodings.c, src/encodings.h, src/plugindata.h:
2904    Add Japanese encoding "CP932" (patch by Ryūsei Yamaguchi, thanks).
2905  * src/editor.c:
2906    Remove dead code.
2907    When completing from the macro list, put the cursor after
2908    the inserted text.
2911 2009-06-12  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2913  * tagmanager/pascal.c:
2914    Fix type definitions being parsed as functions.
2915  * src/editor.c:
2916    Don't autocomplete in unterminated strings as well.
2917  * src/templates.c, src/utils.h, src/dialogs.c, src/plugindata.h,
2918    src/filetypes.c, src/ui_utils.c, plugins/saveactions.c:
2919    Remove data_ptr argument to foreach_[s]list() macros, as using
2920    node->data is enough sometimes; this makes the macro a bit more
2921    efficient too.
2922    Add foreach_[s]list() macros to the plugin API docs.
2925 2009-06-11  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2927  * scintilla/LexPascal.cxx:
2928    Backport fix from Scintilla CVS:
2929    Pascal lexer hanging on file that starts with 'interface' after
2930    whitespace.
2933 2009-06-11  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2935  * waf:
2936    Update Waf to 1.5.7.
2937  * wscript:
2938    Overwrite installation prefix on Windows only if it wasn't
2939    specified explicitly.
2942 2009-06-10  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2944  * src/editor.c:
2945    Display calltips for Pascal symbols in the Pascal way (#2803945).
2946  * tagmanager/pascal.c:
2947    Fix wrongly set return values for procedures (closes #2803945).
2948  * doc/Doxyfile.in, tagmanager/include/tm_work_object.h,
2949    tagmanager/include/tm_source_file.h,
2950    tagmanager/include/tm_workspace.h:
2951    Fix doxygen warnings.
2954 2009-06-10  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2956  * src/editor.c, tagmanager/include/tm_workspace.h,
2957    tagmanager/tm_workspace.c, TODO:
2958    Autocomplete scoped fields like struct members when typing '.' (and
2959    also '->' or '::' in C/C++).
2960    Save all tag types for C/C++ when generating a global tags file, so
2961    we can use autocompletion for structs also.
2962    Merge tm_workspace_find_scope_members(),
2963    tm_workspace_find_namespace_members() (currently not built) from
2964    Anjuta 2.24.1 tagmanager.
2967 2009-06-09  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2969  * tagmanager/pascal.c:
2970    Parse Pascal calltips (closes #2802640).
2973 2009-06-09  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2975  * src/filetypes.c, src/ui_utils.c:
2976    Add filetypes.common Configuration Files menu item.
2979 2009-06-08  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2981  * src/callbacks.c:
2982    Add backslash to the wordchars on Windows when using
2983    'Open Selected File'.
2984  * src/wscript:
2985    Add support (configure, build and install) for building on Windows
2986    and cross-compiling for Windows using the Waf build system.
2989 2009-06-05  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2991  * src/toolbar.c:
2992    Set status bar text instead of showing a dialog when saving
2993    ui_toolbar.xml because the user might save several times.
2994  * src/editor.c:
2995    Fix redrawing due to colourising just after the document is first
2996    drawn. Now colourising should happen before the first draw.
2997  * src/utils.c, src/highlighting.c, data/filetypes.common:
2998    Fix segfault on parsing a filetypes.* style definition that has < 4
2999    fields.
3000    Allow style definitions to have missing fields to use the default
3001    style fields.
3004 2009-06-05  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3006  * src/images.c, src/about.c, src/ui_utils.c, THANKS:
3007    Add a more Tango like icon for 'Save All' (by Jesse Mayes, thanks).
3008  * plugins/classbuilder.c:
3009    Fix wrongly created header guards when the class filenames contains
3010    dashes (patch by PCMan, thanks).
3011  * data/filetypes.matlab:
3012    Add build_settings section to allow executing Matlab scripts.
3013  * src/document.c:
3014    When closing a document, mark it as invalid before removing it from
3015    the documents notebook (this fixes wrong Save All button state when
3016    closing an unsaved document because the "switch-page" signal handler
3017    was using old data).
3020 2009-06-03  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
3022  * src/highlighting.c, doc/geany.txt, doc/geany.html:
3023    Support toggling bold/italic when using a named style, e.g.:
3024    commentdockeyword=commentdoc,bold,italic
3025    Improve named style docs.
3028 2009-06-01  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3030  * src/build.c, src/editor.c:
3031    Fix crashes when parsing the output of a compiler which reports
3032    errors on line 0.
3035 2009-06-01  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
3037  * src/highlighting.c:
3038    Support named styles also for filetypes.common [styling] entries.
3039  * doc/geany.txt, doc/geany.html, HACKING:
3040    Update docs for named styles in filetypes.* files.
3041  * src/symbols.c:
3042    Fix grouping symbol list children when parent name has "." character
3043    in for reStructuredText and Conf filetypes.
3044  * tagmanager/python.c:
3045    Fix grouping functions/classes under a nested function.
3048 2009-05-30  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3050  * geany.spec.in:
3051    Adjust icon paths (patch by Dominic Hopf, thanks).
3052  * doc/geany.txt, doc/geany.html, src/toolbar.c:
3053    Add 'Replace' toolbar button (closes #2798225).
3056 2009-05-30  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
3058  * src/utils.c, src/highlighting.c, TODO:
3059    Implement named styles support for filetypes.* using a
3060    filetypes.common [named_styles] section e.g.:
3061    foo=0xc00000;0xffffff;false;true
3062    bar=foo
3063    These can be used in e.g. filetypes.c as:
3064    comment=foo
3067 2009-05-28  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3069  * src/ui_utils.c:
3070    Fix wrong sensitiveness of the Redo buttons (closes #2797862).
3073 2009-05-28  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
3075  * THANKS, src/about.c, po/lb.po, po/LINGUAS:
3076    Added Luxembourgian translation. Huge thanks to Laurent Hoeltgen.
3079 2009-05-27  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3081  * src/build.c:
3082    Remove quote_executable() as it is not used anymore.
3083    When creating the geany_run_script.bat use the "%0" variable
3084    expansion and quote it for the "del" command (closes #2797172).
3085  * src/win32.c:
3086    On Windows, fallback to the literal build command line if searching
3087    for the command in the system path failed (related to #2795923).
3088    Properly terminate the resulting strings when reading the stdout
3089    and stderr of any spawned commands on Windows.
3092 2009-05-26  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3094  * src/win32.c:
3095    Use the wide character versions of native Windows File dialogs.
3096  * src/project.c:
3097    Fix wrong initialisation of the default project path button callback
3098    in the preferences dialog.
3099  * Makefile.am, configure.in, geany.nsi, geany.spec.in, wscript,
3100    geany_private.rc, icons/16x16/Makefile.am, icons/16x16/geany.png,
3101    icons/48x48, icons/48x48/Makefile.am, icons/48x48/geany.png,
3102    icons/Makefile.am, icons/geany.ico, icons/scalable,
3103    icons/scalable/Makefile.am, icons/scalable/geany.svg,
3104    src/makefile.win32:
3105    Move the icons geany.png and geany.ico into the icons directory.
3106    Add a 16x16 pixel Geany icon and the scalable SVG icon.
3107    Drop the pixmaps directory.
3110 2009-05-22  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
3112  * src/keybindings.c:
3113    Improve MRU document switching so there are no duplicates in the
3114    list and documents switched to whilst the dialog is open are
3115    ignored. Also beep when cycling through to the first document in the
3116    list.
3119 2009-05-21  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3121  * src/dialogs.c:
3122    Fix broken 'Cancel' button in the Save As dialog.
3125 2009-05-20  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
3127  * src/editor.c:
3128    Fix multiline indent when selection covers text on the last line.
3129  * src/notebook.c:
3130    Show current document in bold in tab popup menu.
3131  * src/editor.c, tagmanager/python.c, TODO:
3132    Parse Python calltips.
3135 2009-05-19  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3137  * src/symbols.c, tagmanager/python.c:
3138    Parse Python import statements to get symbol completion for the
3139    imported module names.
3140  * src/editor.c, src/editor.h:
3141    Make some only locally used functions static.
3142    Fix wrong sanity check.
3143  * src/build.c:
3144    Fix quoting the build command string on Windows (closes #2791769).
3145    This broke when we made build commands run synchronously on Windows,
3146    now we don't need to special quote the commands anymore.
3149 2009-05-19  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
3151  * src/editor.c:
3152    Drop rest of word to the right of cursor when autocompleting (do we
3153    need a pref for this?).
3156 2009-05-18  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
3158  * src/sciwrappers.c, src/sciwrappers.h, src/editor.c:
3159    Add sci_set_selection().
3160  * doc/geany.txt, doc/geany.html:
3161    Update manual for MRU switching.
3162  * src/callbacks.c, src/editor.c, src/editor.h:
3163    Make indenting with the Tabs indent type preserve spaces on the line,
3164    so it works for the 'tab indents, space aligns' formatting style.
3167 2009-05-17  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3169  * tagmanager/python.c:
3170    Fix missing symbols for variables when an equal sign is used
3171    in a comment on the same line as the variable declaration.
3172    Backport change from CTags SVN to keep the parser more in sync:
3173    Add support for Cython constructs to the Python parser.
3174  * src/search.c:
3175    Remember the additional Find in Files search flags at startup.
3176  * src/dialogs.c:
3177    Don't close the Save As dialog when saving the file didn't succeed.
3180 2009-05-13  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
3182  * src/keyfile.c:
3183    Remember scribble cursor position.
3184  * src/keybindings.c, TODO:
3185    Implement Most-Recently-Used document switching when pressing
3186    Ctrl-Tab keybinding. (It's probably not perfect, but works OK).
3189 2009-05-13  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
3191  * data/latex.tags: Added some more commands from unit.sty and
3192    moderncv.sty.
3195 2009-05-12  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
3197  * src/symbols.c, doc/geany.txt, doc/geany.html,
3198    tagmanager/makefile.win32, tagmanager/nestlevel.c,
3199    tagmanager/nestlevel.h, tagmanager/python.c, tagmanager/rest.c,
3200    tagmanager/Makefile.am, wscript:
3201    Merge unstable branch:
3202    Add reStructuredText scope information for tags (for symbol list
3203    grouping).
3204    Read custom system global tags files from $prefix/share/geany/tags;
3205    Closes #2778923.
3206    Show the number of tags in a user global tags file (instead of the
3207    running total) in the debug message.
3208    Also print debug messages when loading a tag file manually or for
3209    default global tags files e.g. python.tags.
3210  - code:
3211    Move NestingLevel tags code into a separate file, add functions.
3212  - docs:
3213    Add 'Installation prefix' section instead of quoting '/usr/local'
3214    each time.
3215    Update for custom system global tags files.
3218 2009-05-11  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3220  * src/highlighting.c:
3221    Unset maybe previously keywords when setting up Scintilla for
3222    XML files. This fixed wrong highlighting after switching back to
3223    filetype XML from another one.
3224  * src/utils.c:
3225    Use plain old fwrite() in utils_write_file(). g_file_set_contents()
3226    is only used when explicitly requested.
3227  * src/dialogs.c:
3228    Remove unnecessary call to g_intern_string() to fix build with
3229    GLib 2.8 (closes #2790051).
3232 2009-05-10  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3234  * src/ui_utils.c:
3235    Make the clear icon of entry fields act on the release event, not
3236    on the press event like for other buttons.
3237  * src/editor.c:
3238    Refactor some multiple used code into get_multiline_comment_style().
3239  * src/main.c:
3240    Create parent directories if necessary when checking for the
3241    configuration directory on startup (closes #2784577).
3244 2009-05-08  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3246  * plugins/filebrowser.c:
3247    When a filter is set, apply it only to files, not directories and
3248    apply the filter to the UTF-8 name of the file as the filter string
3249    itself is also UTF-8.
3250  * src/utils.c, src/utils.h, src/highlighting.c, src/printing.c:
3251    Add utils_color_invert() and use it in highlighting.c and printing.c.
3252  * scintilla/include/Scintilla.h, scintilla/scintilla_changes.patch:
3253    Backport change from Scintilla CVS:
3254    Change capitalisation of header file to suit cross-compilation on
3255    Unix for Windows.
3258 2009-05-03  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3260  * wscript, scintilla/*, scintilla/include/*, src/plugindata.h:
3261    Update Scintilla to version 1.78.
3262  * src/editor.c, src/highlighting.c:
3263    Update Pascal styles as they changed in Scintilla.
3266 2009-05-02  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3268  * src/printing.c:
3269    Ignore the invert syntax highlighting colours setting when printing
3270    to not print characters on a dark background (closes #2785244).
3271  * New release: Geany 0.17 "Wessex".
3272  * configure.in, geany.nsi, geany_private.rc, win32-config.h, wscript,
3273    src/geany.h, doc/geany.html, doc/geany.txt:
3274    Post-release version bump.
3277 2009-04-30  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3279  * src/callbacks.c, src/callbacks.h, src/main.c:
3280    Update the View->Fullscreen menu item when fullscreen state is
3281    changed externally (e.g. by the window manager).
3282  * src/project.c:
3283    Fix passing wrong pointer to the File Open dialog for the Run
3284    command in the Project Properties dialog.
3287 2009-04-27  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3289  * src/callbacks.c, src/keyfile.c, src/main.c, src/ui_utils.c,
3290    src/ui_utils.h:
3291    Remember the active sidebar page between sessions.
3292  * src/project.c:
3293    Add a recent project item after creating a new project.
3294  * tagmanager/ruby.c:
3295    Fix wrong parsing of string literals (closes #2781264).
3296  * src/treeviews.c:
3297    Fix setting focus to the editor widget after changing the selection
3298    in the symbol list.
3301 2009-04-25  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3303  * src/symbols.c:
3304    Prevent crashes when two or more top level items in the symbol
3305    list have the same name (closes #2778246).
3308 2009-04-24  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3310  * src/keybindings.c:
3311    Manually show the main notebook tab bar menu when Shift-F10 is
3312    pressed. This broke when we disabled the default GTK tab bar menu.
3313  * src/document.c:
3314    Fix a crash when USE_GIO_FILEMON is enabled at closing a document
3315    which was reloaded shortly before.
3316  * src/editor.c:
3317    When the editor menu is opened by the Menu key, use the text cursor
3318    position for retrieving the current word. This fixes disabled
3319    Go to Tag items in the menu (#2780044).
3320  * src/treeviews.c:
3321    Set the "ellipsize" property of GtkCellRendererText to automatically
3322    shorten the path and file names in the Documents list.
3323  * doc/geany.html, doc/geany.txt, src/build.h:
3324    Increase the amount of highlighted build error messages to 100.
3325    At least for LaTeX we need higher values as there is a lot of
3326    informative output before any errors are reported.
3327  * src/filebrowser.c:
3328    Use the startup path as the initial directory for the filebrowser
3329    plugin when no project and no files are opened
3330    (patch by Matias Gea, thanks; closes #2780521).
3333 2009-04-21  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3335  * src/dialogs.c, src/document.c, src/document.h, src/treeviews.c,
3336    src/utils.c, src/utils.h:
3337    Ellipsize tab labels and some status messages for very long
3338    filenames (closes #2777348).
3339  * src/plugins.c, src/plugindata.h, plugins/geanyfunctions.h:
3340    Add utils_str_middle_truncate() and
3341    document_get_basename_for_display() to the plugin API.
3342  * doc/geany.html, doc/geany.txt, src/toolbar.c:
3343    Add new toolbar element: Print (patch by Roland Baudin, thanks).
3344  * doc/geany.html, doc/geany.txt, src/document.c, src/document.h,
3345    src/keyfile.c:
3346    Add a hidden preference 'use_safe_file_saving' to save files to disk
3347    by creating a temporary file first. This has serious side effects,
3348    please read the documentation before enabling this.
3349  * src/build.c:
3350    Make build commands on Windows run synchronously to avoid problems
3351    with reading build commands' output.
3352  * doc/geany.html, doc/geany.txt, src/build.c, src/build.h:
3353    Limit the amount of highlighted build error messages in the
3354    Compiler window to 50 for performance reasons.
3357 2009-04-20  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3359  * src/callbacks.c, src/editor.c, src/keybindings.c, src/keybindings.h,
3360    src/prefs.c:
3361    Replace our own GEANY_KEYS_MODIFIER_MASK by
3362    gtk_accelerator_get_default_mod_mask() which gives the same result.
3363  * src/filetypes.c, src/symbols.c, tagmanager/Makefile.am,
3364    tagmanager/makefile.win32, tagmanager/parsers.h, wscript:
3365    Add a trivial symbol parser for NSIS files.
3368 2009-04-19  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3370  * src/dialogs.c:
3371    Hide the extra file open dialog options in an expander to make the
3372    dialog more compact by default and to provide more space for the
3373    file view.
3374    Remove the filename field as it is also provided by GTK itself with
3375    more features like auto-completion.
3376    Watch the 'show-hidden' property of the file chooser widget using
3377    GObject's "notify" signal which gives accurate results and remove
3378    the hack using the "selection-changed" signal.
3381 2009-04-17  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3383  * src/callbacks.c, src/callbacks.h, src/encodings.c, src/filetypes.c:
3384    Prevent double execution of radio menu item "activate" or "toggled"
3385    signal handlers.
3386    Move 'Set Encoding' callback function into encodings.c.
3389 2009-04-16  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3391  * src/project.c:
3392    Add some missing 'void's in function definitions.
3393    If the project base path is './', just use the path of the project
3394    config file instead of appending './'.
3395  * src/treeviews.c, src/project.c:
3396    When a project is loaded, replace the project base path with the
3397    project name in the Documents sidebar for parent items
3398    (closes #2723679).
3401 2009-04-15  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3403  * src/keyfile.c, src/keyfile.h, src/project.c:
3404    Fix duplicating the recent files and projects lists when closing
3405    a project.
3406  * src/build.c, src/callbacks.c, src/dialogs.c, src/document.c,
3407    src/editor.c, src/encodings.c, src/filetypes.c,
3408    src/geanymenubuttonaction.c, src/geanyobject.c, src/geanywraplabel.c,
3409    src/highlighting.c, src/keybindings.c, src/keyfile.c, src/main.c,
3410    src/msgwindow.c, src/navqueue.c, src/notebook.c, src/plugins.c,
3411    src/prefs.c, src/queue.c, src/sciwrappers.c, src/socket.c,
3412    src/symbols.c, src/templates.c, src/toolbar.c, src/tools.c,
3413    src/treeviews.c, src/ui_utils.c, src/utils.c, src/vte.c:
3414    Remove all G_LIKELY macros inside g_return_if_fail() statements as
3415    this is redundant.
3416    Remove many other G_LIKELY/G_UNLIKELY macros which doesn't make much
3417    sense to keep the code more readable.
3420 2009-04-09  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3422  * src/symbols.c:
3423    When updating global type definitions for opened documents, take
3424    also C++ namespace symbols into account and don't ignore symbols
3425    which are defined inside a scope.
3428 2009-04-09  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
3430  * src/plugins.c:
3431    Don't show 'plugin is not binary compatible' messages on the status
3432    bar, only the status window.
3435 2009-04-08  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3437  * src/socket.c:
3438    When opening files from a remote instance on X11, set the window
3439    server time to encourage window managers to pop up the main window
3440    (related to #2735467 and #2276179).
3441  * src/main.c:
3442    When finished sending filenames to a remote instance, notify the
3443    environment that we finished starting up.
3446 2009-04-08  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
3448  * src/ui_utils.h, src/utils.h, src/ui_utils.c:
3449    Sort Configuration Files menu.
3450    Add ui_menu_sort_by_label().
3451    Add foreach_list() macro.
3452  * src/editor.c:
3453    Fix autocompletion.
3456 2009-04-07  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3458  * src/main.c:
3459    Fix setting a wrong default window size when starting without an
3460    existing configuration.
3461  * src/editor.c, src/sciwrappers.c, src/sciwrapper.h:
3462    Make editor_highlight_braces() static.
3463    Remove unused wrapper functions.
3464  * src/editor.c, src/symbols.c, src/symbols.h:
3465    Prevent showing an empty macro list.
3466    Show only macros of the same filetype instead of all macros of all
3467    loaded filetypes.
3468  * src/ui_utils.c:
3469    Don't add opened project files to the GtkRecentManager.
3472 2009-04-07  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
3474  * src/editor.c:
3475    Add Configuration Files item for snippets.conf.
3476  * src/highlighting.c, src/symbols.c:
3477    Fix 2 old uses of filetype IDs.
3480 2009-04-06  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3482  * src/interface.c, src/printing.c, geany.glade:
3483    Minor string improvements (spotted by Jean-Philippe Moal, thanks).
3486 2009-04-05  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3488  * src/ui_utils.c:
3489    Add sanity checks in ui_lookup_widget() just to be safe.
3490  * THANKS, TODO, geany.glade, src/about.c, src/interface.c,
3491    src/keyfile.c, src/main.c, src/plugindata.h, src/project.c,
3492    src/project.h, src/ui_utils.c, src/ui_utils.h:
3493    Add "Recent Projects" menu to the Project menu
3494    (#2728630, patch by Elias Pschernig, thanks).
3495  * doc/geany.txt, doc/geany.html:
3496    Describe how to build Geany using the Waf build system.
3497  * src/build.c, src/callbacks.c, src/dialogs.c, src/document.c,
3498    src/document.h, src/editor.c, src/encodings.c, src/filetypes.c,
3499    src/geanymenubuttonaction.c, src/geanyobject.c, src/geanywraplabel.c,
3500    src/highlighting.c, src/keybindings.c, src/keyfile.c, src/log.c,
3501    src/main.c, src/msgwindow.c, src/navqueue.c, src/notebook.c,
3502    src/plugins.c, src/prefs.c, src/queue.c, src/sciwrappers.c,
3503    src/socket.c, src/symbols.c, src/templates.c, src/toolbar.c,
3504    src/tools.c, src/tools.h, src/treeviews.c, src/ui_utils.c,
3505    src/utils.c, src/utils.h, src/vte.c:
3506    Start using G_LIKELY/G_UNLIKELY macros to gain a little more
3507    performance when building the code with gcc.
3508  * src/highlighting.c:
3509    Fix typo in the G_LIKELY checks, introduced in last commit.
3510    Fix the size of the styles array.
3511  * src/document.c:
3512    Show a message dialog when renaming a file fails.
3515 2009-04-03  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3517  * src/build.c:
3518    Remove checks for the .pdf or .dvi files when viewing a LaTeX file
3519    (as we did for all other files in SVN r3382).
3522 2009-04-03  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
3524  * src/filetypes.c, doc/geany.txt:
3525    Move ActionScript to the Script group.
3526    Fix wording & typo.
3527  * src/templates.c, src/utils.h, src/highlighting.c, src/dialogs.c,
3528    src/plugindata.h, src/filetypes.c, src/filetypes.h, src/plugins.c,
3529    src/symbols.c, src/ui_utils.c, plugins/saveactions.c,
3530    plugins/htmlchars.c:
3531    Merge reorder-filetypes branch:
3532    Make GEANY_FILETYPES_NONE = 0, sort filetype IDs randomly (so we can
3533    append randomly without breaking the ABI).
3534    Make None filetype name = title = _("None").
3535    Add foreach_slist() macro.
3536    Add filetypes_by_title list to GeanyData for plugin API access
3537    - a list of filetype pointers, which includes the None filetype
3538    first. This list stays constant by the time plugins are initialized,
3539    so you can use e.g. g_slist_nth_data(filetypes_by_title, n) to
3540    index the sorted list.
3543 2009-03-31  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3545  * doc/geany.txt, doc/geany.html, src/main.c:
3546    Add widget names for the menubar and toolbar.
3547  * src/msgwindow.c:
3548    When hiding the messages window, set the input focus back to the
3549    editor widget (part of #1910393).
3552 2009-03-30  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3554  * scintilla/LexOthers.cxx, src/highlighting.c, tagmanager/conf.c:
3555    Backport recent changes from Scintilla CVS to add partial support
3556    for RFC2822 styled text using the Properties lexer.
3557    Ignore leading whitespace for config files and RFC2822 text.
3558  * data/filetypes.actionscript:
3559    Update/fix ActionScript keywords (patch by Chris Macksey, thanks).
3560  * THANKS, src/treeviews.c:
3561    Display file/directory icons in the Documents sidebar
3562    (patch by Simon Treny, thanks).
3565 2009-03-29  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3567  * doc/geany.html, doc/geany.txt, geany.glade, src/callbacks.c,
3568    src/callbacks.h, src/interface.c, src/keyfile.c, src/main.c,
3569    src/plugindata.h, src/prefs.c, src/toolbar.c, src/toolbar.h:
3570    Add an option to allow appending the toolbar to the main menu bar
3571    to save some vertical space.
3572    Allow setting toolbar icon size to very small (menu icon size).
3575 2009-03-27  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3577  * src/keyfile.c, src/utils.c, src/utils.h:
3578    Add utils_path_skip_root(), a relative path safe variant of
3579    g_path_skip_root (forgotten patch by Colomban Wendling, #2518658).
3580  * src/keyfile.c, src/main.c:
3581    Allow negative window coordinates when saving and restoring the
3582    position of the main window.
3583    Restore the main window position and size *after* the window has
3584    been realised to get it positioned accordingly
3585    (this affects at least Windows).
3588 2009-03-26  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3590  * src/main.c, src/plugins.c, src/win32.c, src/win32.h:
3591    Use g_win32_get_package_installation_directory_of_module() on Windows
3592    with newer GLib versions instead of deprecated API.
3593  * src/keybindings.c:
3594    Don't manage the last used documents list when quitting to prevent
3595    errors by accessing invalid memory (may close #2533990).
3598 2009-03-25  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3600  * src/build.c:
3601    Delete the geany_run_script.sh immediately after execution
3602    to prevent leaking old copies when the script was quit unexpectedly
3603    (closes #2710482, patch by Martin Olsson, thanks).
3604  * src/keyfile.c:
3605    Check whether skipping the root element of a document's filename
3606    succeeded and use the filename itself if not (e.g. on relative
3607    filenames, #2702844).
3608    Use the locale encoded filename when saving session files.
3609  * src/callbacks.c:
3610    Re-set the quitting status after all documents have been closed on
3611    quitting.
3614 2009-03-24  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
3616  * plugins/htmlchars.c:
3617    Remove usage of deprecated sci_get_selected_text() from plugin.
3620 2009-03-24  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3622  * src/callbacks.c:
3623    Delay disk file checks when switching between documents a little
3624    bit to avoid fast, unintentional page switching in some cases.
3625  * plugins/geanyfunctions.h, src/plugindata.h, src/plugins.c,
3626    src/sciwrappers.c, src/sciwrappers.h:
3627    Deprecate sci_get_text(), sci_get_selected_text() and
3628    sci_get_text_range().
3629    Add sci_get_contents(), sci_get_contents_range() and
3630    sci_get_selection_contents() as replacement functions to provide
3631    an easier and cleaner API (initial patch by Frank).
3634 2009-03-22  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3636  * tagmanager/css.c:
3637    Fix wrong parsing of CSS tags when the definition block starts on
3638    a new line (reported by Dominic Hopf, thanks).
3641 2009-03-20  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
3643  * plugins/htmlchars.c:
3644    Extend plugin by feature to bulk replace and replace on input for
3645    special characters to their HTML entities.
3648 2009-03-19  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3650  * src/build.c:
3651    Update build menu items after changing anything in the
3652    'Set Includes and Arguments' dialog.
3653    Disable Compile/Run buttons/menu items when Compile/Run commands are
3654    set but empty.
3655    Reset current build directory to the base directory after reading a
3656    "Leaving directory" message when parsing Make output
3657    (closes #2694479, patch by Andrea Mazzoleni, thanks).
3658  * src/notebook.c:
3659    Fix wrong display of the filename in the tab bar menu for new files.
3660  * src/dialog.c:
3661    Set the initial directory for the Save As dialog only once on
3662    initialisation.
3663    Add a shortcut of the project's base directory to the
3664    File Open/Save As dialogs when a project is open for faster access.
3665  * src/splitwindow.c:
3666    Add keybindings for the split actions.
3669 2009-03-16  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3671  * src/search.c:
3672    When using Find All in the Find dialog (in Session and Document),
3673    display the right amount of matches.
3674    Fix the display of the matches once per line (I broke the original
3675    patch).
3676  * src/ui_uitls.c:
3677    Fix wrong directory selection behaviour in all Open Folder dialogs
3678    (closes #2688020, patch by Marcel Stimberg, thanks).
3679  * src/socket.c:
3680    Don't present the main window of a running instance when starting
3681    a second instance separately.
3684 2009-03-15  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3686  * src/socket.c:
3687    Reduce default file permissions on the Unix Domain socket file
3688    (reported by Jörg Sommer, thanks).
3691 2009-03-13  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3693  * doc/geany.txt, doc/geany.html, geany.glade, src/interface.c,
3694    src/main.c, src/plugindata.h, src/plugins.c, src/prefs.c,
3695    src/prefs.h:
3696    Add an option to set an additional plugin lookup path.
3697  * src/search.c:
3698    When using Find All in the Find dialog, display matches only once
3699    per line in the messages window (patch by Bert Vermeulen, thanks).
3702 2009-03-10  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3704  * data/filetype_extensions.conf, data/filetypes.actionscript,
3705    src/about.c, src/document.c, src/filetypes.c, src/filetypes.h,
3706    src/highlighting.c, src/plugindata.h, src/symbols.c,
3707    tagmanager/Makefile.am, tagmanager/actionscript.c,
3708    tagmanager/makefile.win32, tagmanager/parsers.h, THANKS, wscript:
3709    Add filetype ActionScript (patch by Chris Macksey, thanks).
3710    Update type keywords only for real C-like languages.
3711    Fix wrong sorting of Assembler and Ada filetypes.
3712  * plugins/classbuilder.c:
3713    Use G_DEFINE_TYPE in the GTK+ class template instead of manual code.
3714    Other minor cleanups.
3717 2009-03-05  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3719  * src/notebook.c:
3720    Don't use menu item images for the tab bar menu to save some
3721    vertical space.
3722  * data/filetypes.fortran, tagmanager/fortran.c:
3723    Add keyword 'extends' and fix Fortran parser to support the
3724    'extends' keyword (closes #2654492).
3725  * geany.glade, plugins/export.c, src/interface.c, src/printing.c,
3726    src/search.c, src/toolbar.c:
3727    Fix punctuation.
3730 2009-03-03  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
3732  * src/about.c, THANKS:
3733    Added Jari Rahkonen to list of Finnish translators.
3736 2009-03-02  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3738  * geany.pc.in:
3739    Adjust minimum required GTK version.
3740  * src/Makefile.am, wscript:
3741    Add main.h to the list of installed header files.
3742  * geany.glade, src/document.c, src/documentprivate.h, src/interface.c,
3743    src/notebook.c, src/ui_utils.c:
3744    Remove GeanyDocumentPrivate::tabmenu_label.
3745    Disable the default tab bar menu for the main notebook widget and
3746    use a custom menu instead which lists all open files as usual plus
3747    'Close Other Documents' and 'Close All' menu items.
3750 2009-02-27  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3752  * src/callbacks.c, src/search.c, src/ui_utils.c, src/ui_utils.c:
3753    Move ui_set_search_entry_background() into ui_utils.c.
3754    Change the background colour of the search entries in the Find
3755    and Replace dialogs according to the search results like in the
3756    toolbar search field.
3757    Add images to the 'Replace' and 'Replace and Find' buttons in the
3758    Replace dialog.
3759    Minor cleanups in search.c.
3760  * tagmanager/tm_source_file.c:
3761    Update source files upon creation.
3762  * data/c99.tags:
3763    Update C tags for glibc 2.9.
3764  * src/callbacks.c, src/toolbar.c:
3765    Fix broken non-incremental search with the toolbar search entry when
3766    pressing Enter (closes #2638180).
3767  * plugins/splitwindow.c:
3768    Fix possible crash on non-32-bit systems (patch by
3769    Wolfgang Ocker, thanks).
3770  * geany.spec.in:
3771    Update the Packager tag due to Dominic's various contributions.
3772    Update description and feature list.
3773    Change Source tag to the gzip'ed tarball to be in sync with the
3774    Makefile target (thanks to Wolfgang Ocker for reporting).
3777 2009-02-26  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
3779  * plugins/vcdiff.c, plugins/Makefile.am, po/POTFILES.in:
3780    Removed deprecated plugin VC Diff
3783 2009-02-25  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3785  * src/templates.c:
3786    Fix wrong Fortran 90 comment characters when inserting templates.
3787  * doc/geany.html, doc/geany.txt, geany.glade, src/callbacks.c,
3788    src/callbacks.h, src/editor.c, src/interface.c, src/keybindings.c,
3789    src/keybindings.h, src/main.c, src/plugindata.h, src/vte.c,
3790    src/vte.h, THANKS:
3791    Add 'Send Selection to Terminal' command to the Edit->Format menu
3792    (initial patch by David Gleich, thanks).
3793  * geany.glade, src/interface.c:
3794    Fix mnemonic for the Edit->Preferences menu item.
3797 2009-02-24  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3799  * configure.in, plugins/Makefile.am:
3800    Enable socket support when cross-compiling.
3801    Enable plugin compilation when cross-compiling.
3802  * src/msgwindow.c:
3803    Fix missing NULL checks when reading the colour value of compiler
3804    output messages.
3805  * src/main.c, src/win32.c, src/win32.h:
3806    On Windows, change the working directory to the Geany installation
3807    path at startup to avoid unwanted directory locking(closes #2626124).
3808  * src/encoding.c:
3809    Fix broken selection of "Document->Set Encoding" menu items.
3810  * src/document.c, tagmanager/include/tm_source_file.h,
3811    tagmanager/include/tm_work_object.h, tagmanager/tm_project.c,
3812    tagmanager/tm_source_file.c, tagmanager/tm_tag.c,
3813    tagmanager/tm_work_object.c, tagmanager/tm_workspace.c:
3814    Don't let the tagmanager automatically reparse files if they
3815    seem to be changed on disk (affects all files in the current session,
3816    not the current one). This should speed up file saving a little bit,
3817    especially with remote files.
3818    Remove now unnecessary calls to tm_workspace_update().
3819  * src/printing.c:
3820    Allow an empty value for the date format in the print settings to
3821    omit the date/time string in the print header.
3824 2009-02-20  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
3826  * src/editor.c: Set cursor for LaTeX at auto closing of environment
3827    direct into area.
3830 2009-02-19  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3832  * src/utils.h:
3833    Add missing header include (closes #2615808).
3836 2009-02-18  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3838  * src/symbols.c:
3839    Fix a possible crash when comparing symbol names
3840    (could be related to Ubuntu bug #147151).
3841    Fix broken symbol list tooltips when tag names contain ampersands.
3844 2009-02-15  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
3846  * plugins/makefile.win32:
3847    Don't build Split Window plugin on Windows (doesn't work).
3850 2009-02-15  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3852  * ChangeLog, Makefile.am: Rotate ChangeLog.
3853  * configure.in, geany.nsi, geany_private.rc, win32-config.h,
3854    wscript, doc/geany.txt, doc/geany.html, src/geany.h:
3855    Post-release version bump.
3858 *** See ChangeLog.pre-0-17 for earlier changes ***