summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Updated Occitan translationgnome-3-16Cédric Valmary2016-04-061-332/+321
|
* Updated Icelandic translationSveinn í Felli2015-12-051-37/+29
|
* Updated Portuguese translationPedro Albuquerque2015-07-261-161/+145
|
* yelp-settings: don't use ACTIVE background colorLars Uebernickel2015-06-231-1/+1
| | | | | | | | | GTK_STATE_FLAG_ACTIVE is meant for depressed buttons or the currently selected row in a list box. It did use NORMAL prior to b6ac534. https://bugzilla.gnome.org/show_bug.cgi?id=749947
* Updated Occitan translationCédric Valmary2015-05-181-1414/+514
|
* Version 3.16.13.16.1David King2015-05-112-1/+6
|
* Updated Icelandic translationSveinn í Felli2015-04-281-21/+20
|
* Updated Icelandic translationSveinn í Felli2015-04-211-552/+149
|
* Version 3.16.03.16.0David King2015-03-232-1/+9
|
* Fix broken Bosnian translationAndre Klapper2015-03-211-1/+1
|
* Updated Tajik translationVictor Ibragimov2015-03-141-231/+245
|
* Updated Bosnian translationSamir Ribic2015-03-131-915/+356
|
* Updated Kazakh translationBaurzhan Muftakhidinov2015-03-071-1309/+478
|
* Avoid activating ourselves recursivelyMatthias Clasen2015-03-021-1/+21
| | | | | | | | | | We consider INFO:foobar an 'external uri', and call g_app_info_launch_default_for_uri on it. Which is bad, since GIO promptly determines the default handler for INFO: uris to be...yelp. Avoid this by manually looking up the default handler, and ignoring it if it appears to be yelp. https://bugzilla.gnome.org/show_bug.cgi?id=745407
* Version 3.15.913.15.91David King2015-03-022-1/+7
|
* Use GtkSettings 'gtk-xft-dpi' property to keep track of Xft DPI changesMario Sanchez Prada2015-02-251-2/+51
| | | | | | | | | | Use that property to find the DPI resolution for font handling, in order to calculate the effective font size value that needs to be passed to WebKitSettings when setting the default values. Also, connect to notify::gtk-xft-dpi so that we can update the font size whenever the DPI value changes, and not just on startup. https://bugzilla.gnome.org/show_bug.cgi?id=744921
* Update AX_COMPILER_FLAGS from autoconf-archiveDavid King2015-02-214-143/+30
| | | | | Drop C++ warning checks, as a C++ compiler is not required to build Yelp.
* Version 3.15.903.15.90David King2015-02-162-1/+18
|
* Fix crash when viewing man pagesDavid King2015-02-162-11/+18
| | | | Calling g_strfreev() on a stack-allocated array is a bad idea.
* yelp-debug: check if __STDC_VERSION__ is definedMarek Chalupa2015-02-161-3/+4
| | | | | | | | | __STDC_VERSION__ is defined only when switch -std=c99 (and newer standards) is defined. This can break the build with error: error: "__STDC_VERSION__" is not defined https://bugzilla.gnome.org/show_bug.cgi?id=744454
* build: Add is-release support to AX_CHECK_ENABLE_DEBUGPhilip Withnall2015-02-112-7/+19
| | | | Now fatal warnings are automatically disabled when doing release builds.
* m4: Update AX_COMPILER_FLAGS macros from upstream autoconf-archivePhilip Withnall2015-02-114-6/+32
| | | | This introdues the --disable-Werror flag.
* Fix format string warningDavid King2015-02-091-40/+41
|
* Rewrite marshaller make rulesDavid King2015-02-091-14/+3
|
* Avoid a compiler warning when checking a conditionDavid King2015-02-091-1/+1
|
* Remove unused function declarationsDavid King2015-02-092-4/+0
|
* Avoid pointer arithmetic warningDavid King2015-02-091-1/+1
|
* Fix missing prototype warningDavid King2015-02-092-0/+2
|
* Avoid warning due to unnecessary comparisonDavid King2015-02-091-1/+1
|
* Fix format signedness warningsDavid King2015-02-092-7/+7
|
* Refactor for loop to avoid compiler warningDavid King2015-02-091-1/+1
|
* Add parentheses around assignments used as truthDavid King2015-02-091-2/+2
| | | | Avoid compiler warnings.
* Fix variable shadowing warningsDavid King2015-02-093-30/+27
|
* Fix warnings about discarding constDavid King2015-02-097-14/+18
|
* Fix unhandled case in switch warningsDavid King2015-02-092-18/+20
|
* Fix sign comparison warningDavid King2015-02-092-5/+5
|
* Avoid warnings from mixing declarations and codeDavid King2015-02-093-14/+27
|
* Fix switch missing default case warningsDavid King2015-02-097-1/+20
|
* Fix pointer sign warningsDavid King2015-02-094-25/+25
|
* Fix unused variable warningsDavid King2015-02-0911-38/+4
|
* Fix uninitialized variable warningsDavid King2015-02-092-4/+4
|
* Remove libyelp redundant declarationsDavid King2015-02-0913-25/+0
|
* Enable compiler warnings for libyelpDavid King2015-02-091-0/+1
|
* Remove redundant extra semicolonsDavid King2015-02-0913-25/+25
|
* Fix format signedness warning in testsDavid King2015-02-091-1/+1
|
* Fix implicit funcation declaration warningDavid King2015-02-092-0/+2
|
* Use AX_IS_RELEASEDavid King2015-02-052-1/+62
| | | | | | | Check for the presence of a git repository to determine if compiler warnings should be fatal. https://wiki.gnome.org/Projects/GnomeCommon/Migration#preview
* Remove unused *_FLAGS variablesDavid King2015-02-051-8/+0
|
* Use WARN_CFLAGS instead of AM_CFLAGSDavid King2015-02-053-3/+2
| | | | There is no need to use the indirection of AM_CFLAGS.
* Use AX_COMPILER_FLAGSDavid King2015-02-0511-16/+736
| | | | | | Additionally, remove unused DEPRECATION_FLAGS. https://wiki.gnome.org/Projects/GnomeCommon/Migration