mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-25 23:16:14 +01:00
gsettings: implemented --version command
This was discussed in https://bugzilla.gnome.org/show_bug.cgi?id=697131
This commit is contained in:
parent
4214078f33
commit
bfb6ff0dbd
@ -21,7 +21,7 @@ __gsettings() {
|
|||||||
|
|
||||||
case "$((${COMP_CWORD}-$coffset))" in
|
case "$((${COMP_CWORD}-$coffset))" in
|
||||||
1)
|
1)
|
||||||
choices=$'--schemadir\nhelp \nlist-schemas\nlist-relocatable-schemas\nlist-keys \nlist-children \nlist-recursively \nget \nrange \nset \nreset \nreset-recursively \nwritable \nmonitor'
|
choices=$'--schemadir\n--version\nhelp \nlist-schemas\nlist-relocatable-schemas\nlist-keys \nlist-children \nlist-recursively \nget \nrange \nset \nreset \nreset-recursively \nwritable \nmonitor'
|
||||||
;;
|
;;
|
||||||
|
|
||||||
2)
|
2)
|
||||||
|
@ -148,6 +148,15 @@ output_list (const gchar * const *list)
|
|||||||
g_print ("%s\n", list[i]);
|
g_print ("%s\n", list[i]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
gsettings_print_version (GSettings *settings,
|
||||||
|
const gchar *key,
|
||||||
|
const gchar *value)
|
||||||
|
{
|
||||||
|
g_print ("%d.%d.%d\n", glib_major_version, glib_minor_version,
|
||||||
|
glib_micro_version);
|
||||||
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
gsettings_list_schemas (GSettings *settings,
|
gsettings_list_schemas (GSettings *settings,
|
||||||
const gchar *key,
|
const gchar *key,
|
||||||
@ -530,6 +539,12 @@ gsettings_help (gboolean requested,
|
|||||||
synopsis = "[COMMAND]";
|
synopsis = "[COMMAND]";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
else if (strcmp (command, "--version") == 0)
|
||||||
|
{
|
||||||
|
description = _("Print version information and exit");
|
||||||
|
synopsis = "";
|
||||||
|
}
|
||||||
|
|
||||||
else if (strcmp (command, "list-schemas") == 0)
|
else if (strcmp (command, "list-schemas") == 0)
|
||||||
{
|
{
|
||||||
description = _("List the installed (non-relocatable) schemas");
|
description = _("List the installed (non-relocatable) schemas");
|
||||||
@ -736,6 +751,9 @@ main (int argc, char **argv)
|
|||||||
if (strcmp (argv[1], "help") == 0)
|
if (strcmp (argv[1], "help") == 0)
|
||||||
return gsettings_help (TRUE, argv[2]);
|
return gsettings_help (TRUE, argv[2]);
|
||||||
|
|
||||||
|
else if (argc == 2 && strcmp (argv[1], "--version") == 0)
|
||||||
|
function = gsettings_print_version;
|
||||||
|
|
||||||
else if (argc == 2 && strcmp (argv[1], "list-schemas") == 0)
|
else if (argc == 2 && strcmp (argv[1], "list-schemas") == 0)
|
||||||
function = gsettings_list_schemas;
|
function = gsettings_list_schemas;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user