summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* 3.10.03.10.0Matthias Clasen2013-09-232-2/+40
|
* Add a release note about settingsMatthias Clasen2013-09-231-0/+3
|
* Allow applications to use gtk-menu-bar-accel in 3.10Matthias Clasen2013-09-232-19/+39
| | | | | | | | | gnome-terminal is still using this setting, so we'll let applications override it for another cycle. It is no longer backed by a system-wide setting, though, and it will still go away eventually. This partically reverts b26c74e5dac0b5fd869d2c8cc7a0edb6b01aeebd
* Allow applications to use gtk-enable-mnemonics in 3.10Matthias Clasen2013-09-233-3/+23
| | | | | | | | | gnome-terminal is still using this setting, so we'll let applications override it for another cycle. It is no longer backed by a system-wide setting, though, and it will still go away eventually. This partically reverts 7e3a494fac62140f466fc43f6cc061215953e9b1
* Drop border-image-repeat test for 3.10.0Matthias Clasen2013-09-235-2610/+0
| | | | | It got broken by recent cairo changes. Investigation and fixing will happen on master.
* Updated Hebrew translationYosef Or Boczko2013-09-231-5/+5
| | | | Signed-off-by: Yosef Or Boczko <yoseforb@gmail.com>
* [l10n] Updated Italian translation.Milo Casagrande2013-09-231-117/+110
|
* Update Czech transaltionPetr Kovar2013-09-231-1289/+1258
|
* Update Czech translationPetr Kovar2013-09-231-302/+168
|
* icon-theme: Better handling of unscaled icon directoriesAlexander Larsson2013-09-231-7/+32
| | | | | | | | | | | If an icon is in a Fixed or Threshold directory we normally don't scale it. However, in the case of HiDPI scaling we *do* want to scale it, to avoid different layouts in Lo/HiDPI. We look up whatever the size of the icon would have been in LoDPI and scale to that in the no-scaling case, thus getting the same layout as the unscaled case. https://bugzilla.gnome.org/show_bug.cgi?id=708384
* icon-theme: Make icon_info_new() have some argsAlexander Larsson2013-09-231-33/+22
| | | | This gets rid of a bunch of duplicated code.
* testicontheme: Add some tests for scalesAlexander Larsson2013-09-231-17/+32
|
* demos/gtk-demo/toolpalette.c: Avoid C99ismChun-wei Fan2013-09-231-1/+2
| | | | Avoid declaring variable at the middle of the block
* Assamese translation updatedNilamdyuti Goswami2013-09-231-1546/+1959
|
* Updated Indonesian translationAndika Triwidada2013-09-231-79/+83
|
* Updated slovak translationPeter Mráz2013-09-222-2938/+4055
|
* Updated slovak translationPavol Klačanský2013-09-221-2/+2
|
* Updated French translationClaude Paroz2013-09-222-1859/+2178
|
* Updated Lithuanian translationAurimas Černius2013-09-221-80/+82
|
* MSVC Builds: "Install" gtklistboxrowaccessible.hChun-wei Fan2013-09-222-0/+3
| | | | ...which is an a11y header introduced in commit c22e27f9.
* Updated slovak translationPavol Klačanský2013-09-221-85/+88
|
* Updated Spanish translationDaniel Mustieles2013-09-221-78/+79
|
* Updated Hebrew properties translationYosef Or Boczko2013-09-221-678/+698
|
* Updated Hebrew translationYosef Or Boczko2013-09-221-99/+103
|
* Improve struct packing in various placesMatthias Clasen2013-09-2119-45/+47
|
* Remove priv pointer from GtkStackSwitcherMatthias Clasen2013-09-212-25/+48
| | | | | This is a new widget, so lets avoid the unnecessary priv pointer while we still can.
* Improve struct packing in GdkWindowImplWaylandMatthias Clasen2013-09-211-12/+6
|
* Updated Portuguese translationDuarte Loreto2013-09-221-1974/+2245
|
* Updated Portuguese translationDuarte Loreto2013-09-221-1580/+2029
|
* Small cleanup for the previous commitMatthias Clasen2013-09-211-2/+0
| | | | | When setting an accessible type, we don't need to set an accessible row anymore.
* Add a GtkListBoxRow accessibleMatthias Clasen2013-09-217-85/+299
| | | | | | | | This lets us do two things: 1. Set the list-item role 2. Set selectable and selected states as appropriate https://bugzilla.gnome.org/show_bug.cgi?id=692258
* Small improvement to GtkLinkButton a11yMatthias Clasen2013-09-213-1/+21
| | | | | ATK has a visited state, so propagate the visited property of GtkLinkButton to that state.
* Updated Latvian translatioRūdolfs Mazurs2013-09-211-134/+34
|
* Updated Slovenian translationMatej Urbančič2013-09-211-46/+48
|
* Update Kazakh translationBaurzhan Muftakhidinov2013-09-211-27/+30
|
* places sidebar: Don't activate the bookmark if Eject was clickedFederico Mena Quintero2013-09-201-7/+2
| | | | | | This should really fix https://bugzilla.gnome.org/show_bug.cgi?id=704087 ... Signed-off-by: Federico Mena Quintero <federico@gnome.org>
* Trivial typo fixMatthias Clasen2013-09-201-1/+1
|
* Updated Brazilian Portuguese translationEnrico Nicoletto2013-09-202-69/+71
|
* Updated Galician translationsFran Diéguez2013-09-211-61/+63
|
* Updated Polish translationPiotr Drąg2013-09-201-63/+58
|
* Add accessible names to csd buttonsMatthias Clasen2013-09-202-0/+14
| | | | Its the right thing to do.
* Updated Scottish Gaelic translationGunChleoc2013-09-201-1530/+1902
|
* Updated Scottish Gaelic translationGunChleoc2013-09-201-1372/+1740
|
* icontheme: Make sure icon_info->scale doesn't end up 0Florian Müllner2013-09-201-2/+2
| | | | | | | | GdkPixbuf will fail returning %NULL if we try to scale a pixbuf to (0, 0), which will then trigger an assertion in gtk_icon_info_load_icon_finish(); we never want a scale of 0, so ensure it is at least 1. https://bugzilla.gnome.org/show_bug.cgi?id=708384
* Assamese translation updatedNilamdyuti Goswami2013-09-201-1916/+2135
|
* Updated Traditional Chinese translation(Hong Kong and Taiwan)Chao-Hsiung Liao2013-09-204-710/+700
|
* places sidebar: don't open a bookmark when clicking ejectJoshua Lock2013-09-191-1/+6
| | | | | | Trying to open a bookmark which is being ejected is at best confusing. https://bugzilla.gnome.org/show_bug.cgi?id=704087
* listbox: Don't crash if cursor_row is NULL in real_focusAlexander Larsson2013-09-191-2/+2
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=708320
* ListBox: Update docs of GtkListBoxUpdateHeaderFuncTimm Bäder2013-09-191-1/+1
| | | | before is always NULL for the first row.
* Updated Serbian translationМирослав Николић2013-09-182-3132/+4112
|