mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-04-26 07:19:28 +00:00
See ChangeLog.
Monotone-Parent: 61296b2807f18b0b48ad4d06689b71ad8563e335 Monotone-Revision: d56dcfcfa2ad9eaeb548182071e486328b8a3cce Monotone-Author: flachapelle@inverse.ca Monotone-Date: 2012-01-24T14:05:53
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
2012-01-24 Francis Lachapelle <flachapelle@inverse.ca>
|
||||
|
||||
* UI/Scheduler/UIxCalFolderActions.m (-importAction): failback to
|
||||
latin-1 when utf-8 decoding doesn't work.
|
||||
|
||||
2012-01-19 Francis Lachapelle <flachapelle@inverse.ca>
|
||||
|
||||
* UI/WebServerResources/UIxMailToSelection.js
|
||||
|
||||
1
NEWS
1
NEWS
@@ -9,6 +9,7 @@ Enhancements
|
||||
- updated Ukrainian translation
|
||||
- now possible to use memcached over a UNIX socket
|
||||
- increase size of content columns
|
||||
- improved import of .ics files
|
||||
|
||||
Bug Fixes
|
||||
- alarms for tasks now depend on the start date and instead of the due date
|
||||
|
||||
@@ -72,6 +72,9 @@
|
||||
{
|
||||
fileContent = [[NSString alloc] initWithData: (NSData *) data
|
||||
encoding: NSUTF8StringEncoding];
|
||||
if (fileContent == nil)
|
||||
fileContent = [[NSString alloc] initWithData: (NSData *) data
|
||||
encoding: NSISOLatin1StringEncoding];
|
||||
[fileContent autorelease];
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user