summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Updated Serbian translationМирослав Николић2014-09-172-178/+190
|
* Updated Danish translationKenneth Nielsen2014-09-161-83/+91
|
* Updated Slovenian translationMatej Urbančič2014-09-141-83/+90
|
* Updated Hungarian translationBalázs Úr2014-09-091-85/+93
|
* Updated Russian translationYuri Myasoedov2014-09-091-93/+117
|
* Updated Latvian translationRūdolfs Mazurs2014-09-071-85/+92
|
* Updated Polish translationPiotr Drąg2014-09-071-87/+94
|
* Updated Korean translationChangwoo Ryu2014-09-061-86/+96
|
* Updated Indonesian translationAndika Triwidada2014-09-041-87/+92
|
* Updated Hebrew translationYosef Or Boczko2014-08-281-91/+110
|
* Updated French translationAlexandre Franke2014-08-251-82/+89
|
* Updated Galician translationsFran Diéguez2014-08-251-84/+91
|
* Updated Traditional Chinese translation(Hong Kong and Taiwan)Chao-Hsiung Liao2014-08-252-170/+188
|
* Updated Czech translationMarek Černocký2014-08-221-83/+90
|
* Updated Assamese translationngoswami2014-08-191-85/+92
|
* [l10n] Updated Catalan (Valencian) translationCarles Ferrando2014-08-171-84/+91
|
* [l10n] Update Catalan translationGil Forcada2014-08-171-84/+91
|
* Updated German translationgenodeftest2014-08-141-83/+89
|
* Updated Basque languageInaki Larranaga Murgoitio2014-08-051-85/+93
|
* Updated Greek translationMarMav2014-08-031-86/+97
|
* doap: add <programming-language>Piotr Drąg2014-07-311-0/+2
|
* doap category coreOlav Vitters2014-07-301-0/+1
|
* appdata: Adapt for dconf-editor desktop file renameKalev Lember2014-07-272-2/+2
|
* Updated Lithuanian translationAurimas Černius2014-07-271-85/+92
|
* Updated Brazilian Portuguese translationEnrico Nicoletto2014-07-251-88/+95
|
* Updated Spanish translationDaniel Mustieles2014-07-241-88/+95
|
* Updated Norwegian bokmål translation.Kjartan Maraas2014-07-231-85/+92
|
* dconf-editor: Correct type text for floating point keysGergely Polonkai2014-07-232-1/+17
| | | | | | We were previously showing the range for double keys as integers - correct to using double. https://bugzilla.gnome.org/show_bug.cgi?id=733557
* dconf 0.21.00.21.0Ryan Lortie2014-07-222-2/+16
|
* .gitignore updatesRyan Lortie2014-07-221-2/+3
|
* Updated Greek translationTom Tryfonidis2014-07-091-10/+11
|
* Updated Swedish translationAnders Jonsson2014-04-301-29/+55
|
* Updated Indonesian translationDirgita2014-04-221-8/+10
|
* Updated POTFILES.in and POTFILES.skipPiotr Drąg2014-04-092-7/+7
|
* dconf-editor: Make DBus-activatableMatthias Clasen2014-04-083-3/+14
| | | | | | | | | This commit installs a service file, renames the desktop file to follow the bus name, and adds the DBusActivatable key to the desktop file, following https://wiki.gnome.org/HowDoI/DBusApplicationLaunching https://bugzilla.gnome.org/show_bug.cgi?id=727862
* service: Don't hang during shutdownMarek Kasik2014-04-041-1/+6
| | | | | | | Remember whether a signal was signalled to dconf-service so we don't call g_application_release() more than once. https://bugzilla.gnome.org/show_bug.cgi?id=727549
* doap: update URLsPiotr Drąg2014-03-301-8/+11
|
* dconf 0.20.00.20.0Ryan Lortie2014-03-242-1/+6
|
* Updated Czech translationMarek Černocký2014-03-201-1/+1
|
* dconf 0.19.920.19.92Ryan Lortie2014-03-172-1/+10
|
* build: drop back to automake 1.11.2Ryan Lortie2014-03-132-1/+3
| | | | | | | | | | It seems like 1.13 is still a bit too cutting-edge for some (including Debian wheezy and gnome-continuous). Drop the dependency back to 1.11.2 and add back ACLOCAL_AMFLAGS (but without ACLOCAL_FLAGS). We can reevaluate after jessie is released.
* Bump automake dependency to 1.13Ryan Lortie2014-03-131-1/+1
| | | | | | Since we dropped ACLOCAL_AMFLAGS in Makefile.am we should depend on automake 1.13 (since this is the version that supports using AC_CONFIG_MACRO_DIRS directly).
* Stop using ACLOCAL_FLAGSRyan Lortie2014-03-133-4/+2
| | | | | | | ACLOCAL_PATH has replaced this for some time now. Bump automake dependency to 1.11.2 (this is the first automake that knows about ACLOCAL_PATH).
* configure: depend on a released ValaRyan Lortie2014-03-121-1/+1
| | | | dconf is tested as working with Vala 0.18.
* dconf 0.19.910.19.91Ryan Lortie2014-03-032-1/+8
|
* gvdb test: avoid infinite recursionRyan Lortie2014-02-211-4/+8
| | | | | | | | | | | | | | | | /gvdb/reader/corrupted/7% was failing when run with random seed R02S2a7b9704dbb5ea704b0d724329af0fbf. This is a fuzz test, and it turns out that this particular seed ended up producing a file that was valid, but contained a self-referential table. The testcase happily recursed though this table's subtable (itself) and so on, until it ran out of stack space, causing a crash. This bug would not impact realworld users of gvdb: these users only ever recurse through tables a finite number of times. For dconf, subtables are not used at all. For GSettings, each schema is a subtable, but from within that subtable we only lookup values.
* engine: fix race in match rule addingRyan Lortie2014-02-211-7/+11
| | | | | | | | | | | | | Due to the usual way async in dconf works, we can start getting replies immediately (without returning to the mainloop). For this reason, we must be sure that we do not modify the OutstandingWatch structure at any point after we've issued even one call because the results may already be coming in. For this reason, we must add up the 'pending' count in a separate loop run before we start making the calls. https://bugzilla.gnome.org/show_bug.cgi?id=724929
* dconf 0.19.900.19.90Ryan Lortie2014-02-172-1/+19
|
* file-db: don't install match rules on no busRyan Lortie2014-02-111-8/+15
| | | | | | | file-db databases don't have an associated D-Bus bus type, so don't try to install match rules for them. https://bugzilla.gnome.org/show_bug.cgi?id=723553
* Updated Ukrainian translationDaniel Korostil2014-02-101-25/+35
|