X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=sope-ical%2FNGiCal%2FChangeLog;h=8c34500366a176f6f0a8bf4ee1a00c9910e9cd74;hb=0339e7c66ca6ff248a214825ec0fc40051b5ac94;hp=a4bdd5be82f153e5c01515a45737efdc90daab0e;hpb=a14ac68bd7e2ffad7e23b63af1d7431e1af7a54d;p=sope diff --git a/sope-ical/NGiCal/ChangeLog b/sope-ical/NGiCal/ChangeLog index a4bdd5be..8c345003 100644 --- a/sope-ical/NGiCal/ChangeLog +++ b/sope-ical/NGiCal/ChangeLog @@ -1,3 +1,258 @@ +2005-07-15 Helge Hess + + * v4.5.50 + + * NGiCal.xmap: fixed mapping of 'method' property (is an attribute of + the calendar) + + * iCalCalendar.m: use ASSIGNCOPY in accessors, added 'method' to + -description + +2005-07-14 Marcus Mueller + + * v4.5.49 + + * iCalCalendar.[hm]: added 'method' + + * iCalEntityObject.[hm]: added 'userComment', changed all email + related comparisons to lowercase all strings before comparison + + * iCalEvent.h: pretty printed iVars + + * NGiCal.xmap: added mapping for 'comment' -> 'userComment' and + 'method' -> 'method' + +2005-07-13 Helge Hess + + * v4.5.48 + + * NGVCard.m: added some convenience methods to access the preferred + email, tel and adr + + * NGVCardOrg.m: added a convenience method to access the first orgunit + +2005-07-05 Marcus Mueller + + * NSCalendarDate+ICal.m: fixed 'gmtcalfmt' which removed seconds from + format for no obvious reason (v4.5.47) + +2005-05-31 Helge Hess + + * NGVCardSaxHandler.m: ensure that types are always uppercase, improved + check for DUPs (v4.5.46) + +2005-05-16 Marcus Mueller + + * NGiCal.xcode: reorganized ordering of headers/classes + +2005-05-15 Marcus Mueller + + * NGiCal.xcode: added vCard related stuff + +2005-05-10 Helge Hess + + * NGVCard.m: added support for profile, source, name (v4.5.45) + +2005-05-09 Helge Hess + + * first version of working vCard SAX handler (v4.5.54) + +2005-05-08 Helge Hess + + * more work on vCard parsing (v4.5.53) + + * work on vCard objects (incomplete) (v4.5.52) + +2005-04-25 Helge Hess + + * iCalDateHolder.m, iCalDataSource.m: fixed gcc 4.0 warnings (v4.5.51) + +2005-03-23 Marcus Mueller + + * v4.5.50 + + * iCalRenderer.h: added missing paranthesis for iVar declarations + + * iCalTrigger.m, iCalEntityObject.m, iCalToDo.m, + iCalRecurrenceCalculator.m, iCalDateHolder.m, iCalDataSource.m, + iCalPerson.m, iCalCalendar.m: numerous dealloc bugs/leaks fixed + +2005-03-02 Marcus Mueller + + * iCalRecurrenceCalculator.m: bugfix for monthly and yearly recurrences + (v4.5.49) + + * iCalRecurrenceCalculator.m: optimized exception date handling in + complex calculation method quite a bit. Fixed bugs in all calculation + methods by introducing checks on the desired range. (v4.5.48) + +2005-02-28 Marcus Mueller + + * v4.5.47 + + * iCalRepeatableEntityObject.m: shifted code to + iCalRecurrenceCalculator + + * iCalRecurrenceCalculator.[hm]: new class method to calculate + complex recurrences. In SOGo this information is stored in quick + fields to reduce the complexity of lookups, hence we need to offer + a proper API to calculate date ranges from this information. + Fixed all calculations to explicitly set timeZone for all newly + created startDates - it seems the timeZone information is not + properly retained by the hour:minute:second: method from NGExtensions + which lead to improper DST related shifts. + + * iCalDateHolder.h: exposed the API + + * NSCalendarDate+ICal.[hm]: new convenience constructor for calendar + dates from iCal representations (uses iCalDateHolder internally) + + * iCalRecurrenceRule.m: changed setUntil: to utilize new public + NSCalendarDate+ICal category + + * NGiCal.h: added NSCalendarDate+ICal.h to the public headers + + * GNUmakefile: NSCalendarDate+ICal.h is public now + +2005-02-20 Helge Hess + + * NGiCal.xmap: fixed a missing semicolon (did not load on MacOSX) + (v.4.5.46) + +2005-02-17 Helge Hess + + * GNUmakefile.preamble: fixed linking locations for dependencies + (v4.5.45) + +2005-02-17 Marcus Mueller + + * v4.5.44 + + * iCalEntityObject.[hm]: added convenience API + + * iCalRepeatableEntityObject.[hm]: added convenience API + + * iCalRecurrenceRule.m: bugfixes in -byDayList and + -iCalRepresentationForWeekDay: + + * iCalRecurrenceCalculator.m: implemented 'BYDAY' calculations for + weekly frequency. Note that 'COUNT' is still broken for this case. + + * iCalRenderer.m: updated rendering, now can render recurrence rules + and accompanied stuff properly. + +2005-02-15 Marcus Mueller + + * v4.5.43 + + * iCalRecurrenceRule.[hm]: exposed some more of the API + + * iCalRecurrenceCalculator.m: some bugfixes. Split the code and gave + iCalWeeklyRecurrenceCalculator its own calculation - there are a + number of foreseeable differences to daily calculation that make + this necessary in the near future anyways. + + * v4.5.42 + + * iCalRepeatableEntityObject.[hm]: added ability to properly calculate + the recurrence ranges within a specific calendar date range, taking + all possible exceptions into account. + + * iCalEvent.[hm]: convenience wrapper for the new method found in + iCalRepeatableEntityObject. + +2005-02-14 Helge Hess + + * v4.5.41 + + * GNUmakefile.preamble: added missing dependency on libNGExtensions + (which also adds the dependency on libDOM) + + * iCalRecurrenceCalculator.h: fixed missing forward declaration in + header + +2005-02-12 Marcus Mueller + + * v4.5.40 + + * iCalRecurrenceCalculator.[hm]: implemented all required (and simple) + calculations. Added some convenience API to query some of the more + obvious ranges suitable as limits for fetching/comparison. + + * iCalRepeatableEntityObject.[hm]: new method for calculating the + last possible recurrence start date. This can be used for fetches + as well. + + * iCalEvent.[hm]: more convenient wrapper for the new method found in + iCalRepeatableEntityObject. + + * NSCalendarDate+ICal.[hm]: convenience methods for calculating + "distances" between dates. + + * tests/*: updated + +2005-02-11 Marcus Mueller + + * v4.5.39 + + * README: updated + + * iCalRepeatableEntityObject.[hm]: new base class for all other + repeatable entity objects. Offers a convenience API for generating + recurrence ranges and tests, taking all exceptions into account. + + * iCalRecurrenceRule.[hm]: an iCal recurrence rule, modeled as closely + as possible to RFC2445. Please note that this is work in progress + and far from being complete, yet. + + * iCalRecurrenceCalculator.[hm]: a controller implementing RFC2445 + to properly generate recurrence ranges and accompanied functionality. + + * iCalEvent.[hm], iCalToDo.[hm]: now subclasses from + iCalRepeatableEntityObject, thus removed code dealing with + recurrences + + * NGiCal.h: added new headers + + * NGiCal.xmap: changed recurrenceRule mappings due to model change + + * tests/*: contains unit tests for stuff dealing with recurrences. See + accompanied README for details + +2004-12-17 Marcus Mueller + + * iCalPerson.[hm]: formalized participationStatus according to RFC2445. + Provided convenience API to set status without concrete knowledge + of string values involved. (v4.5.38) + +2004-12-16 Marcus Mueller + + * v4.5.37 + + * iCalEvent.[hm]: Added transparency 'TRANSP'. Also multiple + convenience methods provided. + + * NGiCal.xmap: added proper mapping for 'transp'. + +2004-12-14 Marcus Mueller + + * NGiCal.xcode: minor changes and updated + +2004-12-13 Marcus Mueller + + * iCalPerson.[hm]: added -cnWithoutQuotes and -rfc822Email convenience + methods to simplify client code dealing with these properties + (v4.5.36) + +2004-11-07 Marcus Mueller + + * NGiCal.xcode: provide SOPE_{MAJOR,MINOR}_VERSION to the build + +2004-11-06 Helge Hess + + * iCalRenderer.m: use SOPE version defines for iCalendar product id + (v4.5.35) + 2004-11-04 Helge Hess * use Version file for install directory location of sax mapping