commit 4863768509a84d0e419989a3ee96dd8feb4deadb Author: Paolo Borelli Date: 2012-05-14 Release 3.4.2 M NEWS M README M configure.ac commit be84f2581f44a9ca58987f554f42c08812cf9c82 Author: Paolo Borelli Date: 2012-05-14 Distribute the gtksourcecompletion.ui file M gtksourceview/Makefile.am commit 3a14d98752df36b28bcea262c35c75732f9812ef Author: Christian Kirbach Date: 2012-05-14 Updated German translation M po/de.po commit 04d7ef9b9d3d4f38952a27c820ec0ad2dcd4425c Author: Piotr Drąg Date: 2012-05-14 Updated Polish translation M po/pl.po commit 773a8885761383abb6006f29a6a44c5daa5201cb Author: Sébastien Wilmet Date: 2012-04-24 Completion: migrate the UI description to GtkGrid The scrollbar policy is by default "automatic" in GTK+ 3. The first children of the GtkGrid's don't have packing properties because all the default values are OK for them. M gtksourceview/gtksourcecompletion.c M gtksourceview/gtksourcecompletion.ui commit ba49629fe66e9051d09972a267e159c22361f3a2 Author: Sébastien Wilmet Date: 2012-04-24 Completion: fix mnemonic of the "Details" button Due to bug #674759 [1], the mnemonic for the "Details" button didn't work when the "gtk-auto-mnemonics" setting is true. But anyway we don't need markup for this label, so it's better to remove it. [1] https://bugzilla.gnome.org/show_bug.cgi?id=674759 M gtksourceview/gtksourcecompletion.ui commit c6d76ed0481789e114a8d6e719d595d0f6e50e6f Author: Sébastien Wilmet Date: 2012-04-23 Completion: use GResource for the XML UI description There were two translatable strings in the UI description that were not extracted into the PO files. GTK+ 3.4 is required, as well as GIO 2.32. https://bugzilla.gnome.org/show_bug.cgi?id=674643 M configure.ac M gtksourceview/Makefile.am M gtksourceview/gtksourcecompletion.c A gtksourceview/gtksourcecompletion.ui D gtksourceview/gtksourcecompletionui.h A gtksourceview/gtksourceview.gresource.xml M po/POTFILES.in commit c2990a3c58f712d8d558a4bb54c79f46a20982e6 Author: Paolo Borelli Date: 2012-05-14 Fix typo in css keyword M data/language-specs/css.lang commit fb43f060465e334ba022ed74e914239f32044f4a Author: Sébastien Wilmet Date: 2012-04-23 Completion doc: "provider-page-size" is not yet used The "provider-page-size" property is actually not used. It could be used with Ctrl+PageDown and Ctrl+PageUp. But would it be very useful? Generally there are not a lot of providers AFAIK. So the property could simply be removed or deprecated. Anyway I think it's better to document the fact that it is not yet used. M gtksourceview/gtksourcecompletion.c commit 9a1728260dc606b77e3ac2a5aab83f4d07798527 Author: Sébastien Wilmet Date: 2012-04-23 Completion: document key bindings M gtksourceview/gtksourcecompletion.c commit d72ed7c50be8e1333b79b44afd4d3920d914c8b2 Author: Sébastien Wilmet Date: 2012-04-22 Completion: fix "show-headers" documentation Even with only one provider, if "show-headers" is TRUE, the header is shown. M gtksourceview/gtksourcecompletion.c commit 9f2b576761c089a7aa4af7d300951e7aeca36df5 Author: Sébastien Wilmet Date: 2012-04-22 Completion doc: better explanation for context creation M gtksourceview/gtksourcecompletion.c commit bd3db0464d2833992cca2c41f7bfd684d75305a5 Author: Sébastien Wilmet Date: 2012-04-22 Completion doc: more details about proposal activation The documentation about gtk_source_completion_provider_activate_proposal() was wrong, it's not the label of the proposal which is inserted in the buffer, it's the text of the proposal. The documentation is based on the following functions. In gtksourcecompletion.c: - activate_current_proposal() In gtksourcecompletionutils.c: - gtk_source_completion_utils_get_word_iter() - gtk_source_completion_utils_is_separator() M gtksourceview/gtksourcecompletionproposal.c M gtksourceview/gtksourcecompletionprovider.c commit 20a95a6272cb4204f1853a35022040188707e991 Author: Rachid BM Date: 2012-05-07 Updated Dutch translation M po/nl.po commit b597270d203391234be341ea8be37c21e378bd62 Author: Tom Tryfonidis Date: 2012-05-02 Updated Greek translation M po/el.po commit 57dc6505adffaf325e99080fc5e381bb35883dce Author: Alexandre Rostovtsev Date: 2012-05-01 Require >=gtk+-3.3.8 Needed for gtk_window_set_attached_to() https://bugzilla.gnome.org/show_bug.cgi?id=675272 M configure.ac commit f6b23f1a5a1a5be531af066fca4efa0c9450e4b3 Author: Kjartan Maraas Date: 2012-04-30 Updated Norwegian bokmål translation M po/nb.po commit b93fb561afae9ee44605d05d63e090cfa8bf3119 Author: Sébastien Wilmet Date: 2012-04-22 CompletionProvider: remove redundant documentation The next sentence means exactly the same thing. M gtksourceview/gtksourcecompletionprovider.c commit e49bba1284648faa4294fb84f2fc56c2a0fd5ad4 Author: Sébastien Wilmet Date: 2012-04-22 CompletionInfo: documentation fixes For the section, '.*' appeared in the middle of the sentence. For the "before-show" signal, no documentation was provided because the comment ended with '**/' instead of '*/'. M gtksourceview/gtksourcecompletioninfo.c commit d44df34a8e737608f9e40915a61b3bd3d9c5364a Author: Sébastien Wilmet Date: 2012-04-21 CompletionProposal: better short description The CompletionProposal is an interface. The object is the CompletionItem. M gtksourceview/gtksourcecompletionproposal.c commit 36376ecffd25005354633e0b4cec933e76a26dc8 Author: Sébastien Wilmet Date: 2012-04-21 Completion: small code improvements Add "== NULL", "!= NULL", "== 0", and so on in a condition makes the code clearer. It is used in the other conditions in the same file. In CompletionProvider, the variable 'initialized' is not used. M gtksourceview/gtksourcecompletioncontext.c M gtksourceview/gtksourcecompletioninfo.h M gtksourceview/gtksourcecompletionproposal.c M gtksourceview/gtksourcecompletionprovider.c