See ChangeLog.

Monotone-Parent: 61296b2807f18b0b48ad4d06689b71ad8563e335
Monotone-Revision: d56dcfcfa2ad9eaeb548182071e486328b8a3cce

Monotone-Author: flachapelle@inverse.ca
Monotone-Date: 2012-01-24T14:05:53
maint-2.0.2
Francis Lachapelle 2012-01-24 14:05:53 +00:00
parent 58ad3eaa7d
commit 40ba66330c
3 changed files with 9 additions and 0 deletions

View File

@ -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
View File

@ -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

View File

@ -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];
}