Branch: refs/heads/master
Author: Andreas Ots <andreasots(a)gmail.com>
Committer: Andreas Ots <andreasots(a)gmail.com>
Date: Wed, 26 Dec 2012 19:57:00 UTC
Commit: 283638c3d2ad7428d6c855b91008ccdbc3003ddc
https://github.com/geany/geany/commit/283638c3d2ad7428d6c855b91008ccdbc3003…
Log Message:
-----------
po/et.po: Initial version of estonian translation: 278 translated, 2 fuzzy, 961 not translated
Modified Paths:
--------------
po/et.po
Modified: po/et.po
5435 files changed, 5435 insertions(+), 0 deletions(-)
===================================================================
No diff available, check online
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: TBD).
Branch: refs/heads/master
Author: Matthew Brush <matt(a)geany.org>
Committer: Matthew Brush <matt(a)geany.org>
Date: Tue, 18 Dec 2012 23:47:06 UTC
Commit: 40cef34326f172abeb8ee20949fb7cac25518ee3
https://github.com/geany/geany/commit/40cef34326f172abeb8ee20949fb7cac25518…
Log Message:
-----------
Fix "default" named style mapping for filetypes.conf
"default" was mapped to "value" which is normally a string-like
style rather than a "default" type of style which make some themes
that set different background colour for strings to look weird for
config files highlighting.
Modified Paths:
--------------
data/filetypes.conf
Modified: data/filetypes.conf
2 files changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -1,7 +1,7 @@
# For complete documentation of this file, please see Geany's main documentation
[styling]
# Edit these in the colorscheme .conf file instead
-default=value
+default=default
comment=comment
section=tag
key=attribute
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: TBD).
Branch: refs/heads/master
Author: Colomban Wendling <ban(a)herbesfolles.org>
Committer: Colomban Wendling <ban(a)herbesfolles.org>
Date: Mon, 10 Dec 2012 21:45:34 UTC
Commit: 83e7afc1991c882890d6e28027e0ec26552c0944
https://github.com/geany/geany/commit/83e7afc1991c882890d6e28027e0ec26552c0…
Log Message:
-----------
Fix return value of search_find_text() when the match is out of bounds
When performing a regular expression search on a range, and there is a
match past the end of the range, search_find_text() used to improperly
return the position of the match, but without filling the
Sci_TextToFind structure. This lead to the calling code assume there
was a match, and maybe read the uninitialized fields in the
Sci_TextToFind structure, thus leading to undefined behavior.
So, fix search_find_text() so it properly returns -1 when there is a
match but it is outside the bounds.
Modified Paths:
--------------
src/search.c
Modified: src/search.c
4 files changed, 3 insertions(+), 1 deletions(-)
===================================================================
@@ -1989,7 +1989,9 @@ gint search_find_text(ScintillaObject *sci, gint flags, struct Sci_TextToFind *t
pos = ttf->chrg.cpMin;
ret = find_regex(sci, pos, regex);
- if (ret >= 0 && ret < ttf->chrg.cpMax)
+ if (ret >= ttf->chrg.cpMax)
+ ret = -1;
+ else if (ret >= 0)
{
ttf->chrgText.cpMin = regex_matches[0].start;
ttf->chrgText.cpMax = regex_matches[0].end;
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: TBD).
Branch: refs/heads/master
Author: Colomban Wendling <ban(a)herbesfolles.org>
Committer: Colomban Wendling <ban(a)herbesfolles.org>
Date: Tue, 04 Dec 2012 20:52:05 UTC
Commit: ed2cf2e5f423eb484400637a54b58c9876b88b0a
https://github.com/geany/geany/commit/ed2cf2e5f423eb484400637a54b58c9876b88…
Log Message:
-----------
VTE: Grab focus upon middle click
When pasting with the X primary clipboard (middle mouse button), the
user expects the focus to be grabbed by the widget receiving the data.
No idea why the VTE itself don't grab upon middle click, though.
Modified Paths:
--------------
src/vte.c
Modified: src/vte.c
4 files changed, 4 insertions(+), 0 deletions(-)
===================================================================
@@ -399,6 +399,10 @@ static gboolean vte_button_pressed(GtkWidget *widget, GdkEventButton *event, gpo
gtk_widget_grab_focus(vc->vte);
gtk_menu_popup(GTK_MENU(vc->menu), NULL, NULL, NULL, NULL, event->button, event->time);
}
+ else if (event->button == 2)
+ {
+ gtk_widget_grab_focus(widget);
+ }
return FALSE;
}
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: TBD).