diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | src/mainwindow.c | 4 |
2 files changed, 9 insertions, 0 deletions
@@ -1,5 +1,10 @@ 2013-01-31 + * src/mainwindow.c: help_command_line_show(): updated command line + help. + +2013-01-31 + * src/rpop3.c: do not disconnect immediately but send QUIT on normal POP3 errors. Changed 'Refresh' button/menu to 'Resume'. diff --git a/src/mainwindow.c b/src/mainwindow.c index 98a21d79..d72b1a22 100644 --- a/src/mainwindow.c +++ b/src/mainwindow.c @@ -4106,9 +4106,11 @@ static void help_command_line_show(void) "--status [folder]...\n" "--status-full [folder]...\n" "--open folderid/msgnum\n" + "--open <file URL>\n" "--configdir dirname\n" "--exit\n" "--debug\n" + "--safe-mode\n" "--help\n" "--version")); gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 0); @@ -4123,9 +4125,11 @@ static void help_command_line_show(void) "show the total number of messages\n" "show the status of each folder\n" "open message in new window\n" + "open an rfc822 message file in a new window\n" "specify directory which stores configuration files\n" "exit Sylpheed\n" "debug mode\n" + "safe mode\n" "display this help and exit\n" "output version information and exit")); gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 0); |