aboutsummaryrefslogtreecommitdiff
path: root/src/conf.c
Commit message (Collapse)AuthorAge
* conf: convert to C++Max Kellermann2013-01-10
|
* conf: add a "database" blockMax Kellermann2012-08-08
| | | | | The new block overrides the "db_file" setting, and allows configuring any database plugin.
* require GLib 2.16Max Kellermann2012-07-10
| | | | | GLib 2.16 was released more than 4 years ago. Let's remove some cruft from the glib_compat.h header, and avoid new cruft to it.
* use g_strerror() instead of strerror()Max Kellermann2012-03-06
| | | | Make sure we get a UTF-8 encoded string.
* conf: export config_param_free()Max Kellermann2011-09-09
|
* conf: _get_next_param() returns a const pointerMax Kellermann2011-09-09
| | | | No writers.
* conf: add config_dup_block_path()Max Kellermann2011-09-09
|
* utils: parsePath() returns GError on failureMax Kellermann2011-09-09
| | | | Better error messages.
* conf: turn config_get_path() into config_dup_path()Max Kellermann2011-09-09
| | | | | | | | | config_get_path() was somewhat flawed, because it pretended to be a function, when it really had a side effect. The second flaw was that it did not return the parser error, instead it aborted the whole process, which is bad style. The new function returns a duplicated (modified) string that must be freed by the caller, and returns a GError on failure.
* conf: get_block_param() returns a const pointerMax Kellermann2011-09-09
| | | | No caller needs to write.
* conf: move duplicate check to _read_name_value()Max Kellermann2011-09-09
| | | | config_add_block_param() cannot fail, which makes it easier to use.
* conf: move code to config_read_name_value()Max Kellermann2011-09-09
| | | | Reduce indent.
* Merge branch 'v0.16.x'Max Kellermann2011-07-19
|\ | | | | | | | | | | Conflicts: NEWS configure.ac
| * conf: add missing fclose in error pathJonathan Neuschäfer2011-07-18
| | | | | | | | This patch seems a bit ugly, maybe it would be a bit cleaner with gotos.
* | despotify: Add support utilitiesSimon Kagstrom2011-03-29
| | | | | | | | | | Used to connect and authenticate to despotify. Provides a singleton session and a desptoify-track-to-tags function.
* | playlist_state: add option "restore_paused"Max Kellermann2011-02-23
| | | | | | | | | | When set, MPD will not auto-start playback on startup; it will be in "paused" state.
* | copyright year 2011Max Kellermann2011-01-29
| |
* | string_util: add function strchug_fast()Max Kellermann2010-12-23
| | | | | | | | Replace g_strchug() calls with a cheaper implementation.
* | utils: move string_array_contains() to string_util.cMax Kellermann2010-12-23
|/
* eliminate g_error() usageThomas Jansen2010-09-25
| | | | | | | | | | | | | | Replaced all occurrences of g_error() with MPD_ERROR() located in a new header file 'mpd_error.h'. This macro uses g_critical() to print the error message and then exits gracefully in contrast to g_error() which would internally call abort() to produce a core dump. The macro name is distinctive and allows to find all places with dubious error handling. The long-term goal is to get rid of MPD_ERROR() altogether. To facilitate the eventual removal of this macro it was added in a new header file rather than to an existing header file. This fixes #2995 and #3007.
* filter/replay_gain: added option "replaygain_limit"Daniel Seuthe2010-05-30
|
* inotify: added setting "auto_update_depth"Max Kellermann2010-04-13
| | | | | Limits the depth of the watched directories. This is useful to keep resource usage down and speed up MPD startup.
* conf: added function config_get_unsigned()Max Kellermann2010-04-13
|
* Update copyright notices.Avuton Olrich2009-12-31
|
* include config.h in all sourcesMax Kellermann2009-11-12
| | | | | | After we've been hit by Large File Support problems several times in the past week (which only occur on 32 bit platforms, which I don't have), this is yet another attempt to fix the issue.
* configure.ac: require GLib 2.12Max Kellermann2009-11-10
| | | | | | Drop the required GLib version from 2.16 to 2.12, because many current systems still don't have GLib 2.16. This requires several new compatibility functions in glib_compat.h.
* utils: renamed stringFoundInStringArray()Max Kellermann2009-11-06
| | | | | No CamelCase. Use bool instead of int. Make both arguments mandatory.
* mpd.conf: new bool config value for enabling/disabling inotify updateViliam Mateicka2009-10-26
|
* playlist_list: pass configuration to playlist pluginsMax Kellermann2009-10-13
| | | | This patch completes the configuration support.
* conf: handle fatal errors with GErrorMax Kellermann2009-09-24
| | | | | | | Don't call g_error(), which will abort the process and dump core. This patch does not affect all the config_get_X() functions. These need some more refactoring.
* conf: splitted function config_param_free()Max Kellermann2009-09-24
|
* conf: removed the deprecated "error_file" optionMax Kellermann2009-08-24
| | | | | This option was deprecated by the 0.15 release. This patch makes this option invalid.
* conf: use the tokenizer libraryMax Kellermann2009-07-19
|
* daemon: added "group" configuration optionMichal Nazarewicz2009-07-19
| | | | | | | | | | | | | The "group" configuration option is similar to "user" as it sets user set what group MPD shall run as. With "user" option, MPD changed GID to the GID of the user, however, more control could be desired. Moreover, the patch changes the way of checking whether no setuid(2)/setgid(2) is required -- previously user names were compered, now UID and GIDs are compered (ie. the one we already have (getuid(2)/getgid(2)) with the one we want to change to).
* conf: use bp->value, not param->valueMax Kellermann2009-07-06
| | | | | | A recent change to the boolean parser introduced a bug: instead of using the block_param's value with get_bool(), we passed param->value (which is always NULL in this case).
* conf: registered option "filter"Max Kellermann2009-07-05
| | | | Add this option to the user's manual.
* conf: log unused/unknown block parametersMax Kellermann2009-06-25
|
* conf: added "used" flag to struct block_paramMax Kellermann2009-06-25
|
* conf: detect duplicate parameters in config_add_block_param()Max Kellermann2009-06-25
| | | | | Moved the check from config_get_block_param(). Detect the duplicate parameter when it's added, not when it's queried.
* conf: make get_bool() return a boolMax Kellermann2009-06-25
| | | | | | | Instead of returning an artificial three-state integer, return a "success" value and put the boolean value into a "bool" pointer. That's a little bit more overhead, but an API which looks more natural.
* conf: moved code from get_bool() to string_array_contains()Max Kellermann2009-06-25
|
* conf: register configuration options staticallyMax Kellermann2009-06-25
| | | | | Initialize the config_entries array at compile time. This is not only faster, but also smaller.
* conf: removed config_add_param()Max Kellermann2009-06-25
| | | | This function is unused.
* conf: replace "mask" bit field with two "bool" variablesMax Kellermann2009-06-25
| | | | Due to padding, this takes the same amount of memory.
* volume: removed support for legacy mixer configurationMax Kellermann2009-06-25
| | | | | The top-level "mixer_device" and "mixer_control" options have been deprecated by MPD 0.15, and it's safe to remove them in MPD 0.16.
* Preamp for missing replay-gainDaniel Seuthe2009-06-25
|
* conf: make config_param.num_block_params unsignedMax Kellermann2009-06-03
|
* conf: eliminated CamelCaseMax Kellermann2009-06-03
| | | | Renamed all remaining CamelCase functions.
* conf: use g_ascii_strcasecmp() instead of strcasecmp()Max Kellermann2009-04-28
| | | | | strcasecmp() is locale dependent, making it a bad choice for internal string comparisons.
* conf: config_param_free() not necessary for export.Avuton Olrich2009-03-30
|