6465 Commits

Author SHA1 Message Date
Colomban Wendling
b80c8cd2a9 Fix custom icons on Windows
Install all icons on Windows, as well as a theme index because the
system doesn't have one and one is required.

Also install the theme index on non-Windows, although it shouldn't
be necessary because the system is likely to provide one.
2013-01-14 19:42:03 +01:00
Duncan de Wet
e506a370e9 Added HTML5 self-closing tags
http://www.w3.org/TR/html-markup/syntax.html#syntax-elements
2013-01-13 23:00:59 +01:00
Frank Lanitz
c45a4f3e1b Merge pull request #92 from YosefOr/patch-6
Update Hebrew Translation
2013-01-08 23:06:45 -08:00
YosefOr
ba09cb310b Update Hebrew Translator 2013-01-08 20:52:55 +02:00
Matthew Brush
1a7a26682d Add doc for terminal background image and regen HTML 2013-01-06 19:15:00 -08:00
Matthew Brush
adfc0985db Merge branch 'krofna/master' 2013-01-06 19:11:17 -08:00
Frank Lanitz
d236b40ce9 Merge pull request #90 from hroncok/master
Updated the Czech translation
2013-01-06 04:46:28 -08:00
Miro Hrončok
ede5d36204 Updated the Czech translation 2013-01-05 19:11:13 +01:00
Colomban Wendling
93ff558544 Merge branch 'use-named-icons' 2013-01-01 19:17:18 +01:00
Colomban Wendling
7688999e62 Optimize PNG icons 2013-01-01 19:14:50 +01:00
Colomban Wendling
3783eed0ea Use icons from the theme in the completion popup
Drop the XPM icons and load the PNG ones through the theme mechanisms,
like we do for the symbols tree.
2013-01-01 19:10:48 +01:00
Colomban Wendling
dabae1f94f Replace images embedded in the sources with proper themable icons
Additionally, provide SVG versions of the icons as well as them
rendered at the various icons sizes.
2013-01-01 19:10:48 +01:00
Colomban Wendling
bd02c009a1 Use the Geany icon from the theme everywhere 2013-01-01 19:10:04 +01:00
Colomban Wendling
003435e16d Revert "Make use of theme icon a various pref."
A preference for an icon doesn't make sense;  if someone don't like
her theme's icon she should either switch to another theme, override
that specific icon or don't bother.

This reverts commit 6897cd49c69535c6563e56ae011c6f8382fec485.
2013-01-01 19:04:59 +01:00
Colomban Wendling
b9c1c90938 Revert "Alter default and document icon setting"
This reverts commit 306eaab3916649567c892215ad8390b9d39de82f.
2013-01-01 19:04:47 +01:00
Colomban Wendling
d2a8a11587 Merge branch 'printing-with-scintilla' 2013-01-01 18:54:08 +01:00
Colomban Wendling
1bad1551d7 Scintilla: properly update the Pango contexts for the target surface
This fixes drawing on a surface that has different settings (like
scaling) than the display surface, by performing the measurements on a
layout properly set up for the target surface.

In practice, this fixes e.g. printing on a scaled surface.

(Applied to Scintilla HG as 74c71632dd1afa726b0f1608d13413e0864da9b0)
2013-01-01 18:51:52 +01:00
Frank Lanitz
35db698eea Merge pull request #89 from andreasots/master
Update to Estonian translation
2012-12-27 23:06:48 -08:00
Andreas Ots
c597e5b390 po/et.po: 970 translated, 4 fuzzy, 267 untranslated 2012-12-27 16:39:48 +02:00
Andreas Ots
3a7453bec4 po/et.po: Git trashed the translations 2012-12-27 15:32:27 +02:00
Andreas Ots
8b9c9d8e43 po/et.po: Header fix 2012-12-27 15:31:00 +02:00
Andreas Ots
e22d8d7e99 Merge? 2012-12-27 15:28:19 +02:00
Andreas Ots
4c3b44f9d7 po/et.po: 650 translated, 2 fuzzy, 589 untranslated 2012-12-27 15:26:59 +02:00
Andreas Ots
4e950a39db po/et.po: 650 translated, 2 fuzzy, 589 untranslated 2012-12-27 13:23:50 +02:00
Andreas Ots
7234f848d8 po/et.po: 623 translated, 2 fuzzy, 616 untranslated 2012-12-27 12:26:04 +02:00
Frank Lanitz
4449a4dc37 Merging a first version of Estonian translation 2012-12-27 08:24:22 +01:00
Andreas Ots
7511e2b0df po/et.po: Translation update: 365 translated, 6 fuzzy, 870 untranslated 2012-12-27 00:50:04 +02:00
Andreas Ots
283638c3d2 po/et.po: Initial version of estonian translation: 278 translated, 2 fuzzy, 961 not translated 2012-12-26 21:57:00 +02:00
Matthew Brush
40cef34326 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.
2012-12-18 15:47:06 -08:00
Mislav Blažević
15fddad323 Implement terminal background image 2012-12-18 12:19:53 +01:00
Enrico Tröger
6241a4520f Remove KEY prefix from GDK_KEY_BackSpace constant
GDK_KEY_* is GTK3 and doesn't work on older GTK versions.
2012-12-16 10:21:01 +01:00
Steven Blatnick
550b2c1219 Use a backspace to browse up a directory. 2012-12-13 10:45:08 -07:00
Nick Treleaven
6ca889c78b Add Document->Clone keybinding 2012-12-12 14:02:50 +00:00
Colomban Wendling
83e7afc199 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.
2012-12-10 22:45:34 +01:00
Frank Lanitz
89d6b42503 Merge pull request #82 from YosefOr/patch-5
Update po/he.po
2012-12-08 14:48:56 -08:00
Colomban Wendling
288adaffd7 Python tag parser: fix detection of keywords followed by a tab (\t)
The Python tag parser used to require a space, and a space only, as the
character following a keyword.  Fix this so it allows any whitespace.
2012-12-06 19:41:14 +01:00
Colomban Wendling
ed2cf2e5f4 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.
2012-12-04 21:52:05 +01:00
YosefOr
67fccdba88 Update po/he.po 2012-12-04 19:40:52 +02:00
Colomban Wendling
d019741512 Properly register the statusbar context ID
Getting the statusbar context ID using the context registration API
allows for other (namely, plugins) to register their own context
without a risk of overriding Geany's one.
2012-12-02 18:03:14 +01:00
Quentin Glidic
8c4db25396 Fix file saving behavior with "allow_always_save"
This preference should only be used for UI action, not for other file
saving triggering.
2012-12-02 17:22:06 +01:00
Colomban Wendling
8f96498323 Fix a typo in the docs 2012-12-02 16:45:17 +01:00
Nick Treleaven
c4b2457761 Fix clashing button mnemonic in detect/reload dialog (#3587465) 2012-11-28 13:50:27 +00:00
Evandro Borracini
3205eeaa71 Reduce unnecessary redraws when typing 2012-11-27 17:05:51 +00:00
Nick Treleaven
a1022060d2 Show Find in Files status summary on Windows 2012-11-27 14:16:30 +00:00
Nick Treleaven
48f7efaa68 Ignore D angle brackets e.g. Foo!(x < 2) 2012-11-27 13:35:50 +00:00
Nick Treleaven
0b63957e59 Add 'Move Line(s)' menu items in Edit->Commands (and popup menu)
Although using menu items for these is not very practical, it helps
discoverability, and they're more useful and intuitive than 'Transpose
Current Line'.
2012-11-23 16:30:18 +00:00
Nick Treleaven
b5b31fb43d Merge branch 'document-clone' 2012-11-23 15:43:21 +00:00
Nick Treleaven
535b7a6b6e Copy selected text only (when present) for Document->Clone 2012-11-23 15:39:50 +00:00
Nick Treleaven
22d5b4795b Update manual for Document->Clone command 2012-11-23 15:37:08 +00:00
Nick Treleaven
5200450b85 Clone line breaking, auto indent, indent type, indent width settings 2012-11-23 15:37:06 +00:00