Skip to content

Commit

Permalink
mail-notification-5.3
Browse files Browse the repository at this point in the history
* Core changes:
        * Compile options are now passed to the C compiler in
          the appropriate order, fixing the build with options
          such as -Wl,--as-needed (#214450)
        * The "connection to the D-Bus session was lost" error
          dialog is no longer displayed on logout
        * The .desktop files have been improved (#204466)

* IMAP, Maildir and POP3 changes:
        * The message caching code introduced in 5.1 sometimes
          caused a crash: fixed (#210915)

* Evolution changes:
        * A regression introduced in 5.1 caused a crash on
          64-bit systems: fixed (#208149)

* Windows Live Hotmail changes:
        * Spanish inbox support has been fixed (#214986)

* Updated translations:
        * Spanish (Nacho Hermoso de Mendoza)
  • Loading branch information
Jean-Yves Lefort authored and danc86 committed Nov 6, 2010
1 parent 1775f36 commit dec3915
Show file tree
Hide file tree
Showing 41 changed files with 894 additions and 564 deletions.
26 changes: 24 additions & 2 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
5.3 April 27, 2008

* Core changes:
* Compile options are now passed to the C compiler in
the appropriate order, fixing the build with options
such as -Wl,--as-needed (#214450)
* The "connection to the D-Bus session was lost" error
dialog is no longer displayed on logout
* The .desktop files have been improved (#204466)

* IMAP, Maildir and POP3 changes:
* The message caching code introduced in 5.1 sometimes
caused a crash: fixed (#210915)

* Evolution changes:
* A regression introduced in 5.1 caused a crash on
64-bit systems: fixed (#208149)

* Windows Live Hotmail changes:
* Spanish inbox support has been fixed (#214986)

* Updated translations:
* Spanish (Nacho Hermoso de Mendoza)

5.2 March 20, 2008

* Core changes:
Expand Down Expand Up @@ -41,7 +65,6 @@

* IMAP, Maildir, mbox, MH, Mozilla, POP3, Sylpheed, Windows
Live Hotmail and Yahoo! Mail changes:

* The GConf setting
/apps/mail-notification/fallback-charsets has been
added. This setting is used when attempting to
Expand Down Expand Up @@ -72,7 +95,6 @@
Peter Kjellerstedt)

* Windows Live Hotmail changes:

* Account languages other than English are now
supported. Support was added for Brazilian
Portuguese, Danish, Dutch, Finnish, French, German,
Expand Down
2 changes: 1 addition & 1 deletion build/src/mn-evolution-server.c
Original file line number Diff line number Diff line change
Expand Up @@ -556,7 +556,7 @@ mn_evolution_server_camel_message_info_to_dbus_struct (CamelMessageInfo * info)
G_TYPE_STRING, camel_message_info_from(info),
/* char *subject */
G_TYPE_STRING, camel_message_info_subject(info),
0);
(GType) 0);
}}
#line 562 "mn-evolution-server.c"
#undef __GOB_FUNCTION__
Expand Down
2 changes: 1 addition & 1 deletion build/src/mn-hotmail-mailbox.c
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ mn_hotmail_mailbox_encode_with_character_references (const char * str)
{
gunichar c = g_utf8_get_char(p);

if (c < 128 && (g_ascii_isalnum(c) || g_ascii_isspace(c)))
if (c < 128 && (g_ascii_isalnum(c) || g_ascii_isspace(c) || c == '.'))
g_string_append_c(encoded, c);
else
g_string_append_printf(encoded, "&#%i;", (int) c);
Expand Down
20 changes: 10 additions & 10 deletions build/src/mn-mailbox-private.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,32 +42,32 @@ struct _MNMailboxPrivate {
gboolean poll;
#line 246 "src/mn-mailbox.gob"
GSList * all_messages;
#line 249 "src/mn-mailbox.gob"
#line 255 "src/mn-mailbox.gob"
GHashTable * all_messages_mid_hash_table;
#line 256 "src/mn-mailbox.gob"
GHashTable * all_messages_considered_as_read;
#line 262 "src/mn-mailbox.gob"
GHashTable * all_messages_considered_as_read;
#line 268 "src/mn-mailbox.gob"
GHashTable * messages_hash_table;
#line 1018 "src/mn-mailbox.gob"
#line 1024 "src/mn-mailbox.gob"
gboolean checking_enabled;
#line 54 "mn-mailbox-private.h"
};
#line 273 "src/mn-mailbox.gob"
#line 279 "src/mn-mailbox.gob"
void mn_mailbox_set_messages (MNMailbox * self, GSList * messages);
#line 58 "mn-mailbox-private.h"
#line 416 "src/mn-mailbox.gob"
#line 422 "src/mn-mailbox.gob"
void mn_mailbox_set_error (MNMailbox * self, const char * format, ...) G_GNUC_PRINTF(2, 3);
#line 61 "mn-mailbox-private.h"
#line 1020 "src/mn-mailbox.gob"
#line 1026 "src/mn-mailbox.gob"
void mn_mailbox_enable_checking (MNMailbox * self);
#line 64 "mn-mailbox-private.h"
#line 1031 "src/mn-mailbox.gob"
#line 1037 "src/mn-mailbox.gob"
void mn_mailbox_notice (MNMailbox * self, const char * format, ...) G_GNUC_PRINTF(2, 3);
#line 67 "mn-mailbox-private.h"
#line 1049 "src/mn-mailbox.gob"
#line 1055 "src/mn-mailbox.gob"
void mn_mailbox_warning (MNMailbox * self, const char * format, ...) G_GNUC_PRINTF(2, 3);
#line 70 "mn-mailbox-private.h"
#line 1066 "src/mn-mailbox.gob"
#line 1072 "src/mn-mailbox.gob"
MNMessage * mn_mailbox_get_message_from_mid (MNMailbox * self, const char * mid);
#line 73 "mn-mailbox-private.h"

Expand Down
Loading

0 comments on commit dec3915

Please sign in to comment.