summaryrefslogtreecommitdiff
path: root/bin
Commit message (Collapse)AuthorAgeFilesLines
...
* dconf update: more lockdown fixesRyan Lortie2011-05-061-3/+9
| | | | | | | | | - regenerate the file when the lock dir timestamp changes - send the proper dbus message - write an actual value for the lock in the GVDB (otherwise the reader won't see it)
* dconf update: support lockdownRyan Lortie2011-05-051-0/+39
|
* dconf update: don't attempt to open non-filesRyan Lortie2011-05-051-0/+6
|
* dconf update: vala deprecation fixupsRyan Lortie2011-05-051-4/+4
|
* dconf cli: insert space after key completionRyan Lortie2011-05-051-1/+1
|
* dconf cli: filter non-dirs for completion on listRyan Lortie2011-05-052-3/+7
|
* dconf cli: commandline completionRyan Lortie2011-05-053-8/+75
|
* dconf cli: more cleanupsRyan Lortie2011-05-052-70/+92
|
* dconf cli: make it a bit more friendlyRyan Lortie2011-05-051-1/+122
| | | | | Make the dconf command-line tool slightly more friendly by adding a help command and invoking that on an unknown command instead of aborting.
* -Wno-error for dconf-updateJürg Billeter2011-01-281-0/+1
| | | | Fixes build with gcc 4.6.
* fix vi-damage in last commitRyan Lortie2010-12-181-1/+1
|
* dconf update: Fix error code EEXIST -> ENOENTRyan Lortie2010-12-181-2/+2
| | | | I meant to check for the file not existing, which is ENOENT.
* Revert "Fix a trivial compile error when using vala 0.9.4. Fixes bgo#626002"Ryan Lortie2010-08-231-1/+0
| | | | This reverts commit 66dcd38beb93f8c2051b5318508515e396b0e5dd.
* Fix a trivial compile error when using vala 0.9.4. Fixes bgo#626002Richard Hughes2010-08-041-0/+1
|
* Remove unreachable codeRyan Lortie2010-08-041-1/+0
|
* set_lock -> set_locked and cleanup gtk-docRyan Lortie2010-08-031-1/+1
| | | | | | | | Rename set_lock to set_locked again (and same SetLock -> SetLocked). Add missing gtk-doc bits, clean up some that are no longer there. Bump gtk-doc dependency.
* Get rid of libtoolRyan Lortie2010-07-241-1/+1
| | | | | | | | | | | You need to type 'make clean' before trying to rebuild dconf after this update (in fact, 'git clean' may be appropriate to clean out all the extra files that libtool leaves around). It's quite likely that this completely breaks dconf builds on non-ELF platforms (and maybe some ELF ones). Please report any problems to bugzilla. I'm very happy to accept patches to fix portability (via ./configure-time checks).
* port client library to ValaRyan Lortie2010-07-193-2/+26
| | | | | | | | | | | | - the API is now completely implemented - update 'engine' API to be vala-bindable without annotations - update GSettings backend to new engine API - drop the readtype non-sense - build/api fixups for editor and commandline tool
* header cleanupRyan Lortie2010-07-182-1/+41
|
* merge 'dconf-update' into 'dconf' utilityRyan Lortie2010-07-183-10/+8
|
* assorted client API cleanups, vala port of 'dconf'Ryan Lortie2010-07-184-243/+61
|
* dconf-update: don't leak fd on insuccessful writeRyan Lortie2010-07-181-4/+9
|
* add 'dconf-update' utilityRyan Lortie2010-07-185-2/+177
| | | | | | | | | | | | | | | | This utility scans /etc/dconf/db/ looking for directories named *.d. For each directory name.d that it finds, it reads each file contained within as a keyfile containing a list of keys to populate a dconf database with. That database is then written to 'name' (ie: the directory name with the '.d' removed), the old file is invalidated, and a signal is sent over the system DBus to indicate the change. This tool facilitates updating of dconf databases by sysadmins who prefer to follow the 'drop a text file here' approach to system management.
* Fix linking with pedantic linkersMatthias Clasen2010-06-121-1/+1
|
* Switch from sequence numbers to tag stringsRyan Lortie2010-06-101-1/+1
|
* FreeBSD: Don't use {a,b,c} expansion in MakefilesRyan Lortie2010-06-021-1/+1
|
* simplify API, add gobject-introspectionRyan Lortie2010-05-281-2/+2
|
* 'list' updatesRyan Lortie2010-05-241-1/+1
| | | | | - move to new GSettingsBackend API - add 'length' parameter, update callers
* test async commands with the cmdline toolRyan Lortie2010-05-241-1/+50
| | | | fix a silly bug that the testing found
* proper CFLAGS, distcheck fixesRyan Lortie2010-05-232-14/+15
|
* more client library API, exposed by cmdline toolRyan Lortie2010-05-231-22/+171
|
* flesh out the APIs a bitRyan Lortie2010-05-231-10/+28
| | | | | - add a sync set() call to client API - GCancellable/GErrorify some APIs
* refactor, add client library, add 'dconf' commandRyan Lortie2010-05-223-0/+32
Only very preliminary functionality for all of these.