Add function document_apply_indent_settings() for use later.
[geany-mirror.git] / ChangeLog
blobfbc50721343edd9757f24143984407d7d47f5a6a
1 2010-05-03  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
3  * src/keybindings.c:
4    Fix setting wrong accelerator for 2 Edit->Commands items (patch by
5    Anonymous, thanks; #2995593).
6  * src/sciwrappers.c, src/plugindata.h, src/plugins.c,
7    plugins/geanyfunctions.h:
8    Add sci_set_line_indentation(), sci_get_line_indentation() to API
9    (patch by Colomban Wendling, thanks).
12 2010-04-30  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
14  * src/editor.c:
15    Warn user if hidden hard tab width setting is not 8.
18 2010-04-28  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
20  * src/interface.c, src/project.c, src/keyfile.c, geany.glade,
21    doc/geany.txt, doc/geany.html:
22    Hide 'Tabs and Spaces: Hard tab width' preference - it should
23    always be 8. (Hidden setting kept in case users have modified it).
26 2010-04-28  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
28  * doc/geany.txt, doc/geany.html:
29    Add Folding section link to filetypes.common custom settings.
32 2010-04-27  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
34  * src/callbacks.c:
35    When switching documents, don't call document_set_text_changed()
36    as this does much more than necessary. Instead call the necessary
37    UI update functions explicitly.
40 2010-04-27  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
42  * tagmanager/vstring.c:
43    Fix invalid memory read (patch by Colomban Wendling, thanks).
46 2010-04-25  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
48  * src/build.c, src/dialogs.c, src/msgwindow.c, src/ui_utils.c:
49    Replace g_vsnprintf() by g_strdup_vprintf() to avoid truncated
50    strings in case of reaching the buffer size limit (part of #2979697).
51  * src/win32.c:
52    Change the limit for the command line length when executing commands
53    to a maximum of 32768 characters (closes #2979697).
54    Fix broken opening URLs e.g. when using the 'builtin' Run command.
55  * tagmanager/ctags.c:
56    Change eFree() to simply ignore NULL pointers instead of asserting.
57  * src/main.c:
58    Remove malloc() fallback since we completely rely on g_malloc()
59    nowadays.
60  * plugins/export.c, plugins/filebrowser.c, plugins/htmlchars.c,
61    plugins/saveactions.c:
62    Make string arguments const where appropriate (patch by
63    Colomban Wendling, thanks).
64  * src/build.c, src/build.h, src/callbacks.c, src/editor.c,
65    src/encodings.c, src/encodings.h, src/gb.c, src/geanyentryaction.c,
66    src/geanymenubuttonaction.c, src/geanyobject.c, src/geanywraplabel.c,
67    src/keyfile.c, src/project.c, src/sidebar.c, src/socket.c,
68    src/symbols.c, src/templates.c, src/ui_utils.c:
69    Make string arguments const where appropriate (patch by
70    Colomban Wendling, thanks).
73 2010-04-22  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
75  * src/plugindata.h, src/pluginutils.c, src/pluginutils.h, THANKS:
76    Make plugin_signal_connect() string argument const (patch by
77    Colomban Wendling, thanks).
78  * src/keybindings.c, src/keybindings.h, src/plugindata.h:
79    Constify some more string pointers in the API (patch by
80    Colomban Wendling, thanks).
81  * src/templates.c, src/templates.h, src/editor.c, doc/geany.txt,
82    doc/geany.html:
83    Support {pc} wildcard in snippets to escape percent char.
84  * src/editor.c:
85    Recalculate line margin width when zooming (fixes #2990553).
86  * src/highlighting.c, doc/geany.txt, doc/geany.html,
87    data/filetypes.common:
88    Support more folding icon styles: arrows, +/- and no lines
89    (#2935059).
92 2010-04-21  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
94  * src/socket.c:
95    Fix Windows build by properly guarding Unix-only code.
98 2010-04-21  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
100  * src/templates.c, doc/geany.txt, doc/geany.html:
101    Support {ob} and {cb} in fileheader and file templates; they are
102    replaced last with { and }. This allows 'escaping' of wildcard
103    strings.
104  * src/editor.c, plugins/classbuilder.c:
105    Fix Class Builder plugin to use correct indentation instead of
106    always tabs.
107    Make editor_insert_text_block() only replace leading tabs for the
108    'Tabs' indent type; also group edits for undo.
109  * src/templates.c, src/templates.h, src/editor.c, doc/geany.txt,
110    doc/geany.html:
111    Support {ob} and {cb} wildcards for snippets too (fixes #2937008).
114 2010-04-19  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
116  * tagmanager/pascal.c:
117    More fixes to prevent possible crashes by trying to free NULL
118    pointers.
119  * src/sidebar.c:
120    Automatically show and hide the sidebar notebook tabs according
121    to the amount of visible pages (patch by Adrian Dimitrov, thanks).
122  * src/editor.c:
123    Add a static global variable to monitor autocompletion mode in order
124    to prevent cancellation of the struct/class (C/C++) auto completion
125    list (patch by Thomas Martitz, thanks).
126  * src/socket.c:
127    When starting and trying to access the Unix Domain socket of a
128    potentially running instance, first compare file ownership with the
129    user id of the running process to prevent accessing a wrong socket
130    file (part of #2985463, this might not yet be the final solution).
133 2010-04-19  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
135  * plugins/filebrowser.c:
136    Synchronize popup menu and plugin preferences dialog 'Show Hidden
137    Files' option (fixes #2989288).
140 2010-04-18  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
142  * tagmanager/entry.c, tagmanager/entry.h,
143    tagmanager/include/tm_source_file.h, tagmanager/parse.c,
144    tagmanager/parse.h, tagmanager/tm_source_file.c:
145    Add tm_source_file_set_tag_arglist() to manually set the argument
146    list of a tag.
147  * tagmanager/python.c:
148    Use tm_source_file_set_tag_arglist() to set the argument list
149    field of Python class tags to the argument list of their
150    __init__() methods.
151    Backport a fix from CTags SVN to prevent possible crashes by trying
152    to free NULL pointers.
155 2010-04-17  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
157  * tagmanager/txt2tags.c:
158    Remove duplicate code from Txt2Tags parser.
159    Remove the title control characters ('=') when parsing titles.
160    Also parse numbered titles (closes #2984703).
161  * doc/geany.html, doc/geany.txt, src/keybindings.c, src/keybindings.h,
162    src/plugindata.h:
163    Add 'Remove Markers' and 'Remove Error Indicators' keybindings.
164    Add missing documentation for 'Reset Zoom' keybinding.
165  * tagmanager/php.c:
166    Another attempt to fix the PHP parser regexp for parsing functions.
167    Fix wrong parsing of function arguments when those contain nested
168    brackets (as reported by Harold Aling).
169  * src/notebook.c:
170    Fix Ctrl-Click on notebook tab if Numpad is active.
173 2010-04-11  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
175  * geany.glade, doc/geany.txt, plugins/geanyfunctions.h,
176    src/callbacks.c, src/interface.c, src/keyfile.c, src/plugindata.h,
177    src/plugins.c, src/prefs.c, src/toolbar.c, src/toolbar.h,
178    src/ui_utils.c, src/ui_utils.h:
179    Add option 'System Default' for toolbar icon style and size to
180    use the GTK default value.
181  * geany.glade, src/callbacks.c, src/callbacks.h, src/interface.c,
182    src/toolbar.c, src/toolbar.h:
183    Shorten the toolbar popup menu, only provide items for Toolbar
184    Preferences and to Hide the toolbar.
185  * src/toolbar.c:
186    Instantly update the toolbar icon size and style when the
187    corresponding global GTK settings are changed.
188  * doc/geany.1.in, doc/geany.txt, src/main.c, src/main.h,
189    src/plugindata.h, src/socket.c:
190    Add new command line option --list-documents to return a list
191    of currently opened documents (closes #2979933).
194 2010-04-09  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
196  * plugins/htmlchars.c:
197    Make plugin remember whether replacement of special characters was
198    activated even after restart of Geany or reloading of plugin.
201 2010-04-09  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
203  * src/editor.c:
204    Fix inserting snippets with an indent when using Mac CR line
205    endings.
206  * src/callbacks.c:
207    Update status bar after using Document->Set Line Endings.
208  * src/editor.c:
209    Improve API docs for editor_insert_text_block().
212 2010-04-08  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
214  * src/editor.c:
215    Refactor snippets_complete_constructs().
216    Remove an unnecessary TODO.
217  * src/editor.c:
218    Fix indenting a snippet when there is whitespace after the
219    snippet key name.
222 2010-04-07  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
224  * doc/geany.txt, doc/geany.html:
225    Improve wording.
226  * src/build.c, src/msgwindow.c:
227    Fix disabled compiler message tracking if using indicators to
228    show build errors is disabled (closes #2982834).
231 2010-04-07  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
233  * scintilla/Editor.cxx:
234    Backport fix from Scintilla CVS to fix using SCI_GETSELECTIONSTART
235    and SCI_GETSELECTIONEND with rectangular selections. This fixes
236    replacing in a rectangular selection.
239 2010-04-06  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
241  * src/filetypes.c:
242    Re-detect any document filetypes set to None after reloading
243    filetype extensions (closes #2979661).
244  * src/editor.c:
245    Fix showing '...' item last instead of first for document word
246    completion.
249 2010-04-05  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
251  * data/filetypes.perl:
252    Adjust Perl Compile command to use the -c command
253    line option to perform a syntax check instead of using the
254    deprecated ByteCompile module.
255    Add error_regex to parse error messages and warnings when performing
256    syntax checks on Perl files.
259 2010-04-05  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
261  * src/keybindings.c, src/keybindings.h, doc/plugins.dox:
262    Add API docs for keybinding enums.
263  * src/notebook.c, doc/geany.txt, doc/geany.html:
264    Make Ctrl-click on any notebook tab switch to the last used
265    document.
268 2010-04-01  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
270  * src/geanymenubuttonaction.c, src/geanymenubuttonaction.h,
271    src/geanyentryaction.c, src/geanyentryaction.h,
272    src/geanywraplabel.c:
273    Cache G_TYPE_INSTANCE_GET_PRIVATE() result when initializing an
274    object for efficiency.
277 2010-03-31  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
279  * plugins/classbuilder.c:
280    Beep if the user hasn't entered a class name on pressing OK.
281  * src/search.c:
282    Fix replacing '^' regex.
283  * src/plugindata.h, src/stash.c, src/stash.h, src/plugins.c,
284    plugins/geanyfunctions.h:
285    Add Stash widget functions to API.
286  * configure.ac:
287    Revert commit to use AC_PATH_PROG instead of 'which' (fixes
288    #2973764).
291 2010-03-30  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
293  * THANKS, src/vte.c:
294    Apply patch from Yoann Le Montagner to set VTE bold color (thanks,
295    fixes #2976905).
296  * wscript, src/plugindata.h, src/stash.c, src/stash.h, src/plugins.c,
297    src/Makefile.am, doc/plugins.dox, doc/stash-example.c,
298    plugins/geanyfunctions.h, plugins/geanyplugin.h:
299    Add Stash setting functions to API.
300    Remove unnecessary argument to stash_group_load_from_file().
301  * src/geanyobject.c, plugins/classbuilder.c:
302    Don't generate FOO_GET_PRIVATE() macro because caching the result
303    in Foo::priv can be much more efficient.
306 2010-03-25  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
308  * src/editor.c:
309    Fix cursor positioning when toggling comments
310    (patch by Thomas Martitz, thanks).
313 2010-03-25  Peter Scholtens  <peter(dot)scholtens(at)xs4all(dot)nl>
315  * src/keybindings.[hc]:
316    Added Control+0 for zoom reset, see suggestion from #2969886.
319 2010-03-25  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
321  * src/search.c, src/document.c:
322    Fix wrong selection range after Replace in Selection.
325 2010-03-20  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
327  * src/win32.c:
328    Make CreateChildProcess() working with Unicode strings, e.g.
329    directory names (closes #2972606).
330  * geany.nsi:
331    Remove reference to already removed latex.tags file.
332    Future releases probably still depend on GTK 2.16.
333  * scintilla/ScintillaGTK.cxx:
334    Backport fix from Scintilla CVS to not paste text beyond the end
335    of lines (closes #2969096).
336  * plugins/htmlchars.c, src/geany.h, src/keybindings.c, src/main.c,
337    src/plugindata.h:
338    Deprecate GEANY_WINDOW_MINIMAL_WIDTH/GEANY_WINDOW_MINIMAL_HEIGHT
339    to not set Geany's minimum window size anymore (closes #2972992).
340    As replacement, add GEANY_DEFAULT_DIALOG_HEIGHT.
343 2010-03-19  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
345  * src/stash.c:
346    Make adding string and string vector settings initialise the setting
347    to NULL for safety.
348  * src/utils.c, src/stash.c, src/stash.h, doc/stash-example.c:
349    Add stash_group_load_from_file() and stash_group_save_to_file().
352 2010-03-18  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
354  * data/filetypes.common:
355    Set default for wrapped lines to show marker at end of line only
356    (more expected and doesn't change line alignment - closes #2972386).
357  * src/toolbar.c, src/toolbar.h, src/prefs.c, src/prefs.h,
358    src/pluginutils.c, doc/plugins.dox:
359    Improve API docs contents page by listing all commonly-used files.
360    Fix 'Date' appearing twice on the date line.
361    Don't generate API docs for prefs.h, toolbar.h (unused).
362    Move some '@file' doc-comments to the .c file.
363  * src/interface.c, geany.glade:
364    Add frame for 'Printing' prefs dialog page.
365  * src/sidebar.c, src/project.c, src/prefs.c, src/stash.c, src/stash.h,
366    src/keyfile.c, src/keyfile.h, src/search.c, src/plugins.c,
367    doc/stash-example.c:
368    Rename Stash data types to be independently named from Geany (so
369    Stash can be reused for other projects).
370    Rename GeanyPrefGroup to StashGroup.
373 2010-03-17  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
375  * tagmanager/python.c:
376    Apply patch from Colomban Wendling to parse Python lambda functions
377    (thanks) - modified to only parse toplevel or class member lambdas.
378  * src/stash.c, src/stash.h, doc/Doxyfile.in, doc/Makefile.am,
379    doc/stash-example.c:
380    Add doc-comments for Stash setting functions.
381    Add an example file showing usage of Stash.
382    (Not enabled yet until added to the plugin API).
385 2010-03-17  Lex Trotman  <elextr.at.gmail.dot.com>
387  * src/build.c:
388    Fix using return value without checking return status, caused
389    incorrect sensitivity settings on build dialog.
392 2010-03-16  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
394  * HACKING:
395    Add tip about gcc optimization & warnings/debugging.
396    Add Testing section.
397    Update Libraries section about synchronizing with other projects.
400 2010-03-15  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
402  * src/ui_utils.c:
403    For now revert the recent patch which set real_path of newly
404    open non-existent configuration files as this seems hackish and
405    causes 'file not found' warnings.
406  * wscript:
407    Fix/Improve GIT repository detection
408    (patch by Thomas Martitz, thanks).
409  * plugins/geanyfunctions.h, src/plugindata.h, src/plugins.c,
410    src/utils.c:
411    Add utils_copy_environment() to the plugin API.
414 2010-03-15  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
416  * src/utils.c, src/utils.h, src/sciwrappers.c, src/dialogs.c,
417    src/navqueue.c, src/msgwindow.c, src/filetypes.c, src/document.c,
418    src/main.c:
419    Use 3rd person for more API dox.
420    Change 'This is a wrapper function for...' to 'Wraps...' in brief
421    descriptions.
422    Change 'After all...' to 'Afterwards...'.
423  * src/interface.c, geany.glade:
424    Apply patch from Eugene Arshinov to make frame packing/alignment
425    more consistent (thanks).
428 2010-03-12  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
430  * src/ui_utils.c:
431    Fix ui_button_new_with_image() to call gtk_button_set_image() so
432    that gtk_button_[sg]et_label() work as expected.
433  * src/build.c, src/dialogs.c, src/dialogs.h, src/callbacks.c:
434    Make Build Commands dialog show menu item labels as a button (to
435    help show that menu labels don't normally need to be edited &
436    display the mnemonic correctly). Clicking shows an input dialog to
437    set a new menu item label.
438    Split dialogs_show_input() into 2 functions: one simple, one for
439    a persistent dialog.
440    Fix possible double-destroy of input dialog when closed by user.
441  * src/dialogs.c:
442    Fix not destroying 'Make Custom Target' input dialog after first
443    use (oops).
444  * src/project.c:
445    Make Long Line Marker settings for existing projects default to
446    general settings instead of 0 (thanks to Eugene Arshinov).
447  * src/utils.c, src/ui_utils.h, src/utils.h, src/highlighting.c,
448    src/keybindings.c, src/sciwrappers.c, src/plugindata.h,
449    src/filetypes.c, src/filetypes.h, src/document.c, src/pluginutils.c,
450    src/document.h, src/editor.c, src/editor.h, src/ui_utils.c:
451    Use 3rd person (gets not get) for API function brief descriptions.
452    Avoid using 'convenience function' in API brief descriptions.
455 2010-03-10  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
457  * doc/geany.txt, doc/geany.html:
458    Warn about some GNU extensions for regular expressions & clarify
459    some points.
460  * src/interface.c, src/keybindings.c, src/project.c, src/project.h,
461    src/prefs.c, src/plugindata.h, src/keyfile.c, src/editor.c,
462    src/editor.h, geany.glade:
463    Apply patch from Eugene Arshinov to add project long line marker
464    customisation (thanks).
465  * src/interface.c, geany.glade:
466    Edit/tidy 'Long line marker' labels.
469 2010-03-10  Lex Trotman  <elextr.at.gmail.dot.com>
471  * src/build.c, src/project.c:
472    Fix crash due to NULL in project build preferences (thanks to
473    Wolfgang Ocker).
476 2010-03-09  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
478  * src/utils.c, src/utils.h, src/search.c, src/search.h,
479    src/document.c, doc/geany.txt, doc/geany.html:
480    Merge gnu-regex branch:
481    Use POSIX system/GNU regex engine for find & replace 'Use regular
482    expressions' option. This alters regex syntax a bit - see the docs
483    for details; we now support '?' operator and replacement backslash
484    escaping is more standard.
485    Make regex search imply replacing escaped chars.
486    Allow \0 backreference replacement for the whole match.
487    Note: Replace All may be slower; if this is a problem please let me
488    know.
489  - code:
490    Add argument to utils_str_replace_escape() for keeping
491    uninterpreted backslash escapes e.g. '\\', '\e'.
492  * scintilla/LexMarkdown.cxx:
493    Backport minor formatting/style changes from Scintilla project.
494  * doc/geany.txt, doc/geany.html:
495    Remove warning about no visual indication for zero-column-mode
496    editing.
499 2010-03-09  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
501  * wscript:
502    Skip unavailable languages in LINGUAS (thanks to Christian Dywan).
505 2010-03-07  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
507  * wscript, scintilla/*, scintilla/include/*:
508    Update Scintilla to version 2.03.
509  * geany.glade, doc/geany.txt, doc/geany.html, src/editor.c,
510    src/editor.h, src/interface.c, src/keyfile.c, src/plugindata.h:
511    Add preference for virtual spaces.
512  * src/log.c:
513    Fix wrong default response for the Debug Messages dialog.
514  * src/dialogs.c:
515    Fix crashes when using Save As with no open files (closes #2964406).
516  * src/document.c:
517    Fix duplicate mnemonics on 'Resave missing file' dialog, also
518    move the question from the secondary to the main text to be
519    more compatible with the Gnome HIG.
520    Fix broken 'Save' action in 'Resave missing file' dialog.
521  * tagmanager/php.c:
522    Improve PHP parser to parse also the argument lists of PHP functions.
523  * src/prefs.c:
524    Correctly set the parent widget for the keybinding overwrite
525    confirmation dialog.
526  * src/dialog.c:
527    Fix setting the icon for some dialogs if the parent itself is also
528    a dialog.
529  * src/ui_utils.c:
530    When editing non-existent config files using the Tools->Configuration
531    Files menu, explicitly set the real_path to avoid presenting the Save
532    As dialog when saving the file (patch by Tony Rick, thanks).
533  * src/callbacks.c:
534    Focus the editor widget after hiding the sidebar when it had the
535    input focus (patch by Can Koy, thanks).
536    Properly show/hide the mesages window when using the View menu item
537    (closes #2961282).
538  * plugins/filebrowser.c:
539    After opening files, focus the editor widget
540    (based on a patch by Can Koy, thanks).
541  * plugins/filebrowser.c, plugins/geanyfunctions.h, src/msgwindow.c,
542    src/plugindata.h, src/plugins.c, src/sidebar.c, src/ui_utils.c,
543    src/ui_utils.h, src/vte.c:
544    Add and use convenience function ui_is_keyval_enter_or_return() and
545    add it to the plugin API.
548 2010-03-05  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
550  * src/about.c, THANKS, po/ast.po:
551    Added Asturian translation. Thanks to Marcos Costales for providing.
554 2010-02-28  Dominic Hopf  <dmaphy(at)googlemail(dot)com>
556  * src/log.c:
557    Fix keyboard accelerators in debug messages window
558    (Thanks Can Koy).
561 2010-02-28  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
563  * scintilla/LexR.cxx:
564    Backport R lexer from Scintilla CVS to fix case sensitive keywords
565    (Scintilla bug #2956543).
566  * src/sidebar.c, src/about.c, THANKS:
567    Make Space on the symbol and document list not focus the editor
568    widget while Enter does (closes #2919444, patch by Can Koy, thanks).
569  * src/document.c, src/document.h:
570    Fix document_try_focus() to make it work with the sidebar document
571    list as well.
572  * src/msgwindow.c, src/msgwindow.h, src/ui_utils.c, src/ui_utils.h:
573    Make Space on the compiler and messages widgets not focus the editor
574    widget while Enter does (patch by Can Koy, thanks).
575  * src/editor.c:
576    Fix wrongly auto-detected multiline comments
577    (patch by Eugene Arshinov, thanks).
580 2010-02-28  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
582  * src/ui_utils.c:
583    Show number of lines of current document inside statusbar. Thanks to
584    Can Koy for providing the patch.
587 2010-02-24  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
589  * src/keybindings.c, doc/geany.txt, doc/geany.html:
590    Make Switch to Editor keybinding reshow the document statistics
591    line, so user doesn't have to move the cursor.
594 2010-02-22  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
596  * data/filetypes.r:
597    Update keywords for the R language (patch by Jon Senior, thanks).
600 2010-02-21  Dominic Hopf  <dmaphy(at)googlemail(dot)com>
602  * doc/geany.txt:
603    Fix the instruction how to insert unicode characters
604    (thanks Tony Rick).
607 2010-02-21  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
609  * scripts/create_py_tags.py:
610    Minor fixes.
611    Replace tabs by spaces.
612  * plugins/genapi.py:
613    Minor fixes.
614    Replace tabs by spaces.
615  * tagmanager/r.c, plugins/geanyfunctions.h, src/about.c,
616    src/filetypes.c, src/symbols.c, tagmanager/Makefile.am,
617    tagmanager/makefile.win32, tagmanager/parsers.h, wscript, THANKS:
618    Add R tagmanager symbol parser (patch by Jon Senior, thanks).
619  * doc/geany.html, doc/geany.txt, src/keybindings.c, src/keybindings.h,
620    src/plugindata.h, src/sidebar.c, src/sidebar.h:
621    Add keybindings to switch to the sidebar's Document and Symbol list
622    as well as to the Message Window's current tab
623    (patch by Eugene Arshinov, thanks).
624  * data/filetypes.r:
625    Update primary keywords for the R language
626    (patch by Jon Senior, thanks).
629 2010-02-20  Dominic Hopf  <dmaphy(at)googlemail(dot)com>
631  * doc/geany.txt:
632    Add more detailed hints about reloading configuration
633    (thanks to Tony Rick).
634  * data/filetypes.javascript:
635    Correct the keyword list for JavaScript (thanks to Jonas).
638 2010-02-14  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
640  * New release: Geany 0.18.1 "Balfour".
643 2010-02-13  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
645  * src/keybindings.c:
646    Add special cases for handling the Select All keybinding (Ctrl-A) in
647    the toolbar search and goto line text entries (closes #2948040).
648    Strip trailing spaces after reflowing a paragraph, patch by
649    Dominik Wagenfuehr, thanks (closes #2945497).
652 2010-02-07  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
654  * src/geanymenubuttonaction.c, src/templates.c:
655    Partly revert last commit:
656    Unref the new files toolbar menu when freeing templates as it
657    was done before but unref it *after* the menu has been removed
658    from the GeanyMenuButtonAction.
659  * src/encodings.c:
660    Fix possible endless loop when trying to detect the encoding of
661    non-text files (patch by Alexey Antipov, thanks).
664 2010-02-06  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
666  * src/document.c:
667    Allow saving remote files using g_file_set_contents() as well
668    (patch by Алексей Антипов, thanks).
669  * data/filetypes.python:
670    Adjust style for secondary keywords to be less aggressive.
671    Add Python 2.5 builtins keywords.
672  * src/geanymenubuttonaction.c, src/templates.c:
673    Unref the new files toolbar menu when setting a new menu to fix
674    possible crashes when reloading configuration.
675  * src/filetypes.c:
676    When reloading configuration, process the current document at last
677    so the symbol list will be updated correctly.
680 2010-02-01  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
682  * src/symbols.c:
683    Explicitly read filetype configuration files before generating
684    global tags to get settings for custom filetypes.
687 2010-02-01  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
689  * src/plugins.c:
690    Fix GLib warning when toggling 'no plugins available' item.
693 2010-01-31  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
695  * icons/Makefile.am:
696    Include geany.ico in the distribution tarball.
697  * Makefile.am:
698    Fix 'make distcheck' by removing data/latex.tags from EXTRA_DIST.
699  * scripts/create_py_tags.py:
700    Make the script a bit more robust with newer Python versions.
701  * src/templates.c:
702    Use utils_spawn_sync() instead of g_spawn_sync().
705 2010-01-31  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
707  * plugins/export.c:
708    Close meta tag for export date properly.
711 2010-01-28  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
713  * geany.spec.in:
714    Update RPM Spec file (patch by Dominic Hopf, thanks).
717 2010-01-28  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
719  * src/plugindata.h:
720    Fix renaming sci_send_message(), sci_send_command() function pointers.
723 2010-01-25  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
725  * src/highlighting.c, src/highlighting.h, src/sciwrappers.c,
726    src/plugindata.h, doc/Doxyfile.in, doc/pluginsymbols.c,
727    plugins/geanyfunctions.h, plugins/Makefile.am,
728    plugins/pluginmacros.h, plugins/genapi.py, ChangeLog, wscript:
729    Use full function name for GeanyFunctions function pointers. This
730    avoids naming conflicts e.g. with C++'s 'new' keyword.
731    Remove deprecated header pluginmacros.h - use geanyfunctions.h instead.
734 2010-01-24  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
736  * src/utils.c, src/utils.h, src/vte.c:
737    Add utils_copy_environment() and make use of it.
738  * data/snippets.conf, doc/geany.html, doc/geany.txt, src/callbacks.c,
739    src/editor.c, src/templates.c, src/templates.h:
740    Add new special template wildcard "{command:...}" to use the
741    output of a command in templates.
742    Adjust template functions to mostly work with GeanyDocuments.
743    Minor cleanups in the template code.
744  * src/gb.c:
745    Replace the old icons with smiley icons from the Rodent icon theme.
746    Fix showing the same icon for two or more slots.
747    Minor cleanups.
748  * src/editor.c, src/editor.h, src/keybindings.c:
749    Rename fold_symbol_click() to editor_toggle_fold().
750    Use editor_toggle_fold() when the 'Toggle current fold' keybinding
751    was used to respect the 'Fold/unfold all children' preference
752    (closes #2935053).
755 2010-01-22  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
757  * src/build.c:
758    Prevent possible segfault in get_build_group().
759  * src/callbacks.c:
760    Fix GLib warning & beep if trying to insert multiline comment for a
761    filetype that doesn't support it.
764 2010-01-18  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
766  * doc/plugins.dox:
767    Add gcc commands to build a plugin to the HowTo.
768  * src/search.c, src/document.c, src/document.h:
769    Show 'Replaced X matches in Y documents' message when using Replace in
770    Session.
773 2010-01-17  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
775  * scripts/plugin_test.c:
776    Add a little test program which can load and test Geany plugins to
777    verify it is loadable at runtime and all necessary symbols are
778    defined.
779  * doc/plugins.dox, src/geanyobject.c, src/geanyobject.h, src/main.c,
780    src/plugindata.h:
781    Add new signal: "geany-startup-complete" which is sent once all
782    initialization and startup tasks has been done.
783  * README.I18N, configure.ac, wscript, po/LINGUAS:
784    Remove po/LINGUAS from the repository.
785    Generate it automatically if needed by reading available
786    message catalogs from the po directory.
787    Also respect the LINGUAS environment variable properly.
790 2010-01-16  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
792  * src/editor.c:
793    Remove editor_auto_latex() from Geany core and move it to geanyLaTeX
794    plugin.
797 2010-01-12  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
799  * src/editor.c, src/templates.c, src/templates.h:
800    Refactor templates_replace_all() into templates_replace_valist()
801    to save some code duplication.
804 2010-01-11  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
806  * plugins/geanyfunctions.h, src/editor.c, src/editor.h,
807    src/plugindata.h, src/plugins.c:
808    Add editor_insert_text_block() to plugin API.
811 2010-01-01  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
813  * *.*:
814    Update copyright information.
815  * src/keybindings.c, src/keybindings.h, src/plugindata.h,
816    doc/geany.txt, doc/geany.html:
817    Add keybinding to open the last closed tab (closes #2912692).
820 2009-12-31  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
822  * autogen.sh, configure.in, configure.ac:
823    Rename configure.in to configure.ac.
824  * plugins/geanyfunctions.h, src/plugins.c, src/plugindata.h,
825    src/sciwrappers.c:
826    Add sci_find_text() to the plugin API.
827  * doc/geany.html, doc/geany.txt, geany.glade, src/callbacks.c,
828    src/interface.c, src/prefs.c:
829    Add a checkbox in the preferences dialog to explicitly toggle
830    the visibility of the sidebar (closes #2923340).
833 2009-12-29  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
835  * src/editor.c, src/plugins.c, src/plugindata.h,
836    plugins/geanyfunctions.h:
837    Add editor_get_eol_char_name(), editor_get_eol_char_len() and
838    editor_get_eol_char() to the plugin API.
839  * src/callbacks.c, src/plugins.c, src/plugins.h:
840    Fix sensitivity of the Edit->Plugin Preferences menu item
841    if plugins are loaded which do not provide a configuration dialog.
842  * scripts/create_py_tags.py:
843    Rewrite and extend the Python tags parsing script to use
844    Python's inspect module to read symbols from Python modules
845    including scope information.
846  * data/filetypes.restructuredtext:
847    Add the default comment character sequence for reStructuredText.
848  * src/callbacks.c:
849    Show the Find/Goto dialogs if the corresponding toolbar buttons are
850    clicked but their text fields are not part of the toolbar (#2920807).
851  * data/filetypes.common, doc/geany.html, doc/geany.txt,
852    src/highlighting.c:
853    Add new style to change foreground and background colours for
854    calltips (patch by Dimitar Zhekov, thanks, closes #2919229).
855  * src/search.c:
856    Remember the window position of the Find, Replace and Find in Files
857    dialogs (closes #2877988).
860 2009-12-26  Frank Lanitz  <frank@frank.uvena.de>
862  * doc/plugins.dox:
863    Fix a minor typo inside plugin API reference.
866 2009-12-20  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
868  * src/dialog.c, src/dialogs.h, src/document.c, src/prefs.c:
869    Make dialogs_show_prompt() more flexible to take up to three
870    button/response code pairs to be shown.
871    Add a close button to the dialog when asking to Re-Save a
872    deleted file
873    (closes #2916954, based on a patch by Dominik Stadler, thanks).
874  * src/editor.c:
875    Fix LaTeX environment auto completion with CR/LF line endings.
876    Add some sanity checks.
877  * src/document.c:
878    When closing a document after it was deleted from the filesystem,
879    don't ask whether it should be saved first.
880    Mark the document only as changed if it is not closed afterwards.
881    Prevent possible segfaults if the document was closed when it is
882    missing from the filesystem.
883  * src/keybindings.c, src/keyfile.c, src/main.c, src/msgwindow.c,
884    src/msgwindow.h, src/prefs.c:
885    Add MessageWindow::scribble and use it instead of searching the
886    widget pointer everytime.
887  * src/keyfile.c, src/msgwindow.c, src/msgwindow.h, src/ui_utils.h:
888    Add preferences for hiding single tabs from the messages window
889    (no GUI preferences yet, still to be implemented).
890  * src/callbacks.c, src/prefs.c, src/toolbar.c, src/toolbar.h:
891    Set the correct parent window for the toolbar editor
892    dialog (closes #2913334).
893  * src/win32.c, src/win32.h, src/ui_utils.c:
894    Rename win32_show_project_folder_dialog() to
895    win32_show_folder_dialog() as it is not related and not used by any
896    project management related code.
897  * src/ui_utils.c, src/win32.c, src/win32.h, src/dialogs.c:
898    Rename win32_show_file_dialog() to win32_show_document_open_dialog()
899    as it is specialised for opening documents.
900    Implement win32_show_file_dialog() as a generic file open dialog and
901    use it with ui_path_box_new().
904 2009-12-20  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
906  * src/editor.c:
907    Extend auto_latex() function to check whether an environment has been
908    closed within the next lines to avoid auto adding double \end{}.
909  * data/latex.tags:
910    Remove LaTeX tags from SVN. Can be found at
911    http://download.geany.org/contrib/tags/ if needed.
914 2009-12-19  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
916  * src/callbacks.c, src/dialogs.c, src/document.c, src/document.h:
917    Add document_need_save_as().
918    Show the Save As also for documents created from filetype templates
919    instead of saving them directly with the untitled filename.
922 2009-12-09  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
924  * geany.glade, src/interface.c:
925    Move 'Send Selection to Terminal' menu item from Format to Commands
926    submenu.
927  * src/msgwindow.c:
928    When going to a build error, try the current document's path if
929    the parsed filename doesn't exist. (This can happen when we receive
930    build messages in the wrong order - after the 'Leaving directory'
931    messages).
932  * src/msgwindow.c:
933    Refactor msgwin_goto_compiler_file_line().
934  * src/interface.c, src/keybindings.c, geany.glade:
935    Capitalize, add mnemonics, sync with kb.c the Edit->Commands menu item
936    labels.
937  * src/search.c:
938    Refactor/reformat on_replace_dialog_response().
941 2009-12-08  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
943  * geany.spec.in:
944    Improve geany.spec (split the package into a binary and devel
945    package, update BuildRequires and other minor improvements).
946    Patch by Dominic Hopf, thanks.
949 2009-12-08  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
951  * src/filetypes.c, src/filetypes.h:
952    Make group for custom filetypes.
953  * data/filetypes.Genie.conf, data/filetype_extensions.conf:
954    Add custom filetype Genie.
957 2009-12-07  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
959  * src/highlighting.c:
960    Highlight D & Java types from a global tags file.
961  * src/highlighting.c, doc/geany.txt, doc/geany.html:
962    Add debug message warning if recursive lexer_filetype is set.
963  * src/highlighting.c, src/sciwrappers.c, src/sciwrappers.h:
964    Remove duplicate sci_set_keywords(), make argument const.
965  * src/highlighting.c:
966    Only show debug message once if recursive lexer_filetype is set.
967    Tidy highlighting_init_styles code for filetype None handling.
968  * scintilla/makefile.win32, scintilla/KeyWords.cxx,
969    scintilla/LexVerilog.cxx, scintilla/Makefile.am, src/highlighting.c,
970    src/filetypes.c, src/filetypes.h, src/symbols.c, THANKS,
971    tagmanager/parsers.h, tagmanager/makefile.win32,
972    tagmanager/verilog.c, tagmanager/Makefile.am,
973    data/filetypes.verilog, data/filetype_extensions.conf, wscript:
974    Apply patch from Kelvin Gardiner to add Verilog filetype (thanks).
975  * src/highlighting.c:
976    Fix segfault on startup (oops).
977  * data/filetypes.verilog:
978    Fix using common style colours for Verilog.
981 2009-12-03  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
983  * src/highlighting.c, data/filetypes.cpp, data/filetypes.vala,
984    data/filetypes.glsl, data/filetypes.cs, data/filetypes.c:
985    Move C-like filetype properties into configuration files.
986  * src/highlighting.c, data/filetypes.cpp, data/filetypes.cs,
987    data/filetypes.c:
988    Remove now unnecessary "styling_within_preprocessor" C style key.
989  * src/highlighting.c, data/filetypes.cpp, data/filetypes.vala,
990    data/filetypes.glsl, data/filetypes.cs:
991    Use lexer_filetype=C configuration file key instead of duplicate
992    styleset functions for C++, C#, GLSL, Vala.
995 2009-12-02  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
997  * doc/geany.txt, doc/geany.html:
998    Warn about not using BOM for configuration files (confuses GKeyFile
999    parser, at least on my system).
1000  * src/filetypes.c:
1001    Add/improve debug messages for custom filetypes.
1004 2009-11-30  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
1006  * data/latex.tags:
1007    Add a couple of further latex-beamer commands to list of LaTeX tags.
1010 2009-11-30  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1012  * plugins/filebrowser.c:
1013    Add an in-entry clear icon to the filebrowser plugin's filter
1014    entry (patch by Dominic Hopf, thanks).
1015  * src/prefs.c, src/ui_utils.c:
1016    Fix two compiler warnings about possibly uninitialised variables.
1019 2009-11-29  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1021  * src/main.c, src/main.h, src/plugins.c, src/plugindata.h,
1022    plugins/geanyfunctions.h:
1023    Add main_is_realized() to the plugin API.
1024  * tagmanager/include/tm_tagmanager.h:
1025    Update partly outdated and wrong doc comment.
1026  * src/main.c, src/main.h, src/socket.c:
1027    Allow opening Geany projects remotely.
1028  * doc/geany.txt, doc/geany.html, src/vte.c, src/vte.h, src/keyfile.c:
1029    Add a hidden pref to allow executing text which was sent to the
1030    terminal directly, i.e. do not strip trailing newline characters.
1031    Also fix the stripping of trailing newline characters if there was
1032    more than one.
1035 2009-11-26  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
1037  * src/about.c, THANKS:
1038    Add Peter Scholtens and Ayke van Laethem to list of translators. Move
1039    Kurt de Bree into section of previous translators.
1042 2009-11-26  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1044  * src/about.c, src/symbols.c, THANKS, tagmanager/vhdl.c:
1045    Fix VHDL symbol list to display all tags (patch from Kelvin Gardiner,
1046    thanks).
1049 2009-11-24  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1051  * src/highlighting.c:
1052    Make stylesets take a ft_id argument so they can be reused fully with
1053    custom filetypes, so custom styles and keywords can be set.
1054  * src/highlighting.c:
1055    Fix setting filetype properties when both the system and the user file
1056    have properties set.
1057  * src/symbols.c, tagmanager/vhdl.c:
1058    Parse VHDL signals.
1059  * src/highlighting.c:
1060    Fix lexer settings for custom filetypes.
1063 2009-11-23  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1065  * tagmanager/php.c:
1066    Remove duplicate regular expression for parsing classes.
1067    Fix and improve parsing of constants (patch by Harold Aling, thanks).
1068  * doc/geany.1.in, doc/geany.html, doc/geany.txt, src/main.c,
1069    src/main.h, THANKS, src/about.c:
1070    Add new command line option "--socket-file" to be able to specify
1071    separate socket filenames for instances
1072    (closes #2896027, patch by Jörn Reder, thanks).
1073  * src/keybindings.c, src/keybindings.h:
1074    Add keybindings_check_event() to manually check GdkKeyEvents against
1075    Geany's keybindings.
1076  * src/callbacks.c, src/utils.c, src/utils.h:
1077    Add and use utils_get_help_url().
1078  * geany.glade, src/interface.c, src/prefs.c:
1079    Add a Help button to the preferences dialog.
1080    Handle Help keybinding events for the preferences dialog especially
1081    and open the manual with the corresponding anchor link to the current
1082    preferences page (same goes for the new Help button).
1085 2009-11-22  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1087  * src/toolbar.c, src/geanymenubuttonaction.c,
1088    src/geanymenubuttonaction.h:
1089    Use separate tooltips for toolbar menu buttons and their attached
1090    drop-down arrows.
1091  * tagmanager/latex.c:
1092    Improve parsing of sections and chapters by ignoring shortnames
1093    like \section[shortname]{label} (closes #2890477).
1096 2009-11-19  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1098  * src/geanymenubuttonaction.c:
1099    Try to fix Gtk warning when using Tools->Reload Configuration.
1102 2009-11-18  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1104  * src/highlighting.c, doc/geany.txt, doc/geany.html,
1105    data/filetypes.nsis, data/filetypes.php, data/filetypes.perl,
1106    data/filetypes.pascal, data/filetypes.docbook,
1107    data/filetypes.python, data/filetypes.conf:
1108    Use filetypes.foo [lexer_properties] group instead of hardcoding
1109    lexer properties (more flexible e.g. for custom filetypes).
1110  * src/highlighting.c, data/filetypes.xml, data/filetypes.html:
1111    Replace filetypes.xml html_asp_default_language key with
1112    filetypes.html asp.default.language property in [lexer_properties]
1113    group.
1116 2009-11-17  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1118  * doc/geany.txt, doc/geany.html:
1119    Fix slightly wrong description of how to insert Unicode characters.
1120  * src/ui_utils.c:
1121    Implement GTK_FILE_CHOOSER_ACTION_OPEN mode in
1122    ui_setup_open_button_callback().
1123  * src/prefs.c, src/prefs.c, src/vte.c:
1124    Refactor color and font button callback functions in the
1125    preferences dialog. Move the VTE related callback functions
1126    into vte.c.
1127    Make use of ui_setup_open_button_callback().
1128  * src/printing.c:
1129    Improve printing status texts (patch by Dominic Hopf, thanks).
1130  * src/prefs.c, src/vte.c:
1131    Use the default dialog title set by ui_setup_open_button_callback()
1132    to be more consistent and to save one string.
1135 2009-11-16  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1137  * tagmanager/c.c:
1138    Separate DKinds from CKinds.
1139    Don't generate macro tags for D, Java.
1142 2009-11-12  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1144  * tagmanager/ctags.c, tagmanager/general.h:
1145    Make TagManager Assert statements cause g_warning on failure.
1146  * src/keybindings.c:
1147    Fix reflow paragraph command when cursor < anchor using
1148    sci_fix_selection().
1151 2009-11-10  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1153  * tagmanager/perl.c:
1154    Fix Geany segfault with constant tags (#2895168).
1155  * src/symbols.c:
1156    Fix invalid tree iter access when using tv_iters.tag_other but not
1157    using tv_iters.tag_variable.
1158  * HACKING, tagmanager/perl.c:
1159    Fix parsing Perl format statements ("other" type doesn't seem to work).
1160  * tagmanager/tm_tag.c, tagmanager/perl.c, HACKING:
1161    Fix using "other" tag type.
1164 2009-11-09  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1166  * src/vte.c:
1167    Remove useless comment about applying settings only when libvte.so
1168    could be loaded which is only displayed *if* libvte.so is loaded.
1169  * src/editor.c:
1170    Allow autocompletion for HTML entities even within a word.
1171  * src/geanymenubuttonaction.c:
1172    Only set the menu of the button if a non-empty GtkMenu is passed to
1173    geany_menu_button_action_set_menu() so the menu arrow keeps
1174    insensitive.
1177 2009-11-07  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1179  * tagmanager/c.c:
1180    Fix parsing some Java code (e.g. filetypes.java) after r4407.
1183 2009-11-06  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1185  * tagmanager/c.c:
1186    Parse D functions with contracts (fixes #1885480).
1187    Parse D alias statement like typedef.
1188    (Ignore some more D keywords).
1189  * tagmanager/c.c:
1190    Fix creating D interface tags properly.
1191  * tagmanager/c.c:
1192    Parse contents of D extern{} and version{} blocks.
1195 2009-11-05  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1197  * src/main.c:
1198    Remove old code.
1201 2009-11-05  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1203  * src/plugindata.h, HACKING:
1204    Deprecate PLUGIN_KEY_GROUP() macro - use plugin_set_key_group()
1205    instead.
1206  * src/callbacks.c:
1207    Show number of files saved on status bar when using Save All.
1208  * src/highlighting.c:
1209    Use default color scheme if pref color scheme file doesn't exist.
1210  * src/keybindings.c:
1211    Fix moving correct lines after selecting whole line(s).
1214 2009-11-04  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1216  * tagmanager/makefile.win32:
1217    Fix broken build on Windows because of a typo
1218    (patch by Timothy Boronczyk, thanks).
1221 2009-11-04  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1223  * src/highlighting.c, src/highlighting.h, src/keyfile.c, src/main.c,
1224    src/editor.h:
1225    Add 'View->Editor->Color Schemes' menu, for now only shown if color
1226    scheme files exist in a colorschemes config directory. Color scheme
1227    files must end in ".conf" and currently only the [named_styles]
1228    section is read.
1229  * src/templates.c, src/utils.c, src/highlighting.c, src/utils.h:
1230    Add utils_get_config_files().
1231  * src/highlighting.c:
1232    Fix issue with default color not being reset if overridden with a
1233    system default color.
1234  * src/highlighting.c:
1235    Only reload filetype files when changing color scheme, not all
1236    configuration files.
1237  * src/filetypes.c, src/document.c, src/document.h, doc/Doxyfile.in:
1238    Deprecate documents_foreach() as it looks more like a function; use
1239    foreach_document() instead.
1240    Generate dox even for GEANY_DISABLE_DEPRECATED declarations.
1243 2009-10-30  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1245  * src/stash.c, src/stash.h:
1246    Use typedef instead of pointer for widget_id function arguments.
1249 2009-10-29  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1251  * src/pluginutils.c:
1252    Don't expand Plugin Preferences page spacing vertically to fill the
1253    height of the dialog.
1254  * src/interface.c, src/keybindings.c, src/keybindings.h, src/prefs.c,
1255    geany.glade, plugins/splitwindow.c:
1256    Allow GeanyKeyBinding label field to contain underscores, which won't
1257    be displayed by Geany. This saves adding near-duplicate translation
1258    strings.
1259    Add mnemonics for 3 Edit->Format menu items.
1260    Add keybindings_get_label().
1261  * src/interface.c, geany.glade:
1262    Use GtkVBoxes for Encoding prefs combo boxes to reduce width of prefs
1263    dialog.
1266 2009-10-28  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1268  * src/ui_utils.c:
1269    Desensitize Edit->Commands menu item when no docs are open.
1270  * src/interface.c, src/keybindings.c, src/callbacks.c,
1271    src/callbacks.h, geany.glade:
1272    Add 'Reflow, Transpose, Smart line indent' Edit->Format menu items.
1273  * src/sciwrappers.c, src/sciwrappers.h, src/editor.c:
1274    Add general function sci_get_string() that works with any string
1275    buffer messages that follow the Windows message convention.
1276  * src/pluginprivate.h, src/interface.c, src/keybindings.c,
1277    src/keybindings.h, src/callbacks.c, src/callbacks.h,
1278    src/pluginutils.c, src/pluginutils.h, geany.glade:
1279    Add 'Edit->Plugin Preferences' menu item and keybinding.
1280    Don't include plugindata.h in pluginutils.h because it redefines the
1281    GEANY() macro for plugin use.
1282  * doc/geany.txt, doc/geany.html:
1283    Update for Plugin Preferences keybinding.
1286 2009-10-27  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1288  * src/editor.c:
1289    Sort document word completion list.
1290  * src/interface.c, src/keybindings.c, src/callbacks.c,
1291    src/callbacks.h, geany.glade:
1292    Add some useful commands to editor popup menu under "Commands"
1293    submenu (thanks to Lex).
1294    Move 'Duplicate line or selection' from Format -> Commands submenu.
1295  * src/prefs.c, src/ui_utils.c, doc/geany.txt, doc/geany.html:
1296    Enable switching the sidebar to the right on Windows again, as it
1297    apparently works after all.
1298  * src/editor.c:
1299    Fix using tab to autocomplete in some other situations that word part
1300    completion doesn't apply in.
1301  * src/templates.c, src/interface.c, src/ui_utils.c, geany.glade:
1302    Add Edit->Commands submenu which is shared with the editor popup menu.
1303  * src/interface.c, src/keybindings.c, src/ui_utils.c, geany.glade:
1304    Change editor popup Commands submenu to start as child of menubar Edit
1305    menu, as this is more usual e.g. for keybindings initialization.
1306  * src/interface.c, src/keybindings.c, src/tools.c, src/ui_utils.c,
1307    geany.glade:
1308    Share a single Format submenu for menubar Edit and popup menu.
1311 2009-10-26  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1313  * src/build.c:
1314    Fix a compiler warning about an uninitialised variable.
1315  * wscript:
1316    Don't install unnecessary headers: dialogs.h, main.h, plugins.h,
1317    sciwrappers.h, build.h (for the Waf build system,
1318    accordingly to r4366).
1321 2009-10-26  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1323  * src/prefs.h, src/search.h, src/support.h, src/templates.h,
1324    src/toolbar.c, src/toolbar.h:
1325    Add missing dox for types/files in the API.
1326  * src/filetypes.h, src/Makefile.am, plugins/geanyplugin.h:
1327    Don't install unnecessary headers: dialogs.h, main.h, plugins.h,
1328    sciwrappers.h, build.h. (This helps to get compiler warnings for uses
1329    of functions not in the API).
1330    Warning: any plugins that include these headers should remove them.
1331  * src/build.c, src/build.h:
1332    Move function doc-comments to build.c so they stay in sync. Note:
1333    these functions are still not in the API.
1334  * HACKING:
1335    Add 'Doc-comments' plugin API subsection.
1336  * plugins/filebrowser.c:
1337    Fix packing configure widgets equally.
1338    Use spacing multiples of 6 as recommended by Gnome HIG.
1339  * src/prefs.c, src/ui_utils.c, doc/geany.txt, doc/geany.html:
1340    Disable switching the sidebar to the right on Windows as it will
1341    probably fail like the Split Window plugin.
1342  * src/document.c:
1343    Improve 'Detect from file' indentation pref by ignoring lines with
1344    indentation wider than 24 characters as this is more likely to be
1345    alignment than indentation.
1348 2009-10-25  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1350  * plugins/saveactions.c:
1351    Fix adding the filetype's default extension when using the
1352    Instant Save plugin (closes #2885142).
1353  * src/main.c:
1354    Before looking for line and column numbers specified as part
1355    of a filename, ensure the file doesn't exist on disk. This allows
1356    opening of files like "test:0".
1357  * src/sidebar.c:
1358    Rename "select" variables into "selection" to avoid shadowed names.
1359  * plugins/geanyfunctions.h, src/plugins.c, src/plugindata.h:
1360    Add ui_widget_modify_font_from_string() and sci_goto_line()
1361    to the plugin API.
1362  * plugins/filebrowser.c:
1363    Rename "select" variables into "selection" to avoid shadowed names.
1364    Make use of ui_widget_modify_font_from_string().
1367 2009-10-23  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1369  * src/interface.c, src/ui_utils.h, src/prefs.c, src/keyfile.c,
1370    src/main.c, src/ui_utils.c, doc/geany.txt, doc/geany.html,
1371    geany.glade:
1372    Add sidebar position interface pref.
1375 2009-10-23  Lex Trotman  <elextr.at.gmail.dot.com>
1377  * doc/geany.txt, doc/geany.html:
1378    Add missing underscores to links.
1381 2009-10-22  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1383  * src/keybindings.c, src/keybindings.h, doc/geany.txt, doc/geany.html:
1384    Add 'Move line(s) up/down' keybindings.
1387 2009-10-22  Lex Trotman  <elextr.at.gmail.dot.com>
1389  * src/build.c, src/build.h, src/filetypes.h:
1390    Include code for project filetype execute commands and fix bug in
1391    saving project filetypes list.
1392  * src/project.c, src/build.c, doc/geany.txt:
1393    Make non-project execute configuration save to filetypes not geany.conf.
1394    Fix closing of project failing to remove build commands dialog entry.
1397 2009-10-21  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1399  * src/project.c, src/ui_utils.c:
1400    Set border width for project properties build table.
1401  * geany.glade, src/interface.c:
1402    Don't expand hard tab width alignment.
1405 2009-10-20  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1407  * src/highlighting.c, src/filetypes.c, src/document.c, src/symbols.c,
1408    doc/geany.txt, doc/geany.html:
1409    Support loading global tags files for custom filetypes.
1410  * src/keybindings.c, src/keybindings.h, src/editor.c, src/editor.h,
1411    doc/geany.txt, doc/geany.html:
1412    Add 'Word part completion' keybinding so keys other than Tab can be
1413    used, or to clear/change the combination so Tab does full completion
1414    like before.
1415  * src/keybindings.c, src/keybindings.h, doc/geany.txt, doc/geany.html:
1416    Add 'Select to previous/next word part' keybindings.
1417  * src/keybindings.c, src/keybindings.h, doc/geany.txt, doc/geany.html:
1418    Add 'Switch to Messages' focus keybinding.
1421 2009-10-19  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1423  * doc/geany.txt, doc/geany.html:
1424    Add 'Custom filetypes' section.
1425  * src/filetypes.c, src/filetypes.h, src/document.c,
1426    doc/geany.txt, doc/geany.html, tagmanager/tm_source_file.c,
1427    tagmanager/include/tm_source_file.h:
1428    Add filetype "tag_parser" key so custom filetypes can use an existing
1429    tag parser.
1430    Add tm_source_file_get_named_lang().
1431  * src/highlighting.c, src/filetypes.c, src/filetypes.h, doc/geany.txt,
1432    doc/geany.html:
1433    Add filetype "lexer_filetype" key so custom filetypes can use an
1434    existing lexer.
1437 2009-10-19  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
1439  * THANKS, src/about.c:
1440    Add Xhacker Liu for his work at zh_CN translation to long list of
1441    translators.
1444 2009-10-16  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1446  * src/sciwrappers.c:
1447    Remove unnecessary line number margin padding.
1448  * scintilla/include/Scintilla.h, scintilla/include/Scintilla.iface,
1449    scintilla/ScintillaBase.h, scintilla/ScintillaBase.cxx,
1450    src/editor.c:
1451    Improve word part autocompletion so AC list is not cancelled and
1452    reshown (this also stops the selection changing).
1453    Add SCI_AUTOCGETCURRENTTEXT message (will be sent upstream).
1454  * src/editor.c:
1455    Improve CamelCase word part autocompletion for runs of capital letters.
1456  * src/editor.c:
1457    Don't complete snippets if there's a selection.
1460 2009-10-16  Lex Trotman  <elextr(at)gmail(dot)com>
1462  * src/build.c:
1463    Fix crash opening project when Geany started with no geany.conf.
1466 2009-10-15  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1468  * scintilla/ScintillaBase.h, scintilla/ScintillaBase.cxx, src/utils.c,
1469    src/utils.h, src/sciwrappers.c, src/editor.c, doc/geany.txt,
1470    doc/geany.html:
1471    Add word part autocompletion for the current selected item when
1472    pressing Tab - Enter still completes normally.
1473    Add foreach_str() API macro.
1474    Temporarily modify scintilla to say if tab was used for
1475    autocompletion.
1476  * src/templates.c, src/build.c, src/utils.c, src/utils.h,
1477    src/project.c, src/search.c, src/editor.c, src/ui_utils.c,
1478    plugins/classbuilder.c:
1479    Revert r4301 - utils_free_pointers() taking 4 arguments.
1480  * src/highlighting.c, src/highlighting.h, src/plugindata.h,
1481    src/document.c, src/plugins.c, plugins/geanyfunctions.h,
1482    plugins/splitwindow.c:
1483    Add highlighting_set_styles() to API, use for Split Window plugin so
1484    filetypes.common settings get set too.
1485    Make highlighting_set_styles() take GeanyFiletype pointer instead of
1486    filetype id.
1487  * src/document.c, src/editor.c, plugins/splitwindow.c:
1488    Call editor_apply_update_prefs() from editor_create_widget() so
1489    correct tab width and other settings are applied for Split Window
1490    plugin.
1493 2009-10-14  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1495  * src/keybindings.c:
1496    Don't include trailing newlines when using reflow command.
1497  * src/notebook.c:
1498    Add stock close buttons to notebook tab popup menu.
1499  * src/plugindata.h, src/document.c, src/plugins.c, src/ui_utils.c,
1500    plugins/geanyfunctions.h:
1501    Add document_get_notebook_page() to API.
1502    Minor edits of dox.
1503  * data/templates/files/file.html, data/templates/files/file.php:
1504    Fix wrong escaping (patch by dmaphy, thanks - closes #2878138).
1505  * src/interface.c, src/ui_utils.c, geany.glade:
1506    Move Tools configuration items to top of menu.
1507  * src/keybindings.c, src/search.c:
1508    Fix warning when using Find in Files with no documents open; make
1509    keybinding work in this case.
1512 2009-10-13  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1514  * src/notebook.c, src/plugindata.h, src/plugins.c, src/ui_utils.c,
1515    src/ui_utils.h, plugins/geanyfunctions.h, plugins/splitwindow.c:
1516    Make Split Window 'Show current document' button have a drop-down menu
1517    to select the other documents.
1518    Add new API function ui_menu_add_document_items().
1521 2009-10-13  Lex Trotman  <elextr(at)gmail(dot)com>
1523  * src/build.c:
1524    Fix sensitivity settings for compile and build toolbar items.
1527 2009-10-12  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1529  * src/templates.c:
1530    Don't use filetype submenus for templates (slower to navigate, often
1531    only 1 per-filetype anyway).
1532  * src/templates.c:
1533    Put old filetype template menu items in 'Old' submenu as they should
1534    be removed after the 0.19 release.
1535  * src/keybindings.c, src/keybindings.h, src/pluginutils.c:
1536    Add GeanyKeyGroup callback support, which allow keybinding callbacks
1537    to be ignored if inappropriate so a later keybinding with the same
1538    key combination can intercept it. (Also group callbacks are usually
1539    tidier than separate callbacks).
1540    Remove special handling for GEANY_KEYS_EDIT_COMPLETESNIPPET.
1541  * src/templates.c, src/build.c, src/utils.c, src/utils.h,
1542    src/project.c, src/search.c, src/editor.c, src/ui_utils.c,
1543    plugins/classbuilder.c:
1544    Make utils_free_pointers() take 4 arguments, add to API.
1545  * src/templates.c, src/tools.c, src/ui_utils.c:
1546    Fix memory leaks with gtk_container_get_children().
1549 2009-10-12  Lex Trotman  <elextr(at)gmail(dot)com>
1551  * src/build.c:
1552    Ensure that old style build config is not loaded if it does not exist.
1555 2009-10-12  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
1557  * THANKS, src/about.c, po/LINGUAS, po/gl.po:
1558    Added Galician translation. Thanks to José Manuel Castroagudín Silva.
1561 2009-10-11  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1563  * geany.glade, THANKS, src/about.c, src/document.c, src/encodings.c,
1564    src/interface.c:
1565    Apply set default encoding for existing files only if the files are
1566    non-Unicode (patch by Alexey Antipov, thanks).
1569 2009-10-04  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1571  * src/highlighting.c:
1572    Move new_styleset() and preprocessor setup code into styleset_c_like().
1573  * src/highlighting.c:
1574    Call apply_filetype_properties() from styleset_c_like().
1577 2009-10-03  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1579  * doc/geany.txt, doc/geany.html:
1580    Improve information about predefined keybindings which are
1581    commonly used across applications (patch by Lex Trotman, thanks).
1582  * src/printing.c:
1583    Enable embedded page setup properties in the (Unix) Print dialog
1584    on newer GTK versions (closes #2870596).
1585  * src/highlighting.c:
1586    Map global types (read from tags files) to keyword style for
1587    filetype Java.
1590 2009-10-01  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1592  * src/templates.c:
1593    Fix wrong creation of filetype template menu items for custom
1594    filetypes.
1595  * src/highlighting.c:
1596    Use jscript_keyword for SCE_HB[A]_WORD markup styles.
1597  * src/templates.c:
1598    Group 'New with template' items by filetype submenu (currently only for
1599    toolbar menu).
1600    Show custom file template items before filetype template items.
1601  * src/templates.c, src/interface.c, src/geanymenubuttonaction.c,
1602    geany.glade:
1603    Only use one 'New with template' submenu - reparent as needed.
1604  * src/templates.c:
1605    Don't create templates/filetype.none either.
1606  * src/templates.c:
1607    Warn if custom template file no longer exists.
1610 2009-09-30  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1612  * src/symbols.c:
1613    Add missing icon for Java packages in the Symbol List.
1616 2009-09-30  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1618  * src/highlighting.c, data/filetypes.vala:
1619    Add Vala keywords to conf file.
1620  * src/templates.c, doc/geany.txt, doc/geany.html:
1621    Read custom file templates from $prefix/share/geany/templates/files as
1622    well as user dir.
1623  * src/templates.c, data/templates, data/templates/files,
1624    data/templates/files/file.rb, data/templates/files/file.html,
1625    data/templates/files/main.java, data/templates/files/main.c,
1626    data/templates/files/main.cxx, data/templates/files/file.php,
1627    data/templates/files/main.d, data/templates/files/program.pas,
1628    data/templates/files/main.py, data/templates/files/file.tex,
1629    wscript, Makefile.am:
1630    Move filetype template defaults into custom file template files.
1633 2009-09-29  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1635  * src/symbols.c, tagmanager/perl.c:
1636    Change Perl tag parser to ctags SVN r601. This removes support for
1637    buggy local/my/our but it parses constant/format/labels and should
1638    be less buggy overall (closes #2861232).
1639  * src/templates.c, src/utils.c, src/utils.h, src/symbols.c:
1640    Add utils_get_file_list_full() which can optionally sort or include
1641    a full path for each list item.
1642  * src/utils.c, src/plugindata.h, src/plugins.c:
1643    Add utils_get_file_list_full() to API.
1646 2009-09-28  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1648  * src/keybindings.c, src/sidebar.c, src/sidebar.h,
1649    src/makefile.win32, src/project.c, src/prefs.c, src/treeviews.c,
1650    src/callbacks.c, src/notebook.c, src/treeviews.h, src/document.c,
1651    src/main.c, src/symbols.c, src/Makefile.am, src/ui_utils.c,
1652    po/POTFILES.in, wscript:
1653    Rename treeviews.[hc] -> sidebar.[hc].
1654  * data/filetypes.common:
1655    Remove unused [styling] arguments.
1656  * src/highlighting.c, data/filetypes.markdown,
1657    data/filetypes.restructuredtext:
1658    Remove style defaults from the code - just read them from
1659    configuration files.
1660  * src/highlighting.c, HACKING:
1661    Add apply_style_entries() to simplify implementing styleset_foo().
1662  * src/highlighting.c:
1663    Remove filetype keyword defaults from the code - just read them from
1664    configuration files.
1665  * src/highlighting.c:
1666    Add sci_set_keywords() wrapper.
1669 2009-09-27  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1671  * scripts/create_py_tags.py:
1672    Make the code a bit more pythonic.
1673  * doc/images/build_menu_commands_dialog.png,
1674    doc/images/main_window.png:
1675    Add new images referenced in the documentation.
1676  * doc/geany.html, doc/geany.txt:
1677    Several documentation improvements (patch by Lex Trotman, thanks).
1678  * src/pluginutils.c:
1679    Fix setting the appropriate page of the combined plugins
1680    preferences dialog.
1683 2009-09-27  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1685  * src/keybindings.c:
1686    Only focus toolbar goto line entry when pressing keybinding if it's
1687    visible (patch by Eugene Arshinov, thanks).
1688  * src/callbacks.c:
1689    Focus editor after entering a number in the goto line toolbar entry.
1690  * configure.in:
1691    Use AC_PATH_PROG instead of which for portability (patch by Erik
1692    Southworth, thanks).
1693  * src/plugins.c:
1694    Show plugins that only implement plugin_configure_single() in the
1695    multiple-configure dialog as a page with a configure button on it.
1696    Add padding for multiple-configure dialog.
1697    Make the multiple-configure dialog notebook tabs scrollable.
1698  * src/pluginutils.c, src/pluginutils.h:
1699    Don't build pluginutils.o if HAVE_PLUGINS is not defined.
1700  * src/pluginprivate.h, src/plugindata.h, src/pluginutils.c,
1701    src/plugins.c, src/pluginutils.h, src/plugins.h, po/POTFILES.in,
1702    plugins/geanyfunctions.h, plugins/filebrowser.c:
1703    Add plugin_show_configure() API utility function.
1704    Add File Browser popup menu 'Preferences' item.
1705  * src/highlighting.c:
1706    Add get_keyfile_ints() instead of using tmp_style hack.
1707  * src/highlighting.c, data/filetypes.xml:
1708    Change new html_asp_default_language markup pref to use integer,
1709    not hex in config file.
1710    Fix minor issue with changing pref back to 0.
1711  * src/highlighting.c:
1712    Fix possible segfault in get_keyfile_int() if key value is malformed.
1715 2009-09-24  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1717  * THANKS, src/about.c, src/highlighting.c, data/filetypes.xml:
1718    Add "html_asp_default_language" pseudo style to filetypes.xml
1719    to allow setting the used language in embedded ASP code
1720    (patch by Ross McKay, thanks).
1721  * src/filetypes.xml:
1722    Update VBScript keywords (patch by Ross McKay, thanks).
1725 2009-09-24  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1727  * src/keybindings.c, THANKS:
1728    Apply patch from Lex Trotman to make 'Reflow block/lines(s)'
1729    keybinding use line breaking column when enabled.
1730  * src/document.c:
1731    Fix showing the document before reload dialog when opening an
1732    already-open file.
1733  * src/pluginprivate.h, src/plugins.c, doc/pluginsymbols.c:
1734    Add plugin_configure_single() plugin symbol which is easier to
1735    implement than plugin_configure() but won't support a
1736    multiple-plugin configure dialog.
1737  * src/plugins.c:
1738    Show multiple plugins in the 'Configure Plugins' dialog.
1741 2009-09-22  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1743  * doc/geany.txt, doc/geany.html:
1744    Change 'Foo tab in preferences dialog' titles to 'Foo preferences'.
1745    Minor edits.
1746  * doc/geany.txt, doc/geany.html:
1747    Add 'Toolbar entries' section.
1748  * doc/geany.txt, doc/geany.html:
1749    Update 'Go to line' keybinding description.
1750  * doc/geany.txt, doc/geany.html:
1751    Split keybinding table into group tables; update KB links.
1754 2009-09-21  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1756  * src/build.c:
1757    Fix compiler warnings about uninitialised variables.
1758  * src/callbacks.c, src/document.c:
1759    When reloading files, use the previously set encoding instead of
1760    detecting it again (closes #2862041).
1761  * configure.in:
1762    Turn on automake silent rules if supported.
1765 2009-09-21  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1767  * src/utils.c:
1768    Speed up sorting in utils_get_file_list(). This reduces the file
1769    browser delay on displaying a big directory, e.g. /usr/bin.
1770  * src/build.c:
1771    Expand command entry width when expanding Build Commands dialog.
1772  * src/build.c:
1773    Split Build Commands dialog notes label and edit text.
1774  * src/build.c:
1775    Add padding for Build Commands dialog separators.
1776    Add colons for regex field labels; fix 1 capitalisation.
1777  * src/build.c:
1778    Fix none filetype Build Commands dialog label.
1779    Make group labels bold.
1780  * src/build.c, src/ui_utils.h, src/dialogs.c, src/notebook.c,
1781    src/ui_utils.c:
1782    Add & use ui_label_set_markup(), ui_label_new_bold().
1783  * src/ui_utils.h, src/printing.c, src/tools.c, src/project.c,
1784    src/prefs.c, src/dialogs.c, src/geanyentryaction.c,
1785    src/plugindata.h, src/vte.c, src/search.c, src/ui_utils.c:
1786    Make ui_entry_add_clear_icon() take a GtkEntry, not GtkWidget.
1787  * src/keybindings.c:
1788    Make 'Go to Line' keybinding focus the toolbar entry if visible.
1791 2009-09-20  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1793  * src/filetypes.c, src/filetypes.h, src/symbols.c,
1794    tagmanager/parsers.h, tagmanager/makefile.win32,
1795    tagmanager/abc.c, tagmanager/Makefile.am, data/filetypes.abc,
1796    data/filetype_extensions.conf, wscript:
1797    Add new filetype: Abc (patch by Eric Forgeot, thanks).
1798  * tagmanager/php.c:
1799    Merge recent changes from the CTags project to further improve
1800    PHP symbol parsing.
1803 2009-09-17  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1805  * src/printing.c:
1806    Fix wrong alignment of printed pages when page headers are
1807    disabled (closes #2856822).
1808    Plug a small memory leak and improve function signature of
1809    add_page_header().
1810  * src/keyfile.c:
1811    Save an if expression.
1812  * src/ui_utils.c:
1813    After clearing a text field using the embedded clear icon, put the
1814    input focus into this text field.
1817 2009-09-17  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1819  * plugins/filebrowser.c:
1820    Free file list memory whilst iterating the list.
1821    Minor formatting fixes.
1822  * src/utils.c, src/utils.h:
1823    Add foreach_dir() API macro.
1824    Update API docs for utils_get_file_list().
1825  * wscript, src/queue.c, src/editor.c, src/Makefile.am, src/queue.h,
1826    po/POTFILES.in:
1827    Remove queue.[hc] - use GQueue instead of GeanyQueue.
1828    Beep if there are no more snippet positions.
1829    Limit length of snippet positions queue to 20.
1832 2009-09-16  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1834  * src/keybindings.c, src/callbacks.c, src/search.c:
1835    Make Goto Tag commands use the current selection if present (useful
1836    for selecting part of a tag or for ReST section names with spaces
1837    in).
1838  * src/document.c:
1839    Don't move the cursor when reloading.
1840  * src/plugindata.h, src/editor.c, src/editor.h:
1841    Make editor_prefs.snippets hash table private (not a pref).
1844 2009-09-15  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
1846  * src/main.c:
1847    Remove deprecated --debug flag. Please use --verbose/-v instead.
1850 2009-09-15  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1852  * src/search.c:
1853    Show Find in Files stderr output in messages window instead of
1854    debug window so that invalid regex messages can be seen easily.
1855    Combine FIF stdout and stderr callback code.
1858 2009-09-14  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1860  * src/utils.c:
1861    Fix opening filenames beginning with two dots (closes #2858487).
1862  * src/interface.c, src/highlighting.c, src/prefs.c, src/filetypes.c,
1863    src/filetypes.h, src/main.c, doc/geany.txt, doc/geany.html,
1864    data/filetypes.common, geany.glade:
1865    Update syntax highlighting after changing the 'Invert syntax
1866    highlighting colors' pref, instead of requiring a restart.
1867    Remove filetypes.common invert_all option - use 'Invert syntax
1868    highlighting colors' pref instead (closes #2854525).
1869  * src/prefs.c, src/dialogs.c, src/dialogs.h:
1870    Add 'Allow' button when showing the conflicting keybinding dialog.
1871    Make dialogs_show_question_full() use GTK dialog on Windows if
1872    button text is not the stock yes/no items.
1873    Add dialogs_show_prompt() which also has an 'Apply' button.
1874  * src/queue.c, src/queue.h:
1875    Add warning that GeanyQueue may be removed.
1876  * src/keybindings.c, src/editor.c, src/editor.h:
1877    Change snippet_goto_next_cursor() to
1878    editor_goto_next_snippet_cursor() as it's in editor.h.
1879    Avoid using GPOINTER_TO_INT macro.
1882 2009-09-13  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1884  * src/keybindings.c:
1885    Fix 'Reflow block' command when at the last paragraph and there's
1886    no last newline (patch by Eugene Arshinov, thanks).
1887  * HACKING:
1888    Add 'Compiler options & warnings' section.
1889    Update Style section to be clearer about code alignment and show
1890    some example code.
1891    Other minor edits.
1894 2009-09-12  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1896  * src/keybindings.c, src/sciwrappers.c, src/sciwrappers.h,
1897    src/plugindata.h, src/plugins.c, src/editor.c,
1898    plugins/geanyfunctions.h:
1899    Add sci_set_marker_at_line(), sci_delete_marker_at_line(),
1900    sci_is_marker_set_at_line() to the plugin API (thanks to Yura
1901    Siamashka).
1902    Add sci_toggle_marker_at_line().
1903    Fix SciFuncs alignment.
1906 2009-09-11  Lex Trotman  <elextr(at)gmail(dot)com>
1908  * src/build.c
1909    Fix erroneous free of returned string in prepare_run_script.
1912 2009-09-10  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
1914  * data/filetypes.latex:
1915    Changing default value for showing pdf and dvi to ensure to take
1916    *.pdf and *.dvi file.
1919 2009-09-07  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
1921  * src/about.c, THANKS:
1922    Change language string for Slovenian translation.
1925 2009-09-07  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1927  * tagmanager/txt2tags.c:
1928    Fix multi-byte character constant comparison.
1929  * src/treeviews.c:
1930    Fix Gtk warning when trying to update documents popup menu item
1931    sensitivity before they exist.
1934 2009-09-06  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
1936  * src/plugins.c:
1937    Improve the opening string in the plugin manager dialog.
1938  * doc/geany.css:
1939    Use "max-width" to set the document width of the generated
1940    HTML documentation to let the text be auto-wrapped.
1941  * src/prefs.c, src/tagmanager/include/guregex.h,
1942    src/tagmanager/include/tm_tagmanager.h:
1943    Remove trailing spaces (patch by André Hentschel, thanks).
1944  * src/treeviews.c:
1945    Fix a compiler warning.
1946  * src/document.c:
1947    Fix crash when opening documents.
1948  * src/build.c, src/build.h, src/project.c:
1949    Adjust coding style (no code changes).
1950  * src/build.c, src/project.c:
1951    Use NZV() macro instead of strlen() to check for empty strings.
1952    Remove the FOREACH_GEANYBUILDCMD_ENTRY() macro.
1953  * doc/plugins.dox, plugins/geanyfunctions.h, src/document.c,
1954    src/geanyobject.c, src/geanyobject.h, src/plugindata.h,
1955    src/plugins.c, THANKS:
1956    Add new plugin signal: "document-before-save".
1957    Add get_line_end_position(), set_target_start(), set_target_end(),
1958    replace_target() to the plugin API
1959    (patch by Eugene Arshinov, thanks).
1960    Add new plugin signal: "document-filetype-set" (closes #2852286).
1961  * data/filetype_extensions.conf, data/filetypes.txt2tags, src/about.c,
1962    src/filetypes.c, src/filetypes.h, src/plugindata.h, src/symbols.c,
1963    tagmanager/Makefile.am, tagmanager/makefile.win32,
1964    tagmanager/parsers.h, tagmanager/txt2tags.c, tagmanager/txt2tags.c,
1965    wscript, THANKS:
1966    Add new filetype: Txt2Tags (patch by Eric Forgeot, thanks).
1969 2009-09-04  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1971  * src/treeviews.c, src/document.c:
1972    Apply patch from Thomas Martitz to improve sidebar type-ahead code:
1973    Use gtk_notebook_set_current_page() instead of
1974    document_open_file_full() when choosing an item from the documents
1975    list.
1976    Avoid using goto in document_open_file_full().
1979 2009-09-03  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
1981  * src/treeviews.c, src/document.c, src/document.h, THANKS:
1982    Enable type-ahead find for sidebar symbols and documents tabs
1983    (patch by Thomas Martitz, thanks).
1984  * src/build.c:
1985    Fix 2 free's of possibly uninitialized pointers.
1988 2009-09-03  Lex Trotman  <elextr(at)gmail(dot)com>
1990  * src/build.c, src/filetypes.h, src/filetypes.c
1991    Only write filetype config files when build command or regex is
1992    actually changed.  Removed commented code in src/filetypes.c.
1993  * src/build.c
1994    Ensure uses of filename are protected against nulls when running
1995    a build command and give status message if not.
1998 2009-09-01  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2000  * src/plugins.c:
2001    Remove plugin from plugin manager dialog on unloading if it no
2002    longer exists or is incompatible.
2005 2009-08-31  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2007  * src/plugins.c:
2008    Add warning if only one of the plugin_key_group[_info] symbols is
2009    defined for a plugin.
2010  * src/templates.c, src/highlighting.c, src/dialogs.c, src/filetypes.c,
2011    src/filetypes.h, src/document.c, src/main.c, src/symbols.c,
2012    TODO:
2013    Merge custom-filetypes branch:
2014    Support adding custom filetype files e.g. filetypes.Foo.conf.
2015  - Code:
2016    Allow GeanyFiletype::extension to be NULL.
2017    Add note about using GeanyFiletype pointer instead of filetype_id
2018    for filetypes.c function arguments.
2019    Replace styleset_none() with styleset_default().
2022 2009-08-30  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2024  * src/prefs.c:
2025    Show the sidebar if either the documents or the symbols list are
2026    enabled (related to #1876107).
2029 2009-08-29  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2031  * src/build.c, src/filetypes.c:
2032    Fix compiler warnings.
2033  * src/utils.c:
2034    Fix removing leading double slashes in filenames which are used for
2035    network resources on Windows (closes #2844085).
2038 2009-08-27  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2040  * src/keybindings.c:
2041    Fix Make keybindings (patch by Lex Trotman, thanks).
2042  * src/geany.h:
2043    Define G_GNUC_WARN_UNUSED_RESULT if GLib < 2.10.
2044  * doc/plugins.dox:
2045    Mention Files link at top for header files; demoplugin.c.
2046    Minor edits; remove 'far from being complete'.
2047  * src/keyfile.c, src/keyfile.h, src/main.c,
2048    data/filetype_extensions.conf, HACKING:
2049    Remove --generate-data-files argument & code - just edit
2050    filetype_extensions.conf by hand (filetype order was broken
2051    anyway).
2052    Add *.H extension for C++ (useful for non-Windows systems).
2055 2009-08-27  Lex Trotman  <elextr(at)gmail(dot)com>
2057  * src/build.c
2058    Fix implementation of loading old project files with base
2059    directories. Use project_make_base_path instead of re-
2060    implementing.  Now depends on project.c reading base dir
2061    prior to calling load_build_menu.
2062  * src/build.c
2063    Change usage of project base directory to conform with
2064    previous documented behavior when loading old project files.
2065  * src/build.c:
2066    Change make custom and make object to ignore make in base path
2067    when reading old project file settings.  Changed some indent
2068    spaces to tabs. Fix missing compile menu accelerator.
2071 2009-08-26  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2073  * doc/plugins.dox:
2074    Add warning about not using undocumented features.
2075    Add reference to HACKING for plugin API development.
2076  * HACKING:
2077    Add section 'Plugin API/ABI design'.
2078  * src/keybindings.h, src/makefile.win32, src/project.h,
2079    src/filetypes.h, src/Makefile.am, wscript:
2080    Use GEANY_PRIVATE to hide some fields from plugins.
2081  * src/build.c:
2082    Fix invalid memory read (#2844632, patch by Lex Trotman, thanks).
2083  * src/build.c, src/build.h, src/project.c:
2084    Use build_ prefix for 3 functions in build.h; add a static modifier.
2087 2009-08-25  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2089  * tagmanager/php.c:
2090    Improve parsing of PHP functions by requiring a valid modifier or
2091    whitespace before the 'function' keyword to ignore some false
2092    positives like function tags inside comments
2093    (patch by Harold Aling, thanks).
2094  * tagmanager/python.c:
2095    Don't parse comments after import statements and other tags
2096    (closes #2838938, patch by Huandari Lopez, thanks).
2099 2009-08-25  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2101  * data/filetypes.markdown:
2102    Add filetypes.markdown for configuration (thanks to Jon Strait).
2103  * src/build.c, src/keybindings.c, src/keybindings.h, src/plugindata.h,
2104    src/pluginutils.c, src/plugins.c, src/pluginutils.h,
2105    plugins/geanyfunctions.h:
2106    Remove GeanyKeyGroup struct from the API - plugins should not set
2107    these fields.
2108    Make keybindings_set_item() duplicate the name and label fields
2109    (needed by GeanyLua) and return a keybinding pointer.
2110    Add keybindings_get_item() to the API (in case it's useful).
2111    Move some keybinding code out of plugin source files.
2114 2009-08-24  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2116  * src/build.h, src/project.h, src/plugindata.h, src/filetypes.h:
2117    Don't generate build.h API docs until everything is approved and
2118    functions are actually in geany_functions.
2119    Move new GeanyFiletype and GeanyProject field(s) to end of struct
2120    as they may be changed or made private later.
2121    Break ABI for fields removed.
2124 2009-07-30  Lex Trotman  <elextr(at)gmail(dot)com>
2126  * src/build.h, src/build.c, src/keybindings.c, src/filetypes.c
2127    src/keyfile.c, src/project.c
2128    Changed names of symbols visible in build API to GEANY_xxx.
2131 2009-07-29  Lex Trotman  <elextr(at)gmail(dot)com>
2133  * src/project.h, src/project.c, src/build.c
2134    Remove make_in_base_dir and run_cmd fields from project structure.
2135    Replaced by build functionality.  Remove incorrect use in src/build.c
2136    build_run_cmd function.
2139 2009-07-28  Lex Trotman  <elextr(at)gmail(dot)com>
2141  * src/project.h, src/project.c
2142    Removed unused project_get_make_dir function, this is now per
2143    command.
2146 2009-07-28  Lex Trotman  <elextr(at)gmail(dot)com>
2148  * src/build.c, src/build.h, src/project.c, src/keyfile.c, src/filetypes.c
2149    Fix some more warnings.
2150    Fix commented out execute/stop toolbar code in build.c.
2151    Add extra plugins documentation for GBO_TO_CMD and GBO_TO_GBG macros.
2152    Changed build.h api so all functions prefixed with build_.
2155 2009-07-27  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2157  * src/build.c, src/build.h, src/project.c:
2158    Fix some gcc warnings with '-Wall -W -ansi' enabled.
2161 2009-07-25  Lex Trotman  <elextr(at)gmail(dot)com>
2163  * src/build.c
2164    Fixed leaks and crashes due to inconsistent use of static vs dynamic strings
2165    when reading old format configuration & project files.
2166  * src/build.c, src/project.c
2167    Fixed GLib array assertion warnings when no project filetypes are
2168    available to be saved.
2170 2009-07-24  Lex Trotman  <elextr(at)gmail(dot)com>
2172  * src/build.c
2173    Fix build warnings.
2176 2009-07-22  Lex Trotman  <elextr(at)gmail(dot)com>
2178  * src/build.h, src/build.c, src/project.c
2179    Created and documented plugins interface to build menu.
2180    Factored out new get_cmd_group function.
2181    Changed name of remove_command function to be consistent with the rest
2182    of the interface & changed calls in project.c.
2183  * src/Makefile.am, wscript
2184    Added build.h to installed files lists.
2186 2009-07-20  Lex Trotman  <elextr(at)gmail(dot)com>
2188  * doc/geany.txt
2189    Updated manual to match build-menu capability.
2192 2009-07-19  Lex Trotman  <elextr(at)gmail(dot)com>
2194  * src/build.c, src/build.h
2195    Added set_build_non_ft_wd_to_proj() for use by project dialog.
2196    Improved interpretation of run_in_base_dir from old [build-settings]
2197    Added spacing to build commands dialog
2198  * src/project.c
2199    Removed run in base path option from project dialog and added button to
2200    set working directories to d the same.
2203 2009-07-18  Lex Trotman  <elextr(at)gmail(dot)com>
2205  * src/build.c
2206    Re-incorporated toolbar changes in trunk accidently excluded in merge
2208 2009-07-17  Lex Trotman  <elextr(at)gmail(dot)com>
2210  * src/build.c
2211    Fixed substitute %f etc in commands
2212    Fixed potential leak in build_replace_placeholder
2213    Fixed leak in prepare_run_script (Thanks for patch Thomas)
2214    Fixed build_replace_placeholder to not require document.
2216 2009-07-17  Lex Trotman  <elextr(at)gmail(dot)com>
2218  * src/build.c, src/build.h, src/filetypes.h, src/filetypes.c
2219    Fixed crash and lots of warnings, deleted some commented out code.
2220  * geany.glade, src/keyfile.c, src/prefs.c, src/prefs.h, src/project.c
2221    Removed make command from preferences and associated code
2223 2009-07-16  Lex Trotman  <elextr(at)gmail(dot)com>
2225  * src/build.c, src/build.h
2226    Incorporated patch for working directory field (thanks Thomas)
2227    Removed run_in_base_dir option and associated code that it replaces
2228    Improved handling of old config files and mapping to new ones.
2230 2009-07-15  Lex Trotman  <elextr(at)gmail(dot)com>
2232  * src/build.h, src/build.c
2233    Changed to itterate over entries in build commands dialog to allow
2234    additional fields to be added
2235    Implement support for multiple run commands
2236  * data/filetypes.latex
2237    Implement configured commands and labels for latex.
2240 2009-07-14  Lex Trotman  <elextr(at)gmail(dot)com>
2242  * src/build.h, src/build.c
2243    added dialog support for error regular expressions from multiple sources
2244    and storing and loading them
2245    fixed some typos and memory leaks
2246  * src/filetypes.c, src/filetypes.h, project.c
2247    added support for using error regexes from multiple sources
2250 2009-07-11  Lex Trotman  <elextr(at)gmail(dot)com>
2252  * src/filetypes.h, src/filetypes.c, src/build.c, src/build.h,
2253    src/project.c
2254    Removal of build menu item source made redundant by the following fix
2255  * src/build.c
2256    Corrected priority oreder and loading of filetype dependent build
2257    menu items saved in the project file.  Added print routine for
2258    debugging command sources and priorities set compile symbol
2259    PRINTBUILDCMDS true to enable
2261 2009-07-10  Lex Trotman  <elextr(at)gmail(dot)com>
2263  * src/build.c
2264    fixed problem loading old format filetype files, some formatting fixes
2265    fixed saving new format files
2266    added operation for clear button on build commands dialog
2267  * src/filetypes.c
2268    fixed loading and saving filetype files
2271 2009-07-09  Lex Trotman  <elextr(at)gmail(dot)com>
2273 Configurable Build Menu Changes
2275  * doc/geany.html, doc/geany.txt:
2276    Updated build menu section to new functionality
2277  * src/build.h, src/build.c:
2278    Largly re-written, configurability added, Latex code removed
2279  * src/filetypes.h, src/filetypes.c:
2280    Filetype structure updated to add new command pointers, configuration
2281    load and store changed
2282  * src/keybindings.h, src/keybindings.c:
2283    Changed to address new command storage structure.
2284  * src/keyfile.c:
2285    Changed to load/store new configuration.
2286  * src/main.c:
2287    Minor change to initialisation order.
2288  * src/msgwindow.c:
2289    Changed to address new menu item storage structure.
2290  * src/project.h, src/project.c:
2291    Changed to load/store the new configuration info.
2293 2009-08-24  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2295  * src/keybindings.c, src/keybindings.h, src/plugindata.h,
2296    src/pluginutils.c, src/plugins.c, src/pluginutils.h,
2297    doc/pluginsymbols.c, plugins/geanyfunctions.h,
2298    plugins/splitwindow.c:
2299    Update PLUGIN_KEY_GROUP() macro so it doesn't allocate any
2300    GeanyKeyBinding or GeanyKeyGroup structs, so we don't need to break
2301    the ABI when adding fields to them.
2302    Add plugin_set_key_group() for plugins to dynamically set a
2303    keybinding group (e.g. for the Lua script plugin). Used in Split
2304    Window plugin as an example.
2305    Improve keybinding docs a little.
2308 2009-08-20  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2310  * doc/Doxyfile.in, plugins/geanyfunctions.h, plugins/genapi.py:
2311    Add geanyfunctions.h to API docs.
2312  * plugins/splitwindow.c:
2313    Set the cursor color for the split window.
2316 2009-08-18  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2318  * src/callbacks.c:
2319    Fix 'Open Selected File' for unsaved new documents.
2320  * src/keybindings.c, src/keybindings.h, src/prefs.c:
2321    Fix updating main menu accelerators after changing keybindings
2322    (thanks to Lex Trotman).
2323  * src/callbacks.c:
2324    Fix using 'Insert date' keybinding when a custom date string has
2325    not been set.
2326  * src/pluginprivate.h, src/pluginutils.c, src/plugins.c:
2327    Merge Plugin and GeanyPluginPrivate structs.
2330 2009-08-18  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2332  * src/keybindings.c:
2333    Fix non-working Home and End keys on numpads.
2336 2009-08-17  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2338  * doc/geany.txt, doc/geany.html, NEWS:
2339    Add 'Scope autocompletion' section.
2340    Add 'Tools menu items' section to explain configuration files
2341    submenu, reload configuration item.
2342    Minor updates/fixes.
2345 2009-08-16  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2347  * src/document.c:
2348    Add a translation hint to an ambiguous format string.
2349  * src/Makefile.am:
2350    Add missing include path to fix 'make distcheck'.
2351  * src/win32.c:
2352    Fix opening of local files in the browser on Windows.
2353  * New release: Geany 0.18 "Kaine".
2354  * configure.in, geany.nsi, geany_private.rc, win32-config.h, wscript,
2355    src/geany.h, doc/geany.html, doc/geany.txt:
2356    Post-release version bump.
2359 2009-08-15  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2361  * src/editor.c:
2362    Temporarily disable reshowing calltips when the autocompletion
2363    list was closed implicitly by not choosing an item to fix
2364    problems with wrongly displayed calltips.
2365  * src/template.c:
2366    Add missing 'coding' cookie to the Python filetype template.
2367  * doc/images/pref_dialog_edit_completions.png,
2368    doc/images/pref_dialog_toolbar.png:
2369    Update images for Geany 0.18.
2372 2009-08-13  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2374  * wscript:
2375    Add command '--hackingdoc' to create the HTML form of the
2376    HACKING file.
2379 2009-08-12  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
2381  * po/pt_PT.po, po/LINGUAS:
2382    Added a first Portugese (Portugal) translation based on work done at
2383    launchpad by e.g. André Glória and Alexandre Jesus.
2384  * src/main.c: Fix a minor typo on --help call.
2387 2009-08-11  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2389  * src/highlighting.c:
2390    Call get_keyfile_wordchars() in highlighting_init_styles().
2393 2009-08-09  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2395  * data/filetypes.ada:
2396    Add missing file.
2397  * src/keybindings.c:
2398    Switching notebook tabs now works for the currently used notebook
2399    widget instead of always using the documents notebook.
2400  * src/document.c, src/document.h, src/documentprivate.h,
2401    doc/plugins.dox:
2402    Small corrections to some API docs.
2405 2009-08-02  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2407  * src/build.c, src/win32.h, src/win32.c:
2408    Expand system environment variables (%variableName%) on Windows when
2409    running Build commands.
2412 2009-07-30  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2414  * src/keybindings.c:
2415    Rename 'Reflow lines/paragraph' to 'Reflow lines/block' because in
2416    future using an indent block is more useful e.g. for ChangeLog
2417    files.
2418  * scintilla/LexMarkdown.cxx, scintilla/makefile.win32,
2419    scintilla/include/SciLexer.h, scintilla/include/Scintilla.iface,
2420    scintilla/KeyWords.cxx, scintilla/Makefile.am, src/highlighting.c,
2421    src/about.c, src/filetypes.c, src/filetypes.h, THANKS,
2422    tagmanager/parsers.h, tagmanager/makefile.win32,
2423    tagmanager/markdown.c, tagmanager/Makefile.am, wscript:
2424    Add Markdown filetype (patch by Jon Strait, thanks).
2425  * src/pluginprivate.h, src/pluginutils.c, src/plugins.c:
2426    Fix disconnecting plugin signal id when not using geany_object.
2427  * src/filetypes.c:
2428    Add filetype_make_title() instead of using:
2429    ft->title = g_strdup_printf(_("%s source file"), ft->name);
2430    It also supports "%s file" strings.
2433 2009-07-29  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2435  * src/pluginprivate.h, src/utils.h, src/plugindata.h,
2436    src/stash.c, src/pluginutils.c, src/plugins.c, src/pluginutils.h,
2437    doc/pluginsymbols.c, doc/plugins.dox, plugins/geanyfunctions.h,
2438    plugins/filebrowser.c:
2439    Add plugin_signal_connect() for connecting plugin signals at
2440    runtime and also for connecting to any GObject signal.
2441    Add 'Plugin Utility Functions' on main page.
2442    Add foreach_array() macro.
2443  * src/keybindings.c, src/sciwrappers.c, src/sciwrappers.h,
2444    src/document.c, src/editor.c:
2445    Rename 3 sci functions to sci_set_target_start(),
2446    sci_set_target_end(), sci_replace_target() to match the SCI_
2447    message name.
2450 2009-07-28  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
2452  * wscript: Fix compiling error with waf.
2455 2009-07-28  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2457  * src/pluginprivate.h, src/makefile.win32, src/plugindata.h,
2458    src/pluginutils.c, src/plugins.c, src/pluginutils.h,
2459    src/Makefile.am, wscript:
2460    Move plugin_* utility functions to pluginutils.c.
2461    Add pluginprivate.h.
2462  * src/editor.c:
2463    Fix reshowing calltip in the wrong document.
2466 2009-07-25  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2468  * doc/geany.txt, doc/geany.html:
2469    Add some general information about auto-completion capabilities
2470    (patch by Lex Trotman, thanks).
2473 2009-07-25  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
2475  * po/LINGUAS, po/sl_SI.po, THANKS, src/about.c:
2476    Added a first Slovenian translation. Thanks to Joze Klepec.
2479 2009-07-24  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2481  * src/highlighting.c:
2482    Use full styleset_foo[_init] function name as argument to
2483    init_styleset_case() and styleset_case() macros so it's easier to
2484    understand the code.
2485  * src/keybindings.c, src/keybindings.h, src/sciwrappers.c,
2486    src/sciwrappers.h, src/editor.c, src/editor.h, THANKS,
2487    doc/geany.txt, doc/geany.html:
2488    Add 'Reflow lines/paragraph' keybinding, defaults to Ctrl-J.
2489    Heavily based on a patch by Eugene Arshinov (thanks).
2490    Add sci_lines_split(), sci_lines_join(), sci_text_width(),
2491    editor_strip_line_trailing_spaces().
2494 2009-07-24  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2496  * src/editor.c:
2497    Attempt to fix reshowing calltips after the autocompletion list
2498    has been shown.
2499    Reshow calltips also when the autocompletion list was closed
2500    implicitly by not choosing an item.
2502 2009-07-23  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2504  * src/utils.c, src/utils.h, src/toolbar.c, src/plugindata.h,
2505    plugins/splitwindow.c:
2506    Change utils_str_remove_chars() to work in place; fix allocating on
2507    the stack (the string length could exhaust the stack size).
2508  * src/templates.c, src/build.c, src/utils.c, src/utils.h,
2509    src/printing.c, src/callbacks.c:
2510    Rename utils_str_replace() utils_str_replace_all(), setting a
2511    'gchar **haystack' argument instead of returning a new string.
2512  * src/editor.c:
2513    For the Tabs indent type, remove spaces when unindenting (only) if
2514    there are no tabs on the line.
2515    Group undo actions for (un)indenting of multiple lines.
2516  * src/document.c, src/editor.c:
2517    Fix scrolling horizontally after finding a search match with the
2518    search bar or Find Next/Previous which is off-screen.
2519  * src/keybindings.c:
2520    Fix GLib warning when pressing a key with no documents open.
2523 2009-07-21  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2525  * src/utils.c:
2526    Start unifying usage of @a and @c markup elements in API docs,
2527    to be continued.
2528  * src/main.c, src/prefs.c, src/toolbar.c, src/toolbar.h:
2529    Show/hide the toolbar without a restart when the setting in the
2530    preferences dialog is changed (closes #2824785).
2531  * src/dialogs.c, src/document.c, src/editor.c, src/encodings.c,
2532    src/filetypes.c, src/keybindings.h, src/main.c, src/msgwindow.c,
2533    src/navqueue.c, src/plugindata.h, src/prefs.c, src/toolbar.c,
2534    src/toolbar.h:
2535    Continue unifying usage of @a and @c markup elements in API docs.
2538 2009-07-21  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2540  * src/document.c:
2541    Remove relative/untidy path elements when creating new documents
2542    with a filename (e.g. from the command-line) (#2823998).
2545 2009-07-20  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2547  * src/callbacks.c:
2548    Disable 'Recent Projects' menu item if the list of recent projects
2549    is empty.
2550  * src/win32.c:
2551    Fix some harmless compiler warnings.
2552  * plugins/geanyfunctions.h, plugins/splitwindow.c, src/plugindata.h,
2553    src/plugins.c, src/utils.c, src/utils.h:
2554    Move utils_str_remove_chars() from the plugins/splitwindow.c to
2555    src/utils.c and add it to the plugin API.
2556    Make utils_str_remove_chars() work on a new copy of the input string
2557    instead of modifying it in place.
2558  * src/toolbar.c:
2559    Remove underscores from the toolbar items labels.
2560  * src/utils.c:
2561    Fix typos.
2562  * plugins/splitwindow.c:
2563    Fix broken 'Show the current document' tool button icon.
2566 2009-07-20  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2568  * src/treeviews.c, src/callbacks.c, src/stash.c, src/stash.h,
2569    src/keyfile.c:
2570    Add stash_group_add_widget_property() so we can save any widget's
2571    read/write properties.
2572    Use Stash for ui_prefs.sidebar_page setting.
2573  * src/utils.h, src/prefs.c, src/keyfile.c, src/symbols.c:
2574    Make foreach_ptr_array() use an integer argument for its
2575    implementation, as this is more useful potentially than a gpointer*
2576    argument, and more straightforward.
2577    Add foreach_c_array(), foreach_ptr_array() to API.
2578  * src/utils.c, src/utils.h, src/document.c:
2579    Remove relative/untidy path elements when opening documents (closes
2580    #2823998).
2581  * src/treeviews.c:
2582    Fix showing project name for documents list files with no
2583    subdirectory (oops).
2584  * src/dialogs.c:
2585    Fix checking whether to overwrite when using the Rename button in
2586    the 'Save As' dialog.
2589 2009-07-19  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2591  * src/dialogs.c:
2592    Don't use the main window as parent for dialog boxes if it is not
2593    yet realised.
2594    Set titles for message dialogs.
2597 2009-07-18  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2599  * src/toolbar.c:
2600    Display item labels instead of raw names in the toolbar editor.
2601    Apply changes in the toolbar editor instantly.
2602    Show icons in the toolbar editor.
2603    Speed up toolbar editor dialog creation.
2604  * src/templates.c:
2605    Improve inserting of comment templates like File header or licence
2606    notices. The comment information are now read from the filetype
2607    configuration files.
2609 2009-07-16  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2611  * src/document.c:
2612    Enable file monitoring for files which are written to disk by Geany
2613    for the first time.
2614  * src/filetypes.c:
2615    Fix broken special case handling when detecting filetypes from a
2616    shebang or other special file headers.
2619 2009-07-16  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2621  * src/search.c:
2622    Make Mark All keybinding clear search highlighting when there's no
2623    current word.
2624  * src/search.c:
2625    Fix wrong match length when using Mark with regex.
2626  * src/geanyobject.c, src/geanyobject.h, src/treeviews.c,
2627    src/keyfile.c, src/main.c:
2628    Add 'Show Paths' documents list popup item.
2629    Add "load_settings" core-only signal emitted just after loading
2630    main keyfile settings; useful to delay building UI elements until
2631    settings have been read.
2632  * src/treeviews.c:
2633    Fix GTK warning when right-clicking on default tag tree.
2634  * src/treeviews.c, src/treeviews.h, src/keyfile.c, src/main.c:
2635    Add treeviews_finalize().
2636    Remove tv.popup_openfiles field.
2639 2009-07-15  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2641  * src/highlighting.c:
2642    Fix building on GTK 2.8 (patch by Eugene Arshinov, thanks).
2645 2009-07-14  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2647  * src/utils.c:
2648    Quote the uri before passing it to the browser when opening a
2649    website (closes #2818635).
2650  * src/win32:
2651    Fix broken 'builtin' Run command for HTML files on Windows.
2654 2009-07-14  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2656  * src/editor.c:
2657    Properly fix wrong brace highlighting of non-brace character.
2658  * src/editor.c:
2659    Allow autocompletion in Perl double-quoted strings.
2660    Don't autocomplete in Perl single-quoted strings (closes #2821061).
2661    Don't autocomplete in Perl q() strings.
2662  * data/filetypes.common:
2663    Make Mark highlighting brighter.
2664  * src/interface.c, doc/geany.txt, doc/geany.html, geany.glade:
2665    Use hyphen for auto-feature terms.
2666  * src/plugindata.h, src/geany.h, src/filetypes.c, src/filetypes.h,
2667    src/document.h, src/main.c:
2668    Add documents_foreach() API macro that skips invalid docs.
2669    Make filetypes[], documents[] part of the API again.
2670    Add GEANY() macro for sharing geany symbols between API and core.
2671  * src/plugindata.h, src/plugins.c, doc/plugins.dox,
2672    plugins/saveactions.c, plugins/export.c, plugins/geanyfunctions.h,
2673    plugins/demoplugin.c, plugins/filebrowser.c, plugins/splitwindow.c,
2674    plugins/htmlchars.c, plugins/geanyplugin.h, plugins/Makefile.am,
2675    plugins/classbuilder.c, wscript:
2676    Add geanyplugin.h single include for plugin API; update all core
2677    plugins to use it.
2678    Add sci_set_font() to API.
2679    Update plugin howto.
2680  * src/filetypes.c, src/filetypes.h:
2681    Remove filetypes_foreach_named().
2684 2009-07-13  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2686  * src/highlighting.c, src/about.c, src/filetypes.c, src/document.c,
2687    src/document.h, src/main.c, THANKS:
2688    Apply patch from Eugene Arshinov to reload color schemes via menu
2689    (thanks).
2690  * src/filetypes.c:
2691    Reload filetypes.common after saving it.
2692  * src/editor.c:
2693    Improve wrong brace highlighting of non-brace character.
2696 2009-07-10  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2698  * src/editor.c:
2699    Delay highlighting matching braces by 100ms, which speeds up
2700    scrolling with the arrow keys.
2701  * src/keybindings.c, src/keybindings.h, src/search.c, src/search.h:
2702    Add 'Mark All' keybinding.
2703  * tagmanager/diff.c:
2704    Show relative paths in diff filename tags.
2707 2009-07-09  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2709  * src/highlighting.c:
2710    Fix setting keyword list 'classes' for Haxe
2711    (pointed out by Andreas Mokros, thanks).
2714 2009-07-09  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2716  * src/interface.c, src/keyfile.c, src/editor.c, src/editor.h,
2717    doc/geany.txt, doc/geany.html, geany.glade:
2718    Add 'Drop rest of word on completion' pref.
2719  * src/editor.c, doc/geany.txt, doc/geany.html:
2720    If autocompletion is already visible when forcing completion, show
2721    document word completion instead of tag completion.
2722    Docs: Minor edits of related prefs items.
2723  * src/printing.c, src/dialogs.c, src/dialogs.h, src/plugindata.h:
2724    Add warning when printing and editor font is not monospaced.
2725    Fix using GtkMessageType instead of gint param for
2726    dialogs_show_msgbox*().
2727    Add missing G_GNUC_PRINTF macro check to API dialog funcs.
2728  * src/editor.c:
2729    Support 'tab indents, space aligns' style for auto-indentation
2730    (closes #2789109).
2733 2009-07-08  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2735  * src/document.c, src/documentprivate.h:
2736    Rework the GIO based file monitoring code. Now it is used only
2737    to indicate a possible change of the file, the real check if the
2738    file has been changed is performed by stat().
2739  * data/filetypes.common, doc/geany.txt, src/highlighting.c:
2740    Add style 'line_height' to increase the line height.
2741    Add style 'marker_mark' and change style 'marker_search' to
2742    define the style used for marked search results.
2743  * doc/geany.txt, doc/geany.html:
2744    Add the new 'Autocomplete all words in document' pref to the docs.
2747 2009-07-08  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2749  * src/interface.c, src/keyfile.c, src/editor.c, src/editor.h,
2750    doc/geany.txt, doc/geany.html, geany.glade, TODO:
2751    Add 'Autocomplete all words in document' pref.
2752    Use 'autocompletion' in dialog and docs, not 'auto completion'.
2753  * src/editor.c:
2754    Fix limiting number of word completion entries too much.
2755  * src/editor.c, TODO, icons/16x16/classviewer-var.xpm,
2756    icons/16x16/classviewer-method.xpm, icons/16x16/Makefile.am:
2757    Show autocompletion icons for tag symbols - for now only tags with
2758    an arglist have the 'function/method' icon, all others have the
2759    'variable' icon.
2760    Note: XPMs were created from the PNGs with the ImageMagick 'convert'
2761    program.
2762  * src/highlighting.c:
2763    Highlight D WYSIWYG backtick `strings` and r"strings" (closes
2764    #1895745).
2767 2009-07-06  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2769  * src/highlighting.c, src/utils.h, plugins/splitwindow.c:
2770    Fix removing underscores in translated string using no_underscore()
2771    macro.
2772    Set a tooltip for the Split Window plugin's Show Current tool button.
2773    Add utils_strdupa() macro.
2774  * src/interface.c, geany.glade:
2775    Use stock Select All icon now we have >= GTK 2.8.
2776  * src/treeviews.c:
2777    Fix using project name for document items that start with the
2778    project base path but don't match it e.g. ".../geany-plugins"
2779    instead of ".../geany" when project name is 'geany'.
2782 2009-07-04  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2784  * src/build.c:
2785    Fix warnings when the toolbar does not contain the Run button.
2786  * tagmanager/lua.c:
2787    Fix wrong parsing of complex expressions in the Lua parser.
2788  * src/editor.c, src/geany.h, src/keybindings.c, src/plugindata.h,
2789    src/utils.c:
2790    Remove unnecessary enums.
2791  * scintilla/*, scintilla/include/*, src/plugindata.h:
2792    Update Scintilla to version 1.79.
2793  * src/document.c, src/editor.c, src/sciwrappers.c, src/sciwrappers.h,
2794    src/search.c:
2795    Use the new Scintilla struct names prefixed with 'Sci_'.
2796  * TODO, data/filetypes.common, doc/geany.html, doc/geany.txt,
2797    src/highlighting.c:
2798    Add second argument to the 'line_wrap_indent' styling setting to
2799    control the new Scintilla indentation mode for wrapped lines.
2800  * src/toolbar.c:
2801    Properly close the toolbar editor on delete-events.
2802    Fix warnings and possible crashes in the toolbar editor when the list
2803    of displayed toolbar items is empty.
2804  * data/filetypes.tcl:
2805    Update Tcl keywords for Tcl 8.6 (patch by Witek Mozga, thanks).
2806  * src/plugins.c:
2807    Make the plugin manager dialog a bit bigger.
2810 2009-06-30  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2812  * doc/geany.html, doc/geany.txt:
2813    Fix wrong default values for the 'Show Calltip' keybinding.
2816 2009-06-29  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2818  * data/filetypes.tcl, src/symbols.c:
2819    Fix duplicate "context_action_cmd" key.
2820    Use different icons for "Methods" and "Procedures" in the symbol
2821    list for Tcl files.
2822  * src/filetypes.c:
2823    Fix a small memory leak.
2824  * doc/geany.html, doc/geany.txt, src/editor.c, src/keybindings.c,
2825    src/keybindings.h, src/plugindata.h:
2826    Make the Scintilla keybindings 'Delete to end of line' and
2827    'Go to end of display line' configurable.
2828  * geany.nsi:
2829    Fix a typo (closes #2813624).
2832 2009-06-28  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2834  * tagmanager/tcl.c, src/symbol.c:
2835    Improve parsing of Tcl files (parsing new Tcl8.6 style classes,
2836    methods and namespaces).
2837    Patch by Witek Mozga, thanks.
2840 2009-06-25  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2842  * data/ui_toolbar.xml, doc/geany.txt, doc/geany.html, src/ui_utils.c,
2843    src/toolbar.c, src/toolbar.h:
2844    Remove ui_toolbar.xml Configuration Files menu item.
2845    Add a real toolbar editor dialog.
2846  * geany.glade, src/callbacks.c, src/callbacks.h, src/interface.c,
2847    src/prefs.c:
2848    Add a button in the preferences dialog and an item for the toolbar
2849    popup menu to run the toolbar editor dialog.
2852 2009-06-25  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2854  * src/dialogs.c:
2855    Fix Gtk NULL warning with gtk_file_chooser_set_current_folder().
2856    Fix using locale encoding for default Save As dialog path.
2857  * src/editor.c:
2858    Beep when trying to activate the '...' autocompletion item.
2859    Limit (forced) document word completion to
2860    autocompletion_max_entries.
2861    Beep if no completions are shown when forcing autocompletion.
2864 2009-06-24  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2866  * data/ui_toolbar.xml, src/toolbar.c:
2867    Add 'Build' toolbar button to the default layout.
2870 2009-06-24  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2872  * src/editor.c:
2873    If forcing autocompletion and there's nothing else to show, complete
2874    from words in the current document (using code from Enrico's
2875    'AutoComplete Test' plugin).
2878 2009-06-23  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2880  * src/plugins.c:
2881    Add debug message if plugin has not set a name for its keybinding
2882    group.
2883  * data/filetype_extensions.conf:
2884    Add *.m4 for shell scripts.
2887 2009-06-22  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2889  * src/highlighting.c, doc/geany.txt, doc/geany.html,
2890    data/filetypes.common, TODO:
2891    Make filetypes.common named styles use the "default" named style for
2892    all missing style fields.
2893    Set named styles to usually leave the background style empty. This
2894    currently allows C-like filetypes to have a common default
2895    background color.
2896    Allow hard-coded colors to use -1 for the default color.
2897    Add some highlighting style examples to the manual.
2900 2009-06-21  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2902  * src/templates.c:
2903    Create initial template files with proper platform-specific line
2904    ending characters.
2907 2009-06-20  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2909  * data/ui_toolbar.xml, doc/geany.txt, src/build.c,
2910    src/geanymenubuttonaction.c, src/geanymenubuttonaction.h, src/main.c,
2911    src/plugins.c, src/templates.c, src/toolbar.c, src/toolbar.h,
2912    src/ui_utils.c, src/ui_utils.h:
2913    Instantly reload (i.e. rebuild) the toolbar when ui_toolbar.xml is
2914    saved within Geany.
2915    Refactor some related code.
2916  * tagmanager/conf.c:
2917    Strip trailing spaces from "Key" tags.
2918  * geany.nsi:
2919    Quote the full filename to the Geany executable when creating the
2920    "Open with Geany" context menu item.
2921  * plugins/splitwindow.c:
2922    Avoid using deprecated GTK API.
2923  * src/log.c, src/main.c:
2924    Properly clean up the logging mechanism.
2925  * src/build.c:
2926    Fix LaTeX view commands on Windows (part of #2807688).
2927  * src/prefs.c:
2928    Add a popup menu for the keybinding list in the preferences dialog
2929    to easily expand and collapse all groups.
2930    Refactor the keybindings code for the preferences dialog, prefix all
2931    related functions.
2932  * src/main.c, src/ui_utils.c, src/ui_utils.h:
2933    Init stock items before creating the toolbar (closes #2809324).
2934  * wscript:
2935    Generate the geany.pc file also on Windows.
2936  * src/ui_utils.c:
2937    Invert the logic to determine which Save All we want to use:
2938    Use the Tango like icon only for the Tango theme and the Gnome / GTK
2939    like icon for any other themes.
2942 2009-06-18  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2944  * src/highlighting.c, README.Packagers, HACKING:
2945    Remove gsd_* default styles, use named styles instead.
2946    Note: this relies on filetypes.common being installed.
2947    Add load_style_entries(), which makes style initialization
2948    simpler, used in styleset_c_like_init().
2951 2009-06-17  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2953  * src/win32.c:
2954    Prevent possible crash on Windows when not setting an initial
2955    directory for native File Open/Save dialogs.
2956  * data/filetypes.xml, src/highlighting.c:
2957    Add style 'jscript_regex' for filetype HTML
2958    (patch by Chris Macksey, thanks).
2961 2009-06-17  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2963  * src/filetypes.h, src/document.c, src/document.h, src/ui_utils.c:
2964    Make GeanyDocument::file_type always be non-NULL, even for a new
2965    document with no filetype set.
2966  * src/editor.c:
2967    Only autocomplete scope for scopes matching the current filetype's
2968    language.
2969  * data/filetypes.java, data/filetypes.cpp, data/filetypes.vala,
2970    data/filetypes.haxe, data/filetypes.common, data/filetypes.glsl,
2971    data/filetypes.actionscript, data/filetypes.cs,
2972    data/filetypes.ferite, data/filetypes.c, data/filetypes.d,
2973    data/filetypes.javascript, HACKING:
2974    Make C++, D lexer filetypes use named styles (apart from uuid,
2975    verbatim, regex styles).
2978 2009-06-16  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2980  * src/dialogs.c:
2981    Don't explicitly change the current directory of the Save As dialog
2982    so that it uses the last used directory.
2985 2009-06-14  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
2987  * src/encodings.c, src/encodings.h, src/plugindata.h:
2988    Add Japanese encoding "CP932" (patch by Ryūsei Yamaguchi, thanks).
2989  * src/editor.c:
2990    Remove dead code.
2991    When completing from the macro list, put the cursor after
2992    the inserted text.
2995 2009-06-12  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
2997  * tagmanager/pascal.c:
2998    Fix type definitions being parsed as functions.
2999  * src/editor.c:
3000    Don't autocomplete in unterminated strings as well.
3001  * src/templates.c, src/utils.h, src/dialogs.c, src/plugindata.h,
3002    src/filetypes.c, src/ui_utils.c, plugins/saveactions.c:
3003    Remove data_ptr argument to foreach_[s]list() macros, as using
3004    node->data is enough sometimes; this makes the macro a bit more
3005    efficient too.
3006    Add foreach_[s]list() macros to the plugin API docs.
3009 2009-06-11  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
3011  * scintilla/LexPascal.cxx:
3012    Backport fix from Scintilla CVS:
3013    Pascal lexer hanging on file that starts with 'interface' after
3014    whitespace.
3017 2009-06-11  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3019  * waf:
3020    Update Waf to 1.5.7.
3021  * wscript:
3022    Overwrite installation prefix on Windows only if it wasn't
3023    specified explicitly.
3026 2009-06-10  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3028  * src/editor.c:
3029    Display calltips for Pascal symbols in the Pascal way (#2803945).
3030  * tagmanager/pascal.c:
3031    Fix wrongly set return values for procedures (closes #2803945).
3032  * doc/Doxyfile.in, tagmanager/include/tm_work_object.h,
3033    tagmanager/include/tm_source_file.h,
3034    tagmanager/include/tm_workspace.h:
3035    Fix doxygen warnings.
3038 2009-06-10  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
3040  * src/editor.c, tagmanager/include/tm_workspace.h,
3041    tagmanager/tm_workspace.c, TODO:
3042    Autocomplete scoped fields like struct members when typing '.' (and
3043    also '->' or '::' in C/C++).
3044    Save all tag types for C/C++ when generating a global tags file, so
3045    we can use autocompletion for structs also.
3046    Merge tm_workspace_find_scope_members(),
3047    tm_workspace_find_namespace_members() (currently not built) from
3048    Anjuta 2.24.1 tagmanager.
3051 2009-06-09  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3053  * tagmanager/pascal.c:
3054    Parse Pascal calltips (closes #2802640).
3057 2009-06-09  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
3059  * src/filetypes.c, src/ui_utils.c:
3060    Add filetypes.common Configuration Files menu item.
3063 2009-06-08  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3065  * src/callbacks.c:
3066    Add backslash to the wordchars on Windows when using
3067    'Open Selected File'.
3068  * src/wscript:
3069    Add support (configure, build and install) for building on Windows
3070    and cross-compiling for Windows using the Waf build system.
3073 2009-06-05  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
3075  * src/toolbar.c:
3076    Set status bar text instead of showing a dialog when saving
3077    ui_toolbar.xml because the user might save several times.
3078  * src/editor.c:
3079    Fix redrawing due to colourising just after the document is first
3080    drawn. Now colourising should happen before the first draw.
3081  * src/utils.c, src/highlighting.c, data/filetypes.common:
3082    Fix segfault on parsing a filetypes.* style definition that has < 4
3083    fields.
3084    Allow style definitions to have missing fields to use the default
3085    style fields.
3088 2009-06-05  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3090  * src/images.c, src/about.c, src/ui_utils.c, THANKS:
3091    Add a more Tango like icon for 'Save All' (by Jesse Mayes, thanks).
3092  * plugins/classbuilder.c:
3093    Fix wrongly created header guards when the class filenames contains
3094    dashes (patch by PCMan, thanks).
3095  * data/filetypes.matlab:
3096    Add build_settings section to allow executing Matlab scripts.
3097  * src/document.c:
3098    When closing a document, mark it as invalid before removing it from
3099    the documents notebook (this fixes wrong Save All button state when
3100    closing an unsaved document because the "switch-page" signal handler
3101    was using old data).
3104 2009-06-03  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
3106  * src/highlighting.c, doc/geany.txt, doc/geany.html:
3107    Support toggling bold/italic when using a named style, e.g.:
3108    commentdockeyword=commentdoc,bold,italic
3109    Improve named style docs.
3112 2009-06-01  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3114  * src/build.c, src/editor.c:
3115    Fix crashes when parsing the output of a compiler which reports
3116    errors on line 0.
3119 2009-06-01  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
3121  * src/highlighting.c:
3122    Support named styles also for filetypes.common [styling] entries.
3123  * doc/geany.txt, doc/geany.html, HACKING:
3124    Update docs for named styles in filetypes.* files.
3125  * src/symbols.c:
3126    Fix grouping symbol list children when parent name has "." character
3127    in for reStructuredText and Conf filetypes.
3128  * tagmanager/python.c:
3129    Fix grouping functions/classes under a nested function.
3132 2009-05-30  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3134  * geany.spec.in:
3135    Adjust icon paths (patch by Dominic Hopf, thanks).
3136  * doc/geany.txt, doc/geany.html, src/toolbar.c:
3137    Add 'Replace' toolbar button (closes #2798225).
3140 2009-05-30  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
3142  * src/utils.c, src/highlighting.c, TODO:
3143    Implement named styles support for filetypes.* using a
3144    filetypes.common [named_styles] section e.g.:
3145    foo=0xc00000;0xffffff;false;true
3146    bar=foo
3147    These can be used in e.g. filetypes.c as:
3148    comment=foo
3151 2009-05-28  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3153  * src/ui_utils.c:
3154    Fix wrong sensitiveness of the Redo buttons (closes #2797862).
3157 2009-05-28  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
3159  * THANKS, src/about.c, po/lb.po, po/LINGUAS:
3160    Added Luxembourgian translation. Huge thanks to Laurent Hoeltgen.
3163 2009-05-27  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3165  * src/build.c:
3166    Remove quote_executable() as it is not used anymore.
3167    When creating the geany_run_script.bat use the "%0" variable
3168    expansion and quote it for the "del" command (closes #2797172).
3169  * src/win32.c:
3170    On Windows, fallback to the literal build command line if searching
3171    for the command in the system path failed (related to #2795923).
3172    Properly terminate the resulting strings when reading the stdout
3173    and stderr of any spawned commands on Windows.
3176 2009-05-26  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3178  * src/win32.c:
3179    Use the wide character versions of native Windows File dialogs.
3180  * src/project.c:
3181    Fix wrong initialisation of the default project path button callback
3182    in the preferences dialog.
3183  * Makefile.am, configure.in, geany.nsi, geany.spec.in, wscript,
3184    geany_private.rc, icons/16x16/Makefile.am, icons/16x16/geany.png,
3185    icons/48x48, icons/48x48/Makefile.am, icons/48x48/geany.png,
3186    icons/Makefile.am, icons/geany.ico, icons/scalable,
3187    icons/scalable/Makefile.am, icons/scalable/geany.svg,
3188    src/makefile.win32:
3189    Move the icons geany.png and geany.ico into the icons directory.
3190    Add a 16x16 pixel Geany icon and the scalable SVG icon.
3191    Drop the pixmaps directory.
3194 2009-05-22  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
3196  * src/keybindings.c:
3197    Improve MRU document switching so there are no duplicates in the
3198    list and documents switched to whilst the dialog is open are
3199    ignored. Also beep when cycling through to the first document in the
3200    list.
3203 2009-05-21  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3205  * src/dialogs.c:
3206    Fix broken 'Cancel' button in the Save As dialog.
3209 2009-05-20  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
3211  * src/editor.c:
3212    Fix multiline indent when selection covers text on the last line.
3213  * src/notebook.c:
3214    Show current document in bold in tab popup menu.
3215  * src/editor.c, tagmanager/python.c, TODO:
3216    Parse Python calltips.
3219 2009-05-19  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3221  * src/symbols.c, tagmanager/python.c:
3222    Parse Python import statements to get symbol completion for the
3223    imported module names.
3224  * src/editor.c, src/editor.h:
3225    Make some only locally used functions static.
3226    Fix wrong sanity check.
3227  * src/build.c:
3228    Fix quoting the build command string on Windows (closes #2791769).
3229    This broke when we made build commands run synchronously on Windows,
3230    now we don't need to special quote the commands anymore.
3233 2009-05-19  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
3235  * src/editor.c:
3236    Drop rest of word to the right of cursor when autocompleting (do we
3237    need a pref for this?).
3240 2009-05-18  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
3242  * src/sciwrappers.c, src/sciwrappers.h, src/editor.c:
3243    Add sci_set_selection().
3244  * doc/geany.txt, doc/geany.html:
3245    Update manual for MRU switching.
3246  * src/callbacks.c, src/editor.c, src/editor.h:
3247    Make indenting with the Tabs indent type preserve spaces on the line,
3248    so it works for the 'tab indents, space aligns' formatting style.
3251 2009-05-17  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3253  * tagmanager/python.c:
3254    Fix missing symbols for variables when an equal sign is used
3255    in a comment on the same line as the variable declaration.
3256    Backport change from CTags SVN to keep the parser more in sync:
3257    Add support for Cython constructs to the Python parser.
3258  * src/search.c:
3259    Remember the additional Find in Files search flags at startup.
3260  * src/dialogs.c:
3261    Don't close the Save As dialog when saving the file didn't succeed.
3264 2009-05-13  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
3266  * src/keyfile.c:
3267    Remember scribble cursor position.
3268  * src/keybindings.c, TODO:
3269    Implement Most-Recently-Used document switching when pressing
3270    Ctrl-Tab keybinding. (It's probably not perfect, but works OK).
3273 2009-05-13  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
3275  * data/latex.tags: Added some more commands from unit.sty and
3276    moderncv.sty.
3279 2009-05-12  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
3281  * src/symbols.c, doc/geany.txt, doc/geany.html,
3282    tagmanager/makefile.win32, tagmanager/nestlevel.c,
3283    tagmanager/nestlevel.h, tagmanager/python.c, tagmanager/rest.c,
3284    tagmanager/Makefile.am, wscript:
3285    Merge unstable branch:
3286    Add reStructuredText scope information for tags (for symbol list
3287    grouping).
3288    Read custom system global tags files from $prefix/share/geany/tags;
3289    Closes #2778923.
3290    Show the number of tags in a user global tags file (instead of the
3291    running total) in the debug message.
3292    Also print debug messages when loading a tag file manually or for
3293    default global tags files e.g. python.tags.
3294  - code:
3295    Move NestingLevel tags code into a separate file, add functions.
3296  - docs:
3297    Add 'Installation prefix' section instead of quoting '/usr/local'
3298    each time.
3299    Update for custom system global tags files.
3302 2009-05-11  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3304  * src/highlighting.c:
3305    Unset maybe previously keywords when setting up Scintilla for
3306    XML files. This fixed wrong highlighting after switching back to
3307    filetype XML from another one.
3308  * src/utils.c:
3309    Use plain old fwrite() in utils_write_file(). g_file_set_contents()
3310    is only used when explicitly requested.
3311  * src/dialogs.c:
3312    Remove unnecessary call to g_intern_string() to fix build with
3313    GLib 2.8 (closes #2790051).
3316 2009-05-10  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3318  * src/ui_utils.c:
3319    Make the clear icon of entry fields act on the release event, not
3320    on the press event like for other buttons.
3321  * src/editor.c:
3322    Refactor some multiple used code into get_multiline_comment_style().
3323  * src/main.c:
3324    Create parent directories if necessary when checking for the
3325    configuration directory on startup (closes #2784577).
3328 2009-05-08  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3330  * plugins/filebrowser.c:
3331    When a filter is set, apply it only to files, not directories and
3332    apply the filter to the UTF-8 name of the file as the filter string
3333    itself is also UTF-8.
3334  * src/utils.c, src/utils.h, src/highlighting.c, src/printing.c:
3335    Add utils_color_invert() and use it in highlighting.c and printing.c.
3336  * scintilla/include/Scintilla.h, scintilla/scintilla_changes.patch:
3337    Backport change from Scintilla CVS:
3338    Change capitalisation of header file to suit cross-compilation on
3339    Unix for Windows.
3342 2009-05-03  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3344  * wscript, scintilla/*, scintilla/include/*, src/plugindata.h:
3345    Update Scintilla to version 1.78.
3346  * src/editor.c, src/highlighting.c:
3347    Update Pascal styles as they changed in Scintilla.
3350 2009-05-02  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3352  * src/printing.c:
3353    Ignore the invert syntax highlighting colours setting when printing
3354    to not print characters on a dark background (closes #2785244).
3355  * New release: Geany 0.17 "Wessex".
3356  * configure.in, geany.nsi, geany_private.rc, win32-config.h, wscript,
3357    src/geany.h, doc/geany.html, doc/geany.txt:
3358    Post-release version bump.
3361 2009-04-30  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3363  * src/callbacks.c, src/callbacks.h, src/main.c:
3364    Update the View->Fullscreen menu item when fullscreen state is
3365    changed externally (e.g. by the window manager).
3366  * src/project.c:
3367    Fix passing wrong pointer to the File Open dialog for the Run
3368    command in the Project Properties dialog.
3371 2009-04-27  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3373  * src/callbacks.c, src/keyfile.c, src/main.c, src/ui_utils.c,
3374    src/ui_utils.h:
3375    Remember the active sidebar page between sessions.
3376  * src/project.c:
3377    Add a recent project item after creating a new project.
3378  * tagmanager/ruby.c:
3379    Fix wrong parsing of string literals (closes #2781264).
3380  * src/treeviews.c:
3381    Fix setting focus to the editor widget after changing the selection
3382    in the symbol list.
3385 2009-04-25  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3387  * src/symbols.c:
3388    Prevent crashes when two or more top level items in the symbol
3389    list have the same name (closes #2778246).
3392 2009-04-24  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3394  * src/keybindings.c:
3395    Manually show the main notebook tab bar menu when Shift-F10 is
3396    pressed. This broke when we disabled the default GTK tab bar menu.
3397  * src/document.c:
3398    Fix a crash when USE_GIO_FILEMON is enabled at closing a document
3399    which was reloaded shortly before.
3400  * src/editor.c:
3401    When the editor menu is opened by the Menu key, use the text cursor
3402    position for retrieving the current word. This fixes disabled
3403    Go to Tag items in the menu (#2780044).
3404  * src/treeviews.c:
3405    Set the "ellipsize" property of GtkCellRendererText to automatically
3406    shorten the path and file names in the Documents list.
3407  * doc/geany.html, doc/geany.txt, src/build.h:
3408    Increase the amount of highlighted build error messages to 100.
3409    At least for LaTeX we need higher values as there is a lot of
3410    informative output before any errors are reported.
3411  * src/filebrowser.c:
3412    Use the startup path as the initial directory for the filebrowser
3413    plugin when no project and no files are opened
3414    (patch by Matias Gea, thanks; closes #2780521).
3417 2009-04-21  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3419  * src/dialogs.c, src/document.c, src/document.h, src/treeviews.c,
3420    src/utils.c, src/utils.h:
3421    Ellipsize tab labels and some status messages for very long
3422    filenames (closes #2777348).
3423  * src/plugins.c, src/plugindata.h, plugins/geanyfunctions.h:
3424    Add utils_str_middle_truncate() and
3425    document_get_basename_for_display() to the plugin API.
3426  * doc/geany.html, doc/geany.txt, src/toolbar.c:
3427    Add new toolbar element: Print (patch by Roland Baudin, thanks).
3428  * doc/geany.html, doc/geany.txt, src/document.c, src/document.h,
3429    src/keyfile.c:
3430    Add a hidden preference 'use_safe_file_saving' to save files to disk
3431    by creating a temporary file first. This has serious side effects,
3432    please read the documentation before enabling this.
3433  * src/build.c:
3434    Make build commands on Windows run synchronously to avoid problems
3435    with reading build commands' output.
3436  * doc/geany.html, doc/geany.txt, src/build.c, src/build.h:
3437    Limit the amount of highlighted build error messages in the
3438    Compiler window to 50 for performance reasons.
3441 2009-04-20  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3443  * src/callbacks.c, src/editor.c, src/keybindings.c, src/keybindings.h,
3444    src/prefs.c:
3445    Replace our own GEANY_KEYS_MODIFIER_MASK by
3446    gtk_accelerator_get_default_mod_mask() which gives the same result.
3447  * src/filetypes.c, src/symbols.c, tagmanager/Makefile.am,
3448    tagmanager/makefile.win32, tagmanager/parsers.h, wscript:
3449    Add a trivial symbol parser for NSIS files.
3452 2009-04-19  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3454  * src/dialogs.c:
3455    Hide the extra file open dialog options in an expander to make the
3456    dialog more compact by default and to provide more space for the
3457    file view.
3458    Remove the filename field as it is also provided by GTK itself with
3459    more features like auto-completion.
3460    Watch the 'show-hidden' property of the file chooser widget using
3461    GObject's "notify" signal which gives accurate results and remove
3462    the hack using the "selection-changed" signal.
3465 2009-04-17  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3467  * src/callbacks.c, src/callbacks.h, src/encodings.c, src/filetypes.c:
3468    Prevent double execution of radio menu item "activate" or "toggled"
3469    signal handlers.
3470    Move 'Set Encoding' callback function into encodings.c.
3473 2009-04-16  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3475  * src/project.c:
3476    Add some missing 'void's in function definitions.
3477    If the project base path is './', just use the path of the project
3478    config file instead of appending './'.
3479  * src/treeviews.c, src/project.c:
3480    When a project is loaded, replace the project base path with the
3481    project name in the Documents sidebar for parent items
3482    (closes #2723679).
3485 2009-04-15  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3487  * src/keyfile.c, src/keyfile.h, src/project.c:
3488    Fix duplicating the recent files and projects lists when closing
3489    a project.
3490  * src/build.c, src/callbacks.c, src/dialogs.c, src/document.c,
3491    src/editor.c, src/encodings.c, src/filetypes.c,
3492    src/geanymenubuttonaction.c, src/geanyobject.c, src/geanywraplabel.c,
3493    src/highlighting.c, src/keybindings.c, src/keyfile.c, src/main.c,
3494    src/msgwindow.c, src/navqueue.c, src/notebook.c, src/plugins.c,
3495    src/prefs.c, src/queue.c, src/sciwrappers.c, src/socket.c,
3496    src/symbols.c, src/templates.c, src/toolbar.c, src/tools.c,
3497    src/treeviews.c, src/ui_utils.c, src/utils.c, src/vte.c:
3498    Remove all G_LIKELY macros inside g_return_if_fail() statements as
3499    this is redundant.
3500    Remove many other G_LIKELY/G_UNLIKELY macros which doesn't make much
3501    sense to keep the code more readable.
3504 2009-04-09  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3506  * src/symbols.c:
3507    When updating global type definitions for opened documents, take
3508    also C++ namespace symbols into account and don't ignore symbols
3509    which are defined inside a scope.
3512 2009-04-09  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
3514  * src/plugins.c:
3515    Don't show 'plugin is not binary compatible' messages on the status
3516    bar, only the status window.
3519 2009-04-08  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3521  * src/socket.c:
3522    When opening files from a remote instance on X11, set the window
3523    server time to encourage window managers to pop up the main window
3524    (related to #2735467 and #2276179).
3525  * src/main.c:
3526    When finished sending filenames to a remote instance, notify the
3527    environment that we finished starting up.
3530 2009-04-08  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
3532  * src/ui_utils.h, src/utils.h, src/ui_utils.c:
3533    Sort Configuration Files menu.
3534    Add ui_menu_sort_by_label().
3535    Add foreach_list() macro.
3536  * src/editor.c:
3537    Fix autocompletion.
3540 2009-04-07  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3542  * src/main.c:
3543    Fix setting a wrong default window size when starting without an
3544    existing configuration.
3545  * src/editor.c, src/sciwrappers.c, src/sciwrapper.h:
3546    Make editor_highlight_braces() static.
3547    Remove unused wrapper functions.
3548  * src/editor.c, src/symbols.c, src/symbols.h:
3549    Prevent showing an empty macro list.
3550    Show only macros of the same filetype instead of all macros of all
3551    loaded filetypes.
3552  * src/ui_utils.c:
3553    Don't add opened project files to the GtkRecentManager.
3556 2009-04-07  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
3558  * src/editor.c:
3559    Add Configuration Files item for snippets.conf.
3560  * src/highlighting.c, src/symbols.c:
3561    Fix 2 old uses of filetype IDs.
3564 2009-04-06  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3566  * src/interface.c, src/printing.c, geany.glade:
3567    Minor string improvements (spotted by Jean-Philippe Moal, thanks).
3570 2009-04-05  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3572  * src/ui_utils.c:
3573    Add sanity checks in ui_lookup_widget() just to be safe.
3574  * THANKS, TODO, geany.glade, src/about.c, src/interface.c,
3575    src/keyfile.c, src/main.c, src/plugindata.h, src/project.c,
3576    src/project.h, src/ui_utils.c, src/ui_utils.h:
3577    Add "Recent Projects" menu to the Project menu
3578    (#2728630, patch by Elias Pschernig, thanks).
3579  * doc/geany.txt, doc/geany.html:
3580    Describe how to build Geany using the Waf build system.
3581  * src/build.c, src/callbacks.c, src/dialogs.c, src/document.c,
3582    src/document.h, src/editor.c, src/encodings.c, src/filetypes.c,
3583    src/geanymenubuttonaction.c, src/geanyobject.c, src/geanywraplabel.c,
3584    src/highlighting.c, src/keybindings.c, src/keyfile.c, src/log.c,
3585    src/main.c, src/msgwindow.c, src/navqueue.c, src/notebook.c,
3586    src/plugins.c, src/prefs.c, src/queue.c, src/sciwrappers.c,
3587    src/socket.c, src/symbols.c, src/templates.c, src/toolbar.c,
3588    src/tools.c, src/tools.h, src/treeviews.c, src/ui_utils.c,
3589    src/utils.c, src/utils.h, src/vte.c:
3590    Start using G_LIKELY/G_UNLIKELY macros to gain a little more
3591    performance when building the code with gcc.
3592  * src/highlighting.c:
3593    Fix typo in the G_LIKELY checks, introduced in last commit.
3594    Fix the size of the styles array.
3595  * src/document.c:
3596    Show a message dialog when renaming a file fails.
3599 2009-04-03  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3601  * src/build.c:
3602    Remove checks for the .pdf or .dvi files when viewing a LaTeX file
3603    (as we did for all other files in SVN r3382).
3606 2009-04-03  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
3608  * src/filetypes.c, doc/geany.txt:
3609    Move ActionScript to the Script group.
3610    Fix wording & typo.
3611  * src/templates.c, src/utils.h, src/highlighting.c, src/dialogs.c,
3612    src/plugindata.h, src/filetypes.c, src/filetypes.h, src/plugins.c,
3613    src/symbols.c, src/ui_utils.c, plugins/saveactions.c,
3614    plugins/htmlchars.c:
3615    Merge reorder-filetypes branch:
3616    Make GEANY_FILETYPES_NONE = 0, sort filetype IDs randomly (so we can
3617    append randomly without breaking the ABI).
3618    Make None filetype name = title = _("None").
3619    Add foreach_slist() macro.
3620    Add filetypes_by_title list to GeanyData for plugin API access
3621    - a list of filetype pointers, which includes the None filetype
3622    first. This list stays constant by the time plugins are initialized,
3623    so you can use e.g. g_slist_nth_data(filetypes_by_title, n) to
3624    index the sorted list.
3627 2009-03-31  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3629  * doc/geany.txt, doc/geany.html, src/main.c:
3630    Add widget names for the menubar and toolbar.
3631  * src/msgwindow.c:
3632    When hiding the messages window, set the input focus back to the
3633    editor widget (part of #1910393).
3636 2009-03-30  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3638  * scintilla/LexOthers.cxx, src/highlighting.c, tagmanager/conf.c:
3639    Backport recent changes from Scintilla CVS to add partial support
3640    for RFC2822 styled text using the Properties lexer.
3641    Ignore leading whitespace for config files and RFC2822 text.
3642  * data/filetypes.actionscript:
3643    Update/fix ActionScript keywords (patch by Chris Macksey, thanks).
3644  * THANKS, src/treeviews.c:
3645    Display file/directory icons in the Documents sidebar
3646    (patch by Simon Treny, thanks).
3649 2009-03-29  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3651  * doc/geany.html, doc/geany.txt, geany.glade, src/callbacks.c,
3652    src/callbacks.h, src/interface.c, src/keyfile.c, src/main.c,
3653    src/plugindata.h, src/prefs.c, src/toolbar.c, src/toolbar.h:
3654    Add an option to allow appending the toolbar to the main menu bar
3655    to save some vertical space.
3656    Allow setting toolbar icon size to very small (menu icon size).
3659 2009-03-27  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3661  * src/keyfile.c, src/utils.c, src/utils.h:
3662    Add utils_path_skip_root(), a relative path safe variant of
3663    g_path_skip_root (forgotten patch by Colomban Wendling, #2518658).
3664  * src/keyfile.c, src/main.c:
3665    Allow negative window coordinates when saving and restoring the
3666    position of the main window.
3667    Restore the main window position and size *after* the window has
3668    been realised to get it positioned accordingly
3669    (this affects at least Windows).
3672 2009-03-26  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3674  * src/main.c, src/plugins.c, src/win32.c, src/win32.h:
3675    Use g_win32_get_package_installation_directory_of_module() on Windows
3676    with newer GLib versions instead of deprecated API.
3677  * src/keybindings.c:
3678    Don't manage the last used documents list when quitting to prevent
3679    errors by accessing invalid memory (may close #2533990).
3682 2009-03-25  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3684  * src/build.c:
3685    Delete the geany_run_script.sh immediately after execution
3686    to prevent leaking old copies when the script was quit unexpectedly
3687    (closes #2710482, patch by Martin Olsson, thanks).
3688  * src/keyfile.c:
3689    Check whether skipping the root element of a document's filename
3690    succeeded and use the filename itself if not (e.g. on relative
3691    filenames, #2702844).
3692    Use the locale encoded filename when saving session files.
3693  * src/callbacks.c:
3694    Re-set the quitting status after all documents have been closed on
3695    quitting.
3698 2009-03-24  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
3700  * plugins/htmlchars.c:
3701    Remove usage of deprecated sci_get_selected_text() from plugin.
3704 2009-03-24  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3706  * src/callbacks.c:
3707    Delay disk file checks when switching between documents a little
3708    bit to avoid fast, unintentional page switching in some cases.
3709  * plugins/geanyfunctions.h, src/plugindata.h, src/plugins.c,
3710    src/sciwrappers.c, src/sciwrappers.h:
3711    Deprecate sci_get_text(), sci_get_selected_text() and
3712    sci_get_text_range().
3713    Add sci_get_contents(), sci_get_contents_range() and
3714    sci_get_selection_contents() as replacement functions to provide
3715    an easier and cleaner API (initial patch by Frank).
3718 2009-03-22  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3720  * tagmanager/css.c:
3721    Fix wrong parsing of CSS tags when the definition block starts on
3722    a new line (reported by Dominic Hopf, thanks).
3725 2009-03-20  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
3727  * plugins/htmlchars.c:
3728    Extend plugin by feature to bulk replace and replace on input for
3729    special characters to their HTML entities.
3732 2009-03-19  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3734  * src/build.c:
3735    Update build menu items after changing anything in the
3736    'Set Includes and Arguments' dialog.
3737    Disable Compile/Run buttons/menu items when Compile/Run commands are
3738    set but empty.
3739    Reset current build directory to the base directory after reading a
3740    "Leaving directory" message when parsing Make output
3741    (closes #2694479, patch by Andrea Mazzoleni, thanks).
3742  * src/notebook.c:
3743    Fix wrong display of the filename in the tab bar menu for new files.
3744  * src/dialog.c:
3745    Set the initial directory for the Save As dialog only once on
3746    initialisation.
3747    Add a shortcut of the project's base directory to the
3748    File Open/Save As dialogs when a project is open for faster access.
3749  * src/splitwindow.c:
3750    Add keybindings for the split actions.
3753 2009-03-16  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3755  * src/search.c:
3756    When using Find All in the Find dialog (in Session and Document),
3757    display the right amount of matches.
3758    Fix the display of the matches once per line (I broke the original
3759    patch).
3760  * src/ui_uitls.c:
3761    Fix wrong directory selection behaviour in all Open Folder dialogs
3762    (closes #2688020, patch by Marcel Stimberg, thanks).
3763  * src/socket.c:
3764    Don't present the main window of a running instance when starting
3765    a second instance separately.
3768 2009-03-15  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3770  * src/socket.c:
3771    Reduce default file permissions on the Unix Domain socket file
3772    (reported by Jörg Sommer, thanks).
3775 2009-03-13  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3777  * doc/geany.txt, doc/geany.html, geany.glade, src/interface.c,
3778    src/main.c, src/plugindata.h, src/plugins.c, src/prefs.c,
3779    src/prefs.h:
3780    Add an option to set an additional plugin lookup path.
3781  * src/search.c:
3782    When using Find All in the Find dialog, display matches only once
3783    per line in the messages window (patch by Bert Vermeulen, thanks).
3786 2009-03-10  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3788  * data/filetype_extensions.conf, data/filetypes.actionscript,
3789    src/about.c, src/document.c, src/filetypes.c, src/filetypes.h,
3790    src/highlighting.c, src/plugindata.h, src/symbols.c,
3791    tagmanager/Makefile.am, tagmanager/actionscript.c,
3792    tagmanager/makefile.win32, tagmanager/parsers.h, THANKS, wscript:
3793    Add filetype ActionScript (patch by Chris Macksey, thanks).
3794    Update type keywords only for real C-like languages.
3795    Fix wrong sorting of Assembler and Ada filetypes.
3796  * plugins/classbuilder.c:
3797    Use G_DEFINE_TYPE in the GTK+ class template instead of manual code.
3798    Other minor cleanups.
3801 2009-03-05  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3803  * src/notebook.c:
3804    Don't use menu item images for the tab bar menu to save some
3805    vertical space.
3806  * data/filetypes.fortran, tagmanager/fortran.c:
3807    Add keyword 'extends' and fix Fortran parser to support the
3808    'extends' keyword (closes #2654492).
3809  * geany.glade, plugins/export.c, src/interface.c, src/printing.c,
3810    src/search.c, src/toolbar.c:
3811    Fix punctuation.
3814 2009-03-03  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
3816  * src/about.c, THANKS:
3817    Added Jari Rahkonen to list of Finnish translators.
3820 2009-03-02  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3822  * geany.pc.in:
3823    Adjust minimum required GTK version.
3824  * src/Makefile.am, wscript:
3825    Add main.h to the list of installed header files.
3826  * geany.glade, src/document.c, src/documentprivate.h, src/interface.c,
3827    src/notebook.c, src/ui_utils.c:
3828    Remove GeanyDocumentPrivate::tabmenu_label.
3829    Disable the default tab bar menu for the main notebook widget and
3830    use a custom menu instead which lists all open files as usual plus
3831    'Close Other Documents' and 'Close All' menu items.
3834 2009-02-27  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3836  * src/callbacks.c, src/search.c, src/ui_utils.c, src/ui_utils.c:
3837    Move ui_set_search_entry_background() into ui_utils.c.
3838    Change the background colour of the search entries in the Find
3839    and Replace dialogs according to the search results like in the
3840    toolbar search field.
3841    Add images to the 'Replace' and 'Replace and Find' buttons in the
3842    Replace dialog.
3843    Minor cleanups in search.c.
3844  * tagmanager/tm_source_file.c:
3845    Update source files upon creation.
3846  * data/c99.tags:
3847    Update C tags for glibc 2.9.
3848  * src/callbacks.c, src/toolbar.c:
3849    Fix broken non-incremental search with the toolbar search entry when
3850    pressing Enter (closes #2638180).
3851  * plugins/splitwindow.c:
3852    Fix possible crash on non-32-bit systems (patch by
3853    Wolfgang Ocker, thanks).
3854  * geany.spec.in:
3855    Update the Packager tag due to Dominic's various contributions.
3856    Update description and feature list.
3857    Change Source tag to the gzip'ed tarball to be in sync with the
3858    Makefile target (thanks to Wolfgang Ocker for reporting).
3861 2009-02-26  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
3863  * plugins/vcdiff.c, plugins/Makefile.am, po/POTFILES.in:
3864    Removed deprecated plugin VC Diff
3867 2009-02-25  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3869  * src/templates.c:
3870    Fix wrong Fortran 90 comment characters when inserting templates.
3871  * doc/geany.html, doc/geany.txt, geany.glade, src/callbacks.c,
3872    src/callbacks.h, src/editor.c, src/interface.c, src/keybindings.c,
3873    src/keybindings.h, src/main.c, src/plugindata.h, src/vte.c,
3874    src/vte.h, THANKS:
3875    Add 'Send Selection to Terminal' command to the Edit->Format menu
3876    (initial patch by David Gleich, thanks).
3877  * geany.glade, src/interface.c:
3878    Fix mnemonic for the Edit->Preferences menu item.
3881 2009-02-24  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3883  * configure.in, plugins/Makefile.am:
3884    Enable socket support when cross-compiling.
3885    Enable plugin compilation when cross-compiling.
3886  * src/msgwindow.c:
3887    Fix missing NULL checks when reading the colour value of compiler
3888    output messages.
3889  * src/main.c, src/win32.c, src/win32.h:
3890    On Windows, change the working directory to the Geany installation
3891    path at startup to avoid unwanted directory locking(closes #2626124).
3892  * src/encoding.c:
3893    Fix broken selection of "Document->Set Encoding" menu items.
3894  * src/document.c, tagmanager/include/tm_source_file.h,
3895    tagmanager/include/tm_work_object.h, tagmanager/tm_project.c,
3896    tagmanager/tm_source_file.c, tagmanager/tm_tag.c,
3897    tagmanager/tm_work_object.c, tagmanager/tm_workspace.c:
3898    Don't let the tagmanager automatically reparse files if they
3899    seem to be changed on disk (affects all files in the current session,
3900    not the current one). This should speed up file saving a little bit,
3901    especially with remote files.
3902    Remove now unnecessary calls to tm_workspace_update().
3903  * src/printing.c:
3904    Allow an empty value for the date format in the print settings to
3905    omit the date/time string in the print header.
3908 2009-02-20  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>
3910  * src/editor.c: Set cursor for LaTeX at auto closing of environment
3911    direct into area.
3914 2009-02-19  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3916  * src/utils.h:
3917    Add missing header include (closes #2615808).
3920 2009-02-18  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3922  * src/symbols.c:
3923    Fix a possible crash when comparing symbol names
3924    (could be related to Ubuntu bug #147151).
3925    Fix broken symbol list tooltips when tag names contain ampersands.
3928 2009-02-15  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
3930  * plugins/makefile.win32:
3931    Don't build Split Window plugin on Windows (doesn't work).
3934 2009-02-15  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
3936  * ChangeLog, Makefile.am: Rotate ChangeLog.
3937  * configure.in, geany.nsi, geany_private.rc, win32-config.h,
3938    wscript, doc/geany.txt, doc/geany.html, src/geany.h:
3939    Post-release version bump.
3942 *** See ChangeLog.pre-0-17 for earlier changes ***