See ChangeLog.

Monotone-Parent: 39447fbdf1de4d7eee3f87ded919230e8afb9bb2
Monotone-Revision: fc7652ed896945e9e9171d1081661b72921d2cb6

Monotone-Author: flachapelle@inverse.ca
Monotone-Date: 2010-03-31T16:00:03
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Francis Lachapelle 2010-03-31 16:00:03 +00:00
parent cc9a0b8aba
commit 070973b0ba
3 changed files with 10 additions and 2 deletions

View File

@ -1,5 +1,8 @@
2010-03-31 Francis Lachapelle <flachapelle@inverse.ca>
* SoObjects/Mailer/SOGoDraftObject.m (+initialize): updated the
User-Agent header with the proper version.
* UI/WebServerResources/SchedulerUIDnD.js (onDragStart): don't
start the dragging when the target element has a scrollbar.

View File

@ -88,12 +88,17 @@ static NSString *headerKeys[] = {@"subject", @"to", @"cc", @"bcc",
@implementation SOGoDraftObject
static NGMimeType *MultiMixedType = nil;
static NSString *userAgent = @"SOGoMail 1.0";
static NSString *userAgent = nil;
+ (void) initialize
{
MultiMixedType = [NGMimeType mimeType: @"multipart" subType: @"mixed"];
[MultiMixedType retain];
userAgent = [NSString stringWithFormat: @"SOGoMail %d.%d.%d",
UIX_MAILER_MAJOR_VERSION,
UIX_MAILER_MINOR_VERSION,
UIX_MAILER_SUBMINOR_VERSION];
[userAgent retain];
}
- (id) init

View File

@ -1,6 +1,6 @@
# Version file
SUBMINOR_VERSION:=126
SUBMINOR_VERSION:=2
# v0.9.114 requires libNGMime v4.5.229
# v0.9.114 requires libNGExtensions v4.5.165