aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--NEWS7
-rw-r--r--PLUGIN.ja.txt14
-rw-r--r--PLUGIN.txt13
-rw-r--r--configure.in8
5 files changed, 42 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 3cb797ef..48b38761 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2010-04-02
+
+ * version 3.0.2
+
2010-03-19
* src/account_dialog.c: update folder config file after account name
diff --git a/NEWS b/NEWS
index 566a0657..26684fc6 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,12 @@
Changes of Sylpheed
+* 3.0.2 (stable)
+
+ * The config files are updated after creating new accounts.
+ * The folder config file is updated after changing IMAP or News account
+ name.
+ * Win32: OpenSSL was updated to 0.9.8n.
+
* 3.0.1 (stable)
* Several typos in dialogs were fixed.
diff --git a/PLUGIN.ja.txt b/PLUGIN.ja.txt
index 1eaafbaf..dcf5184c 100644
--- a/PLUGIN.ja.txt
+++ b/PLUGIN.ja.txt
@@ -158,6 +158,14 @@ void (* folderview_menu_popup) (GObject *obj, gpointer ifactory);
FolderView でコンテキストメニューをポップアップしたときに発行される
シグナルです。
-------------------------------------------------------------------------
+void (* compose_created) (GObject *obj, gpointer compose);
+
+Compose メッセージ作成ウィンドウが作成されたときに発行されるシグナルです。
+-------------------------------------------------------------------------
+void (* compose_destroy) (GObject *obj, gpointer compose);
+
+Compose メッセージ作成ウィンドウが破棄される直前に発行されるシグナルです。
+-------------------------------------------------------------------------
* libsylph-0
@@ -211,6 +219,12 @@ void (* folderlist_updated) (GObject *obj)
フォルダ情報が変更され、フォルダリストを格納した folderlist.xml ファイルが
更新されたときに発行されます。
-------------------------------------------------------------------------
+void (* account_updated) (GObject *obj)
+
+アカウント情報が更新されたときに発行されるシグナルです。
+ただし、 account_update_lock() によってロックされている場合は
+発行されません。
+-------------------------------------------------------------------------
サンプルプラグイン
diff --git a/PLUGIN.txt b/PLUGIN.txt
index 4112558f..70646a72 100644
--- a/PLUGIN.txt
+++ b/PLUGIN.txt
@@ -157,6 +157,14 @@ void (* folderview_menu_popup) (GObject *obj, gpointer ifactory);
Emitted on popup of the context menu of FolderView.
-------------------------------------------------------------------------
+void (* compose_created) (GObject *obj, gpointer compose);
+
+Emitted on creating 'Compose' message composition window.
+-------------------------------------------------------------------------
+void (* compose_destroy) (GObject *obj, gpointer compose);
+
+Emitted just before 'Compose' message composition window is destroyed.
+-------------------------------------------------------------------------
* libsylph-0
@@ -210,6 +218,11 @@ void (* folderlist_updated) (GObject *obj)
Emitted when folder information is modified and folderlist.xml, which
contains folder list, is updated.
-------------------------------------------------------------------------
+void (* account_updated) (GObject *obj)
+
+Emitted on the update of account information.
+It will not be emitted if it is locked by account_update_lock(), though.
+-------------------------------------------------------------------------
Sample plug-in
diff --git a/configure.in b/configure.in
index 8368f98f..f813bd82 100644
--- a/configure.in
+++ b/configure.in
@@ -6,11 +6,11 @@ PACKAGE=sylpheed
dnl version number
MAJOR_VERSION=3
MINOR_VERSION=0
-MICRO_VERSION=1
-INTERFACE_AGE=1
-BINARY_AGE=1
+MICRO_VERSION=2
+INTERFACE_AGE=2
+BINARY_AGE=2
EXTRA_VERSION=
-BUILD_REVISION=1002
+BUILD_REVISION=1004
VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION
dnl define if this is a development release