- Change the help for notify-send to indicate that --expire-timeout requires milliseconds, not seconds. This fixes bug #28.
- Fixed the short flag for --type to be -T. This fixes bug #18.
This commit is contained in:
parent
69547a286e
commit
30961cc1a6
|
@ -1,3 +1,10 @@
|
||||||
|
Mon Mar 20 14:12:15 PST 2006 Christian Hammond <chipx86@chipx86.com>
|
||||||
|
|
||||||
|
* tools/notify-send.c:
|
||||||
|
- Change the help for notify-send to indicate that --expire-timeout
|
||||||
|
requires milliseconds, not seconds. This fixes bug #28.
|
||||||
|
- Fixed the short flag for --type to be -T. This fixes bug #18.
|
||||||
|
|
||||||
Sat Mar 18 14:47:53 PST 2006 Christian Hammond <chipx86@chipx86.com>
|
Sat Mar 18 14:47:53 PST 2006 Christian Hammond <chipx86@chipx86.com>
|
||||||
|
|
||||||
* tools/notify-send.c:
|
* tools/notify-send.c:
|
||||||
|
|
|
@ -51,15 +51,15 @@ main(int argc, const char **argv)
|
||||||
NULL },
|
NULL },
|
||||||
{ "expire-time", 't', POPT_ARG_INT | POPT_ARGFLAG_STRIP,
|
{ "expire-time", 't', POPT_ARG_INT | POPT_ARGFLAG_STRIP,
|
||||||
&expire_timeout, 0,
|
&expire_timeout, 0,
|
||||||
N_("Specifies the timeout in seconds at which to expire the "
|
N_("Specifies the timeout in milliseconds at which to expire the "
|
||||||
"notification."),
|
"notification."),
|
||||||
NULL },
|
NULL },
|
||||||
{ "icon", 'i', POPT_ARG_STRING | POPT_ARGFLAG_STRIP, &icons, 0,
|
{ "icon", 'i', POPT_ARG_STRING | POPT_ARGFLAG_STRIP, &icons, 0,
|
||||||
N_("Specifies an icon filename or stock icon to display."),
|
N_("Specifies an icon filename or stock icon to display."),
|
||||||
N_("ICON1,ICON2,...") },
|
N_("ICON") },
|
||||||
{ "type", 't', POPT_ARG_STRING | POPT_ARGFLAG_STRIP, &type, 0,
|
{ "type", 'T', POPT_ARG_STRING | POPT_ARGFLAG_STRIP, &type, 0,
|
||||||
N_("Specifies the notification type."),
|
N_("Specifies the notification type."),
|
||||||
N_("ICON1,ICON2,...") },
|
N_("TYPE") },
|
||||||
POPT_AUTOHELP
|
POPT_AUTOHELP
|
||||||
POPT_TABLEEND
|
POPT_TABLEEND
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue