Branch: refs/heads/master
Home: https://github.com/geany/talks
Commit: 232c7d2608be26c572defa79d2c87571565fd1c1
https://github.com/geany/talks/commit/232c7d2608be26c572defa79d2c87571565fd…
Author: Frank Lanitz <frank(a)frank.uvena.de>
Date: 2011-11-03 (Thu, 03 Nov 2011)
Changed paths:
M german/poster/geany_booth_poster.svg
A german/poster/img/geany_c_terminal_german.png
A german/poster/img/geany_plugin_manager_geanyvc_0.21.1.png
Log Message:
-----------
Adding some more content a two screenshots
Branch: refs/heads/master
Home: https://github.com/geany/geany
Commit: 0167f589b314056517627f88069a933daf56ee4d
https://github.com/geany/geany/commit/0167f589b314056517627f88069a933daf56e…
Author: Colomban Wendling <ban(a)herbesfolles.org>
Date: 2011-11-03 (Thu, 03 Nov 2011)
Changed paths:
M src/callbacks.c
M src/document.c
M src/keybindings.c
M src/keyfile.c
M src/sidebar.c
M src/ui_utils.c
Log Message:
-----------
Small code cleanup
Use foreach_document() in a few places where appropriate and make
some code more consistent.
Branch: refs/heads/master
Home: https://github.com/geany/geany
Commit: ea51c487d3f1eb0baaed021249b39f775ed6992c
https://github.com/geany/geany/commit/ea51c487d3f1eb0baaed021249b39f775ed69…
Author: Matthew Brush <mbrush(a)codebrainz.ca>
Date: 2011-11-02 (Wed, 02 Nov 2011)
Changed paths:
M src/document.c
Log Message:
-----------
Use Scintilla's buffer directly for parsing tags
Commit: ff663c16785a4b49a420e1b9a5977d95f140a242
https://github.com/geany/geany/commit/ff663c16785a4b49a420e1b9a5977d95f140a…
Author: Matthew Brush <mbrush(a)codebrainz.ca>
Date: 2011-11-02 (Wed, 02 Nov 2011)
Changed paths:
M src/document.c
Log Message:
-----------
Remove init_doc_struct() function from documents.c
This function was only used from document_create() and most of this code is
not needed since the memset() and g_new0() calls set the memory to all 0's,
which in this case should suffice to (re)set all the members to 0/NULL/FALSE.
Refactor so all the resetting to defaults code is done in remove_page()
only and then only do the required non-FALSE/NULL initialization in
document_create().
Move the remove_page() prototype to the top of the file and various other
minor changes in remove_page().
Compare: https://github.com/geany/geany/compare/6ceb5ac...ff663c1
Branch: refs/heads/master
Home: https://github.com/geany/geany
Commit: 6ceb5ac1640dcf15f5bfb1415777fc7d5e58767e
https://github.com/geany/geany/commit/6ceb5ac1640dcf15f5bfb1415777fc7d5e587…
Author: Matthew Brush <mbrush(a)codebrainz.ca>
Date: 2011-11-02 (Wed, 02 Nov 2011)
Changed paths:
M HACKING
M src/document.c
M src/editor.c
M src/editor.h
Log Message:
-----------
Remove editor_lexer_get_type_keyword_idx() function
It was used only in one place in document_update_type_keywords() which
already did a similar check using the file type before calling this function.
Update HACKING file and very minor cleanup of other code in
document_update_type_keywords().
Branch: refs/heads/master
Home: https://github.com/geany/geany
Commit: de559ef5d4150e2485ef3ffb865e9c9d3249bcd8
https://github.com/geany/geany/commit/de559ef5d4150e2485ef3ffb865e9c9d3249b…
Author: Nick Treleaven <nick.treleaven(a)btinternet.com>
Date: 2011-11-02 (Wed, 02 Nov 2011)
Changed paths:
M src/build.c
M src/callbacks.c
M src/dialogs.c
M src/document.c
Log Message:
-----------
Make document_save_file() show the Save As dialog when necessary
Previously an error message was shown if doc->file_name is NULL.
The Save As dialog is now shown if the document does not have an
absolute path. This is because the user should confirm where to save
the document in this case.
Although this changes plugin API behaviour, it seems the best way to
ensure the Save As dialog is always shown when needed so the user
knows where the document has been saved.