diff options
author | pawel <pawel@FreeBSD.org> | 2013-12-15 06:02:10 +0800 |
---|---|---|
committer | pawel <pawel@FreeBSD.org> | 2013-12-15 06:02:10 +0800 |
commit | f55dc8b88f592ddde94e8894087d0f1c527690c8 (patch) | |
tree | bc3b83959799cbda6fb422ffc0a6018c49199c02 /mail/claws-mail-vcalendar | |
parent | 1f17997456e5740cd79f55c715273547d81a35f0 (diff) | |
download | freebsd-ports-gnome-f55dc8b88f592ddde94e8894087d0f1c527690c8.tar.gz freebsd-ports-gnome-f55dc8b88f592ddde94e8894087d0f1c527690c8.tar.zst freebsd-ports-gnome-f55dc8b88f592ddde94e8894087d0f1c527690c8.zip |
Update to version 3.9.3
New in this release:
~~~~~~~~~~~~~~~~~~~~
* The TAB address completion in the Compose window now matches any
part of the address and not just the beginning.
* When copying or moving a message, the type-ahead search now matches
any part of a folder name and not just the beginning.
* It is now possible to replace the current signature in the Compose
window by using the '/Message/Replace signature' menu item.
* It is now possible to disable the 'Subject is empty' warning
dialogue. See the option 'Warn when Subject is empty' option on the
'/Configuration/Preferences/Mail handling/Sending' page.
* When sending messages, if the hostname cannot be determined,
fallback to 'localhost' rather than 'unknown', as the latter is
rejected by some servers.
* Added better handling of messages from broken mailers, such as
yahoo groups.
* PDF plugin: the minimum required version of poppler is 0.12.0.
* PGP/* plugin: long key IDs are now displayed in the dialogues
instead of short IDs.
* PGP/* plugin: The automatic signature check is now non-blocking.
* Python plugin: can now access accounts, mailboxes, folder
properties
* vCalendar plugin: webcals:// URLs are now treated as https://
* Translation updates: Brazilian Portuguese, Czech, Dutch, French,
German, Hebrew, Slovak, Spanish, and Swedish.
* Support for Maemo has been removed.
Diffstat (limited to 'mail/claws-mail-vcalendar')
-rw-r--r-- | mail/claws-mail-vcalendar/Makefile | 4 | ||||
-rw-r--r-- | mail/claws-mail-vcalendar/files/patch-src__plugins__vcalendar__vcal_meeting_gtk.c | 71 |
2 files changed, 1 insertions, 74 deletions
diff --git a/mail/claws-mail-vcalendar/Makefile b/mail/claws-mail-vcalendar/Makefile index 9e64691b1542..bd32936bfbdf 100644 --- a/mail/claws-mail-vcalendar/Makefile +++ b/mail/claws-mail-vcalendar/Makefile @@ -2,12 +2,10 @@ # $FreeBSD$ PORTNAME= vcalendar -PORTREVISION= 2 +PORTREVISION= 0 COMMENT= vCalendar plugin for Claws Mail -EXTRA_PATCHES= ${FILESDIR}/patch-src__plugins__vcalendar__vcal_meeting_gtk.c - CLAWS_PLUGINS_BUILD= vcalendar .include "../claws-mail/Makefile.claws" diff --git a/mail/claws-mail-vcalendar/files/patch-src__plugins__vcalendar__vcal_meeting_gtk.c b/mail/claws-mail-vcalendar/files/patch-src__plugins__vcalendar__vcal_meeting_gtk.c deleted file mode 100644 index 1850dea07f8a..000000000000 --- a/mail/claws-mail-vcalendar/files/patch-src__plugins__vcalendar__vcal_meeting_gtk.c +++ /dev/null @@ -1,71 +0,0 @@ ---- ./src/plugins/vcalendar/vcal_meeting_gtk.c.orig 2013-03-19 07:31:04.000000000 +0100 -+++ ./src/plugins/vcalendar/vcal_meeting_gtk.c 2013-09-28 16:28:18.000000000 +0200 -@@ -1433,15 +1433,31 @@ - - times = get_predefined_times(); - -- meet->start_time = gtk_combo_box_entry_new_text (); -+#if !GTK_CHECK_VERSION(2, 24, 0) -+ meet->start_time = gtk_combo_box_entry_new_text(); -+#else -+ meet->start_time = gtk_combo_box_text_new_with_entry(); -+#endif - gtk_combo_box_set_active(GTK_COMBO_BOX(meet->start_time), -1); - menu = GTK_LIST_STORE(gtk_combo_box_get_model(GTK_COMBO_BOX(meet->start_time))); -+#if !GTK_CHECK_VERSION(2, 24, 0) - combobox_set_popdown_strings(GTK_COMBO_BOX(meet->start_time), times); -- -- meet->end_time = gtk_combo_box_entry_new_text (); -+#else -+ combobox_set_popdown_strings(GTK_COMBO_BOX_TEXT(meet->start_time), times); -+#endif -+ -+#if !GTK_CHECK_VERSION(2, 24, 0) -+ meet->end_time = gtk_combo_box_entry_new_text(); -+#else -+ meet->end_time = gtk_combo_box_text_new_with_entry(); -+#endif - gtk_combo_box_set_active(GTK_COMBO_BOX(meet->end_time), -1); - menu = GTK_LIST_STORE(gtk_combo_box_get_model(GTK_COMBO_BOX(meet->end_time))); -+#if !GTK_CHECK_VERSION(2, 24, 0) - combobox_set_popdown_strings(GTK_COMBO_BOX(meet->end_time), times); -+#else -+ combobox_set_popdown_strings(GTK_COMBO_BOX_TEXT(meet->end_time), times); -+#endif - - list_free_strings(times); - g_list_free(times); -@@ -1597,12 +1613,14 @@ - date_hbox = gtk_hbox_new(FALSE, 6); - date_vbox = gtk_vbox_new(FALSE, 6); - hbox = gtk_hbox_new(FALSE, 6); -- label = gtk_label_new(_("<b>Starts at:</b> ")); gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5); -+ label = gtk_label_new(_("<b>Starts at:</b> ")); -+ gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5); - gtk_label_set_use_markup(GTK_LABEL(label), TRUE); - - gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(hbox), meet->start_time, FALSE, FALSE, 0); -- label = gtk_label_new(_("<b> on:</b>")); gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5); -+ label = gtk_label_new(_("<b> on:</b>")); -+ gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5); - gtk_label_set_use_markup(GTK_LABEL(label), TRUE); - gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(date_vbox), hbox, FALSE, FALSE, 0); -@@ -1619,12 +1637,14 @@ - - date_vbox = gtk_vbox_new(FALSE, 6); - hbox = gtk_hbox_new(FALSE, 6); -- label = gtk_label_new(_("<b>Ends at:</b> ")); gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5); -+ label = gtk_label_new(_("<b>Ends at:</b> ")); -+ gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5); - gtk_label_set_use_markup(GTK_LABEL(label), TRUE); - - gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(hbox), meet->end_time, FALSE, FALSE, 0); -- label = gtk_label_new(_("<b> on:</b>")); gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5); -+ label = gtk_label_new(_("<b> on:</b>")); -+ gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5); - gtk_label_set_use_markup(GTK_LABEL(label), TRUE); - gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(date_vbox), hbox, FALSE, FALSE, 0); |