diff options
author | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2013-03-29 05:34:02 +0000 |
---|---|---|
committer | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2013-03-29 05:34:02 +0000 |
commit | ee249804d592b44897008e17b3108ba9a2c1325d (patch) | |
tree | c57fb41f7142b3e4d48f26974cfc28755e41d6db | |
parent | b688be32a76fdfb0fce8754d22accd3202cc76d3 (diff) |
updated documents.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@3243 ee746299-78ed-0310-b773-934348b2243d
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | INSTALL | 2 | ||||
-rw-r--r-- | INSTALL.ja | 4 | ||||
-rw-r--r-- | PLUGIN.txt | 88 | ||||
-rw-r--r-- | README | 2 | ||||
-rw-r--r-- | README.ja | 2 | ||||
-rw-r--r-- | configure.in | 4 |
7 files changed, 99 insertions, 7 deletions
@@ -1,5 +1,9 @@ 2013-03-29 + * version 3.4.0beta3 + +2013-03-29 + * src/quote_fmt_parse.y: insert current date with %d for a new message. 2013-03-29 @@ -109,7 +109,7 @@ o Mac OS X 10.3 / 10.4 + X11 for Mac OS X Windows -o Windows 2000 / XP / Vista / 7 (MinGW - 32bit) +o Windows XP / Vista / 7 / 8 (MinGW 32bit) Build it ======== @@ -2,7 +2,7 @@ ================ このプログラムをコンパイルするには GTK+ 2.4.0 以降が必要です(GTK+ 2.6.0 -以降推奨)。 +以降を推奨)。 このプログラムは Ubuntu 8.04 LTS / 10.04 LTS / Windows XP 上で開発されて います。他の環境ではうまく動作しない可能性もあります。 @@ -109,7 +109,7 @@ o Mac OS X 10.3 / 10.4 + X11 for Mac OS X Windows -o Windows 2000 / XP / Vista / 7 (MinGW - 32bit) +o Windows XP / Vista / 7 / 8 (MinGW 32bit) ビルド ====== @@ -187,6 +187,94 @@ uri: URI string if the menu popups on an URI selected_text: string if a string is selected on the text view msginfo: the MsgInfo message object displayed in the text view ------------------------------------------------------------------------- +gboolean (* compose_send) (GObject *obj, + gpointer compose, + gint compose_mode, + gint send_mode, + const gchar *msg_file, + GSList *to_list); + +Emitted on a composed message is being sent. +If FALSE is returned, the message is sent normally. +If TRUE is returned, sending is cancelled. + +compose: the Compose object +compose_mode: ComposeMode enum +send_mode: 0: send immediately 1: queue and send later +msg_file: path to the created message file +to_list: list of recipients +------------------------------------------------------------------------- +void (* messageview_show) (GObject *obj, + gpointer msgview, + MsgInfo *msginfo, + gboolean all_headers); + +Emitted on displaying a message. + +msgview: the MessageView object +msginfo: the MsgInfo message object displayed +all_headers: TRUE if all headers are displayed. FALSE if not. +------------------------------------------------------------------------- +void (* inc_mail_start) (GObject *obj, + PrefsAccount *account); + +Emitted on the start of receiving. + +account: receive target account (PrefsAccount) +------------------------------------------------------------------------- +void (* inc_mail_finished) (GObject *obj, + gint new_messages); + +Emitted on the end of receiving. + +new_messages: number of received messages +------------------------------------------------------------------------- +void (* prefs_common_open) (GObject *obj, + GtkWidget *window); + +Emitted on opening common preferences dialog. + +window: dialog window (GtkWindow) +------------------------------------------------------------------------- +void (* prefs_account_open) (GObject *obj, + PrefsAccount *account, + GtkWidget *window); + +Emitted on opening account preferences dialog. + +window: dialog window (GtkWindow) +------------------------------------------------------------------------- +void (* prefs_filter_open) (GObject *obj, + GtkWidget *window); + +Emitted on opening filter rule preferences dialog. + +window: dialog window (GtkWindow) +------------------------------------------------------------------------- +void (* prefs_filter_edit_open) (GObject *obj, + FilterRule *rule, + const gchar *header, + const gchar *key, + GtkWidget *window); + +Emitted on opening filter rule edit dialog. + +window: dialog window (GtkWindow) +------------------------------------------------------------------------- +void (* prefs_template_open) (GObject *obj, + GtkWidget *window); + +Emitted on opening template dialog. + +window: dialog window (GtkWindow) +------------------------------------------------------------------------- +void (* plugin_manager_open) (GObject *obj, + GtkWidget *window); + +Emitted on opening plug-in manager dialog. + +window: dialog window (GtkWindow) +------------------------------------------------------------------------- * libsylph-0 @@ -24,7 +24,7 @@ What's Sylpheed Sylpheed is an e-mail client based on GTK+ GUI toolkit. Sylpheed runs on Unix-like systems such as Linux, BSD and Mac OS X, or -Microsoft Windows (2000 or later). +Microsoft Windows (XP or later). Sylpheed is a free software distributed under the GNU GPL (the library part LibSylph is GNU LGPL). @@ -42,7 +42,7 @@ Sylpheed とは Sylpheed は GUI ツールキットに GTK+ を使用した電子メールクライアントです。 Sylpheed は Linux、BSD、Mac OS X 等主に Unix 系のシステム、または -Microsoft Windows (2000以降)で動作します。 +Microsoft Windows (XP 以降)で動作します。 Sylpheed は GNU GPL (ライブラリ部分の LibSylph は GNU LGPL) に従って配布 されているフリーソフトウェアです。 diff --git a/configure.in b/configure.in index b19874f9..631fb1f8 100644 --- a/configure.in +++ b/configure.in @@ -9,8 +9,8 @@ MINOR_VERSION=4 MICRO_VERSION=0 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=beta2 -BUILD_REVISION=1145 +EXTRA_VERSION=beta3 +BUILD_REVISION=1146 VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION dnl define if this is a development release |