[Commits] [SCM] claws branch, master, updated. 3.11.1-182-g23a3e90

ticho at claws-mail.org ticho at claws-mail.org
Tue Jun 30 22:30:05 CEST 2015


The branch, master has been updated
       via  23a3e906b2191571dce8fea9aec5fad6c76d11af (commit)
       via  7c5efcb9a59ad866b4f9ae1fa2f728502c9429cf (commit)
      from  f8bac1960b52c8c07c7501d9cd9c1a566d4c78ec (commit)

Summary of changes:
 src/plugins/libravatar/claws.def      |    9 +++-
 src/plugins/managesieve/claws.def     |   81 ++++++++++++++++++++++-----------
 src/plugins/notification/claws.def    |    2 +
 src/plugins/rssyl/claws.def           |    3 ++
 src/plugins/rssyl/rssyl_update_feed.c |    2 +-
 5 files changed, 68 insertions(+), 29 deletions(-)


- Log -----------------------------------------------------------------
commit 23a3e906b2191571dce8fea9aec5fad6c76d11af
Author: Andrej Kacian <ticho at claws-mail.org>
Date:   Tue Jun 30 14:46:32 2015 +0200

    RSSyl: Variable typo fix in Windows-specific code.

diff --git a/src/plugins/rssyl/rssyl_update_feed.c b/src/plugins/rssyl/rssyl_update_feed.c
index 0f33616..284b548 100644
--- a/src/plugins/rssyl/rssyl_update_feed.c
+++ b/src/plugins/rssyl/rssyl_update_feed.c
@@ -195,7 +195,7 @@ RFetchCtx *rssyl_prep_fetchctx_from_url(gchar *url)
 	feed_set_cookies_path(ctx->feed, rssyl_prefs_get()->cookies_path);
 	feed_set_ssl_verify_peer(ctx->feed, rssyl_prefs_get()->ssl_verify_peer);
 #ifdef G_OS_WIN32
-	if (!g_ascii_strncasecmp(ritem->url, "https", 5)) {
+	if (!g_ascii_strncasecmp(url, "https", 5)) {
 		feed_set_cacert_file(ctx->feed, claws_ssl_get_cert_file());
 		debug_print("RSSyl: using cert file '%s'\n", feed_get_cacert_file(ctx->feed));
 	}

commit 7c5efcb9a59ad866b4f9ae1fa2f728502c9429cf
Author: Andrej Kacian <ticho at claws-mail.org>
Date:   Tue Jun 30 14:40:41 2015 +0200

    Updated plugins' claws.def files as needed for Windows build.

diff --git a/src/plugins/libravatar/claws.def b/src/plugins/libravatar/claws.def
index cbd9c19..faf52cc 100644
--- a/src/plugins/libravatar/claws.def
+++ b/src/plugins/libravatar/claws.def
@@ -1,6 +1,11 @@
 LIBRARY CLAWS-MAIL.EXE
 EXPORTS
+alertpanel_error
+alertpanel_full
+alertpanel_notice
+alertpanel_warning
 auto_configure_service_sync
+claws_unlink
 extract_address
 get_locale_dir
 check_plugin_version
@@ -15,6 +20,7 @@ hooks_unregister_hook
 is_dir_exist
 line_has_quote_char
 make_dir
+md5_hex_digest
 pref_get_escaped_pref
 pref_get_unescaped_pref
 prefs_common
@@ -30,4 +36,5 @@ prefs_write_param
 prefs_common_get_prefs
 procmsg_msginfo_add_avatar
 procmsg_msginfo_get_avatar
-md5_hex_digest
\ No newline at end of file
+slist_free_strings_full
+to_human_readable
diff --git a/src/plugins/managesieve/claws.def b/src/plugins/managesieve/claws.def
index cd46de6..43b1e89 100644
--- a/src/plugins/managesieve/claws.def
+++ b/src/plugins/managesieve/claws.def
@@ -1,33 +1,60 @@
 LIBRARY CLAWS-MAIL.EXE
 EXPORTS
-auto_configure_service_sync
-extract_address
-get_locale_dir
+account_find_from_id
+account_get_list
+alertpanel
+alertpanel_error
+alertpanel_full
 check_plugin_version
-conv_codeset_strdup
-conv_get_locale_charset_str_no_utf8
+cm_menu_create_action_group_full
+cm_menu_set_sensitive_full
+combobox_get_active_data
+combobox_select_by_data
 debug_print_real
 debug_srcname
-file_exist
-get_rc_dir
-hooks_register_hook
-hooks_unregister_hook
-is_dir_exist
-line_has_quote_char
-make_dir
-pref_get_escaped_pref
-pref_get_unescaped_pref
+gtkut_get_options_frame
+gtkut_sc_combobox_create
+gtkut_stock_button_set_create
+gtkut_stock_with_text_button_set_create
+gtkut_text_view_search_string
+gtkut_text_view_search_string_backward
+gtkut_text_view_set_position
+gtkut_window_new
+input_dialog
+input_dialog_query_password_keep
+log_print
+log_warning
+mainwindow_get_mainwindow
+manage_window_destroy
+manage_window_focus_in
+manage_window_focus_out
+manage_window_unmap
+md5_hex_hmac
+message_search_other
+passcrypt_decrypt
+passcrypt_encrypt
+password_get
+prefs_account_get_privacy_prefs
+prefs_account_register_page
+prefs_account_set_privacy_prefs
+prefs_account_unregister_page
+prefs_button_toggled
 prefs_common
-prefs_file_close
-prefs_file_close_revert
-prefs_gtk_register_page
-prefs_gtk_unregister_page
-prefs_read_config
-prefs_set_block_label
-prefs_set_default
-prefs_write_open
-prefs_write_param
-prefs_common_get_prefs
-procmsg_msginfo_add_avatar
-procmsg_msginfo_get_avatar
-md5_hex_digest
+session_connect
+session_destroy
+session_disconnect
+session_init
+session_is_connected
+session_recv_msg
+session_register_ping
+session_send_msg
+session_set_recv_message_notify
+session_start_tls
+undo_block
+undo_destroy
+undo_init
+undo_paste_clipboard
+undo_redo
+undo_set_change_state_func
+undo_unblock
+undo_undo
diff --git a/src/plugins/notification/claws.def b/src/plugins/notification/claws.def
index be31c0a..33120fc 100644
--- a/src/plugins/notification/claws.def
+++ b/src/plugins/notification/claws.def
@@ -17,6 +17,7 @@ compose_new
 compose_reply_from_messageview
 execute_command_line
 file_exist
+filesel_select_file_open
 folder_find_item_from_identifier
 folder_func_to_all_folders
 folder_get_list
@@ -26,6 +27,7 @@ folder_item_get_msg_list
 folder_item_get_name
 get_rc_dir
 gtkut_convert_int_to_gdk_color
+gtkut_get_browse_file_btn
 gtkut_stock_button_set_create
 gtkut_window_new
 inc_all_account_mail_cb
diff --git a/src/plugins/rssyl/claws.def b/src/plugins/rssyl/claws.def
index 8e94255..d819bed 100644
--- a/src/plugins/rssyl/claws.def
+++ b/src/plugins/rssyl/claws.def
@@ -7,6 +7,7 @@ check_plugin_version
 claws_do_idle
 claws_is_exiting
 claws_is_starting
+claws_ssl_get_cert_file
 claws_unlink
 cm_menu_set_sensitive_full
 conv_encode_header_full
@@ -16,6 +17,7 @@ debug_print_real
 debug_srcname
 dirent_is_regular_file
 file_exist
+filesel_select_file_open
 filesel_select_file_open_with_filter
 file_strip_crs
 folder_add
@@ -67,6 +69,7 @@ gtk_cmclist_thaw
 gtk_cmctree_get_type
 gtk_cmctree_is_ancestor
 gtk_cmctree_node_get_row_data
+gtkut_get_browse_file_btn
 gtkut_widget_draw_now
 gtkut_widget_set_can_default
 gtkut_window_new

-----------------------------------------------------------------------


hooks/post-receive
-- 
Claws Mail


More information about the Commits mailing list