2005-07-19 Marcus Mueller <znek@mulle-kybernetik.com>
+ * v0.9.140
+
+ * UIxCalView.m: reversed shouldAdd logic in filterAppointments to do
+ the right thing ...
+
* v0.9.139
* UIxAppointmentEditor.m: fixed automatic participants addition
unsigned p, pCount;
BOOL shouldAdd;
- shouldAdd = NO;
+ shouldAdd = YES;
info = [_apts objectAtIndex:i];
partmails = [[info objectForKey:@"partmails"]
componentsSeparatedByString:@"\n"];
partstates = [[info objectForKey:@"partstates"]
componentsSeparatedByString:@"\n"];
state = [partstates objectAtIndex:p];
- if ([state intValue] != iCalPersonPartStatDeclined)
- shouldAdd = YES;
+ if ([state intValue] == iCalPersonPartStatDeclined)
+ shouldAdd = NO;
break;
}
}
# Version file
-SUBMINOR_VERSION:=139
+SUBMINOR_VERSION:=140
# v0.9.136 requires SOGoUI v0.9.30
# v0.9.123 requires Appointments v0.9.35