[sylpheed-jp:10598] Re: Sylpheed 2.5.0rc released

"MATSUU Takuto" <[email protected]>
Newsgroups gmane.mail.sylpheed.general.japanese
Message-ID <[email protected]>
松鵜と申します。
いつもSylpheedを利用させていただいております。
以下の2点についてパッチを作成しました。

-ショートカットキーについて
Sylpheedのメッセージビューにいくつかショートカットキーが
登録されてなかったので、追加してみました。
添付のsylpheed-messageview.patchです。

-aspellについて
手元のgtkspell-2.0.11(gentoo)はaspellに依存しておらず、
makeに失敗してしまうため、-laspellを入れるパッチを作成しました。
添付のsylpheed-aspell.patchです。

以上、よろしくお願いいたします。

2008/5/20 Hiroyuki Yamamoto <[email protected]>:
> 山本です。
>
> Sylpheed 2.5.0rc (開発版/リリース候補)をリリースしました。
>
> 2.5.0 正式版は来週中にはリリースする予定です(特に問題がなければ)。
>
> http://sylpheed.sraoss.jp/ja/news.html
> http://sylpheed.sraoss.jp/ja/download.html#development
>
> 変更点:
>
>    * メッセージ作成ウィンドウの最大化状態を記憶するようにしました。
>    * 「次へ/前へ」のキーボード操作でフォーカスをテキストビューからサマ
>      リビューに移さないようにしました。
>    * PGP署名/暗号化に失敗した場合はエラーダイアログを表示するようにしま
>      した。
>    * sylpheed.desktopファイルを修正しました。
>
> --
> Hiroyuki Yamamoto <[email protected]>
>
> _______________________________________________
> Sylpheed-jp mailing list
> [email protected]
> http://www.sraoss.jp/mailman/listinfo/sylpheed-jp
>
>

_______________________________________________
Sylpheed-jp mailing list
[email protected]
http://www.sraoss.jp/mailman/listinfo/sylpheed-jp
sylpheed-messageview.patch (text/x-patch, 3.2 KB)
Index: src/messageview.c
===================================================================
--- src/messageview.c	(revision 2000)
+++ src/messageview.c	(working copy)
@@ -147,21 +147,21 @@
 static GtkItemFactoryEntry msgview_entries[] =
 {
 	{N_("/_File"),			NULL, NULL, 0, "<Branch>"},
-	{N_("/_File/_Save as..."),	NULL, save_as_cb, 0, NULL},
+	{N_("/_File/_Save as..."),	"<control>S", save_as_cb, 0, NULL},
 	{N_("/_File/---"),		NULL, NULL, 0, "<Separator>"},
 #if GTK_CHECK_VERSION(2, 10, 0)
 	{N_("/_File/Page set_up..."),	NULL, page_setup_cb, 0, NULL},
 #endif
 	{N_("/_File/_Print..."),	NULL, print_cb, 0, NULL},
 	{N_("/_File/---"),		NULL, NULL, 0, "<Separator>"},
-	{N_("/_File/_Close"),		NULL, close_cb, 0, NULL},
+	{N_("/_File/_Close"),		"<control>W", close_cb, 0, NULL},
 
 	{N_("/_Edit"),			NULL, NULL, 0, "<Branch>"},
-	{N_("/_Edit/_Copy"),		NULL, copy_cb, 0, NULL},
-	{N_("/_Edit/Select _all"),	NULL, allsel_cb, 0, NULL},
+	{N_("/_Edit/_Copy"),		"<control>C", copy_cb, 0, NULL},
+	{N_("/_Edit/Select _all"),	"<control>A", allsel_cb, 0, NULL},
 	{N_("/_Edit/---"),		NULL, NULL, 0, "<Separator>"},
 	{N_("/_Edit/_Find in current message..."),
-					NULL, search_cb, 0, NULL},
+					"<control>F", search_cb, 0, NULL},
 
 	{N_("/_View"),			NULL, NULL, 0, "<Branch>"},
 
@@ -256,31 +256,31 @@
 #undef ENC_ACTION
 
 	{N_("/_View/---"),		NULL, NULL, 0, "<Separator>"},
-	{N_("/_View/Mess_age source"),	NULL, view_source_cb, 0, NULL},
+	{N_("/_View/Mess_age source"),	"<control>U", view_source_cb, 0, NULL},
 	{N_("/_View/All _headers"),
-					NULL, show_all_header_cb, 0, "<ToggleItem>"},
+					"<control>H", show_all_header_cb, 0, "<ToggleItem>"},
 
 	{N_("/_Message"),		NULL, NULL, 0, "<Branch>"},
 	{N_("/_Message/Compose _new message"),
-					NULL, compose_cb, 0, NULL},
+					"<control>M", compose_cb, 0, NULL},
 	{N_("/_Message/---"),		NULL, NULL, 0, "<Separator>"},
-	{N_("/_Message/_Reply"),	NULL, reply_cb, COMPOSE_REPLY, NULL},
+	{N_("/_Message/_Reply"),	"<control>R", reply_cb, COMPOSE_REPLY, NULL},
 	{N_("/_Message/Repl_y to/_all"),
-					NULL, reply_cb, COMPOSE_REPLY_TO_ALL, NULL},
+					"<shift><control>R", reply_cb, COMPOSE_REPLY_TO_ALL, NULL},
 	{N_("/_Message/Repl_y to/_sender"),
 					NULL, reply_cb, COMPOSE_REPLY_TO_SENDER, NULL},
 	{N_("/_Message/Repl_y to/mailing _list"),
-					NULL, reply_cb, COMPOSE_REPLY_TO_LIST, NULL},
+					"<control>L", reply_cb, COMPOSE_REPLY_TO_LIST, NULL},
 	{N_("/_Message/---"),		NULL, NULL, 0, "<Separator>"},
-	{N_("/_Message/_Forward"),	NULL, reply_cb, COMPOSE_FORWARD, NULL},
+	{N_("/_Message/_Forward"),	"<control><alt>F", reply_cb, COMPOSE_FORWARD, NULL},
 	{N_("/_Message/For_ward as attachment"),
-					NULL, reply_cb, COMPOSE_FORWARD_AS_ATTACH, NULL},
+					"<shift><control><alt>F", reply_cb, COMPOSE_FORWARD_AS_ATTACH, NULL},
 	{N_("/_Message/Redirec_t"),	NULL, reply_cb, COMPOSE_REDIRECT, NULL},
 	{N_("/_Message/---"),		NULL, NULL, 0, "<Separator>"},
 	{N_("/_Message/Re-_edit"),	NULL, reedit_cb, 0, NULL},
 
 	{N_("/_Tools"),			NULL, NULL, 0, "<Branch>"},
-	{N_("/_Tools/_Address book"),	NULL, addressbook_open_cb, 0, NULL},
+	{N_("/_Tools/_Address book"),	"<shift><control>A", addressbook_open_cb, 0, NULL},
 	{N_("/_Tools/Add sender to address boo_k"),
 					NULL, add_address_cb, 0, NULL},
 	{N_("/_Tools/---"),		NULL, NULL, 0, "<Separator>"},
sylpheed-aspell.patch (text/x-patch, 482 B)
Index: configure.in
===================================================================
--- configure.in	(revision 2000)
+++ configure.in	(working copy)
@@ -267,6 +267,7 @@
 		CFLAGS="$CFLAGS `$PKG_CONFIG --cflags gtkspell-2.0`"
 		LIBS="$LIBS `$PKG_CONFIG --libs gtkspell-2.0`"
 		AC_DEFINE(USE_GTKSPELL, 1, Use GtkSpell in editor)
+		AC_CHECK_LIB(aspell, new_aspell_config, LIBS="$LIBS -laspell",[ac_cv_enable_gtkspell=no])
 	else
 		AC_MSG_RESULT(no)
 		ac_cv_enable_gtkspell=no
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.