]> err.no Git - sope/blob - sope-ical/NGiCal/ChangeLog
cf4d0931eb2245f14a4b6ae17aab7d3a9dcf16ad
[sope] / sope-ical / NGiCal / ChangeLog
1 2005-05-08  Helge Hess  <helge.hess@opengroupware.org>
2
3         * more work on vCard parsing (v4.5.53)
4
5         * work on vCard objects (incomplete) (v4.5.52)
6
7 2005-04-25  Helge Hess  <helge.hess@opengroupware.org>
8
9         * iCalDateHolder.m, iCalDataSource.m: fixed gcc 4.0 warnings (v4.5.51)
10
11 2005-03-23  Marcus Mueller  <znek@mulle-kybernetik.com>
12
13         * v4.5.50
14
15         * iCalRenderer.h: added missing paranthesis for iVar declarations
16
17         * iCalTrigger.m, iCalEntityObject.m, iCalToDo.m,
18           iCalRecurrenceCalculator.m, iCalDateHolder.m, iCalDataSource.m,
19           iCalPerson.m, iCalCalendar.m: numerous dealloc bugs/leaks fixed
20
21 2005-03-02  Marcus Mueller  <znek@mulle-kybernetik.com>
22
23         * iCalRecurrenceCalculator.m: bugfix for monthly and yearly recurrences
24           (v4.5.49)
25
26         * iCalRecurrenceCalculator.m: optimized exception date handling in
27           complex calculation method quite a bit. Fixed bugs in all calculation
28           methods by introducing checks on the desired range. (v4.5.48)
29
30 2005-02-28  Marcus Mueller  <znek@mulle-kybernetik.com>
31
32         * v4.5.47
33
34         * iCalRepeatableEntityObject.m:  shifted code to
35           iCalRecurrenceCalculator
36
37         * iCalRecurrenceCalculator.[hm]: new class method to calculate
38           complex recurrences. In SOGo this information is stored in quick
39           fields to reduce the complexity of lookups, hence we need to offer
40           a proper API to calculate date ranges from this information.
41           Fixed all calculations to explicitly set timeZone for all newly
42           created startDates - it seems the timeZone information is not
43           properly retained by the hour:minute:second: method from NGExtensions
44           which lead to improper DST related shifts.
45
46         * iCalDateHolder.h: exposed the API
47
48         * NSCalendarDate+ICal.[hm]: new convenience constructor for calendar
49           dates from iCal representations (uses iCalDateHolder internally)
50
51         * iCalRecurrenceRule.m: changed setUntil: to utilize new public
52           NSCalendarDate+ICal category
53
54         * NGiCal.h: added NSCalendarDate+ICal.h to the public headers
55
56         * GNUmakefile: NSCalendarDate+ICal.h is public now
57
58 2005-02-20  Helge Hess  <helge.hess@opengroupware.org>
59
60         * NGiCal.xmap: fixed a missing semicolon (did not load on MacOSX)
61           (v.4.5.46)
62
63 2005-02-17  Helge Hess  <helge.hess@skyrix.com>
64
65         * GNUmakefile.preamble: fixed linking locations for dependencies
66           (v4.5.45)
67
68 2005-02-17  Marcus Mueller  <znek@mulle-kybernetik.com>
69
70         * v4.5.44
71
72         * iCalEntityObject.[hm]: added convenience API
73
74         * iCalRepeatableEntityObject.[hm]: added convenience API
75
76         * iCalRecurrenceRule.m: bugfixes in -byDayList and
77           -iCalRepresentationForWeekDay:
78
79         * iCalRecurrenceCalculator.m: implemented 'BYDAY' calculations for
80           weekly frequency. Note that 'COUNT' is still broken for this case.
81
82         * iCalRenderer.m: updated rendering, now can render recurrence rules
83           and accompanied stuff properly.
84
85 2005-02-15  Marcus Mueller  <znek@mulle-kybernetik.com>
86
87         * v4.5.43
88
89         * iCalRecurrenceRule.[hm]: exposed some more of the API
90
91         * iCalRecurrenceCalculator.m: some bugfixes. Split the code and gave
92           iCalWeeklyRecurrenceCalculator its own calculation - there are a
93           number of foreseeable differences to daily calculation that make
94           this necessary in the near future anyways.
95
96         * v4.5.42
97
98         * iCalRepeatableEntityObject.[hm]: added ability to properly calculate
99           the recurrence ranges within a specific calendar date range, taking
100           all possible exceptions into account.
101
102         * iCalEvent.[hm]: convenience wrapper for the new method found in
103           iCalRepeatableEntityObject.
104
105 2005-02-14  Helge Hess  <helge.hess@opengroupware.org>
106
107         * v4.5.41
108
109         * GNUmakefile.preamble: added missing dependency on libNGExtensions
110           (which also adds the dependency on libDOM)
111
112         * iCalRecurrenceCalculator.h: fixed missing forward declaration in
113           header
114
115 2005-02-12  Marcus Mueller  <znek@mulle-kybernetik.com>
116
117         * v4.5.40
118
119         * iCalRecurrenceCalculator.[hm]: implemented all required (and simple)
120           calculations. Added some convenience API to query some of the more
121           obvious ranges suitable as limits for fetching/comparison. 
122
123         * iCalRepeatableEntityObject.[hm]: new method for calculating the
124           last possible recurrence start date. This can be used for fetches
125           as well.
126
127         * iCalEvent.[hm]: more convenient wrapper for the new method found in
128           iCalRepeatableEntityObject.
129
130         * NSCalendarDate+ICal.[hm]: convenience methods for calculating
131           "distances" between dates.
132
133         * tests/*: updated
134
135 2005-02-11  Marcus Mueller  <znek@mulle-kybernetik.com>
136
137         * v4.5.39
138
139         * README: updated
140
141         * iCalRepeatableEntityObject.[hm]: new base class for all other
142           repeatable entity objects. Offers a convenience API for generating
143           recurrence ranges and tests, taking all exceptions into account.
144
145         * iCalRecurrenceRule.[hm]: an iCal recurrence rule, modeled as closely
146           as possible to RFC2445. Please note that this is work in progress
147           and far from being complete, yet.
148
149         * iCalRecurrenceCalculator.[hm]: a controller implementing RFC2445
150           to properly generate recurrence ranges and accompanied functionality.
151
152         * iCalEvent.[hm], iCalToDo.[hm]: now subclasses from
153           iCalRepeatableEntityObject, thus removed code dealing with
154           recurrences
155
156         * NGiCal.h: added new headers
157
158         * NGiCal.xmap: changed recurrenceRule mappings due to model change
159
160         * tests/*: contains unit tests for stuff dealing with recurrences. See
161           accompanied README for details
162
163 2004-12-17  Marcus Mueller  <znek@mulle-kybernetik.com>
164
165         * iCalPerson.[hm]: formalized participationStatus according to RFC2445.
166           Provided convenience API to set status without concrete knowledge
167           of string values involved. (v4.5.38)
168
169 2004-12-16  Marcus Mueller  <znek@mulle-kybernetik.com>
170
171         * v4.5.37
172
173         * iCalEvent.[hm]: Added transparency 'TRANSP'. Also multiple
174           convenience methods provided.
175
176         * NGiCal.xmap: added proper mapping for 'transp'.
177
178 2004-12-14  Marcus Mueller  <znek@mulle-kybernetik.com>
179
180         * NGiCal.xcode: minor changes and updated
181
182 2004-12-13  Marcus Mueller  <znek@mulle-kybernetik.com>
183
184         * iCalPerson.[hm]: added -cnWithoutQuotes and -rfc822Email convenience
185           methods to simplify client code dealing with these properties
186           (v4.5.36)
187
188 2004-11-07  Marcus Mueller  <znek@mulle-kybernetik.com>
189
190         * NGiCal.xcode: provide SOPE_{MAJOR,MINOR}_VERSION to the build
191
192 2004-11-06  Helge Hess  <helge.hess@opengroupware.org>
193
194         * iCalRenderer.m: use SOPE version defines for iCalendar product id
195           (v4.5.35)
196
197 2004-11-04  Helge Hess  <helge.hess@skyrix.com>
198
199         * use Version file for install directory location of sax mapping
200
201 2004-10-31  Marcus Mueller  <znek@mulle-kybernetik.com>
202
203         * iCalAlarm.[hm], iCalEvent.[hm], iCalToDo.[hm],
204           NGiCal.xmap: added recurrenceRule (v4.3.34)
205
206 2004-10-20  Marcus Mueller  <znek@mulle-kybernetik.com>
207
208         * NGiCal.xcode: added iCalRenderer.[hm], bumped framework version
209
210 2004-10-20  Helge Hess  <helge.hess@opengroupware.org>
211
212         * iCalRenderer.m: fixed some issue with Cocoa Foundation (v4.3.33)
213
214         * v4.3.32
215
216         * iCalEvent.m: added -vEvent method to produce an iCalendar
217           representation of an event
218
219         * added iCalRenderer class based on the SOGo render by ZNeK
220
221 2004-10-14  Marcus Mueller  <znek@mulle-kybernetik.com>
222
223         * NGiCal.xmap: added "categories" mapping (v4.3.31)
224
225 2004-10-05  Marcus Mueller  <znek@mulle-kybernetik.com>
226
227         * iCalEntityObject.[hm]: added categories property (v4.3.30)
228
229 2004-09-22  Marcus Mueller  <znek@mulle-kybernetik.com>
230
231         * NGiCal.xcode: fixed several build parameters
232
233 2004-09-01  Marcus Mueller  <znek@mulle-kybernetik.com>
234
235         * v4.3.29
236
237         * iCalEventChanges.[hm]: new class for tracking changes between
238           two given events
239
240         * iCalEvent.[hm]: new API to generate iCalEventChanges objects.
241
242         * common.h: inline function and macro for "safe" comparison of
243           object values
244
245 2004-09-01  Helge Hess  <helge.hess@opengroupware.org>
246
247         * GNUmakefile.postamble: copy sax-model to FHS_INSTALL_ROOT + 
248           /share/sope-4.3/saxmappings/ when compiling for FHS (v4.3.28)
249
250 2004-08-29  Helge Hess  <helge.hess@opengroupware.org>
251
252         * added hack to install the project in FHS locations - the library,
253           its headers, the tools and the resources will be installed in
254           FHS_INSTALL_ROOT if specified (eg make FHS_INSTALL_ROOT=/usr/local)
255           (v4.3.27)
256
257 2004-08-26  Marcus Mueller  <znek@mulle-kybernetik.com>
258
259         * NGiCal.xcode: new Xcode project
260
261 2004-08-20  Helge Hess  <helge.hess@opengroupware.org>
262
263         * fixed for SOPE 3.3 directory layout (v4.3.26)
264
265         * moved to sope-ical
266
267         * moved to SOPE 4.3 (v4.3.25)
268
269 2004-08-14  Helge Hess  <helge.hess@opengroupware.org>
270
271         * iCalEntityObject.m: changed "sequence" attribute from NSString to
272           NSNumber (this might break some code, though some care was taken to
273           accept NSString parameters) (v4.2.24)
274
275 2004-07-14  Helge Hess  <helge.hess@opengroupware.org>
276
277         * iCalEvent.h: moved 'status' field to iCalEntityObject, because it is
278           also available in todo objects (v4.2.23)
279
280 2004-06-30  Marcus Mueller  <znek@mulle-kybernetik.com>
281
282         * iCalEntityObject.m: added -removeAllAttendees and -removeAllAlarms.
283           These are necessary in case you want to remake the contents of these
284           collections, but keep all other attributes otherwise. (v4.2.22)
285
286 2004-06-09  Helge Hess  <helge.hess@opengroupware.org>
287
288         * v4.2.21
289
290         * GNUmakefile.preamble: added prebinding
291
292         * GNUmakefile: create GNUmakefile.preamble, GNUmakefile.postamble
293
294 2004-05-05  Marcus Mueller  <znek@mulle-kybernetik.com>
295
296         * GNUmakefile: added support for building with
297           GNUSTEP_BUILD_DIR environment variable set for recent
298           gnustep-make package. (v4.2.20)
299
300 2004-01-23  Helge Hess  <helge.hess@opengroupware.org>
301
302         * iCalDataSource.m: added some sanity checks, improved to work better
303           with Mozilla generated iCal files (v4.2.19)
304
305 2003-12-22  Helge Hess  <helge.hess@skyrix.com>
306
307         * iCalDateHolder.m: small fix not to print a warning for "YYYYMMDD"
308           style dates (which are supported) (v4.2.18)
309
310 2003-12-21  Helge Hess  <helge.hess@opengroupware.org>
311
312         * v4.2.17
313
314         * iCalEvent.m: added parsing of duration values and calculation of 
315           end-dates based on that (eg required for Panther iCal.app)
316         
317         * iCalEvent.m: added support for 'status' and 'duration' fields 
318
319 Thu Nov 20 16:31:15 2003  Martin Hoerning  <martin@opengroupware.org>
320
321         * iCalDateHolder.m: added timeless date format: YYYYMMDD
322           (solves ogo bug 424) (v4.2.16)
323
324 Wed Oct 29 22:04:32 2003  Martin Hoerning  <martin@opengroupware.org>
325
326         * iCalDateHolder.m, iCalObject.[m|h]: added iCalDefaultTimeZone to 
327           create date from iCalDates without timeZone. (solves OGoo bug 257) 
328           (v4.2.15)
329
330 2003-10-12  Helge Hess  <helge@opengroupware.org>
331
332         * GNUmakefile (libNGiCal_LIBRARIES_DEPEND_UPON): link against
333           libSaxObjC on MacOSX (v4.2.14)
334
335 Fri Jul 18 17:04:55 2003  Martin Hoerning  <mh@skyrix.com>
336
337         * iCalToDo.h, iCalPerson.h, iCalEvent.h, iCalEntityObject.h: added 
338           accessor-methods to interface (v4.2.13)
339
340 2003-07-18  Helge Hess  <helge.hess@skyrix.com>
341
342         * iCalDateHolder.m: replaces and indexOfString with rangeOfString,
343           thanks to Filip Van Raemdonck for pointing that out (v4.2.12)
344
345 2003-03-21  Helge Hess  <helge.hess@skyrix.com>
346
347         * added some method prototypes
348
349 2003-03-13  Helge Hess  <helge.hess@skyrix.com>
350
351         * moved iCalEntityObject to a separate file (v4.2.11)
352
353 Mon Mar 10 18:41:10 2003  Bjoern Stierand  <bjoern@skyrix.com>
354
355         * NGiCal.xmap: added missing attendee attributes (as dictated by
356           mh on the phone)
357
358 2003-03-10  Helge Hess  <helge.hess@skyrix.com>
359
360         * iCalPerson.h: added some method prototypes
361
362 2003-02-24  Helge Hess  <helge.hess@skyrix.com>
363
364         * iCalObject.h: added some accessors (v4.2.10)
365
366 2003-02-12  Helge Hess  <helge.hess@skyrix.com>
367
368         * moved to skyrix-core (v4.2.9)
369
370 2003-01-13  Helge Hess  <helge.hess@skyrix.com>
371
372         * added some support for timezones to be able to parse Evolution
373           apt creation requests (v4.2.7)
374
375 2002-10-14  Helge Hess  <helge.hess@skyrix.com>
376
377         * added iCalDateHolder for decoding xCal date values with timezone
378           attributes to a NSCalendarDate
379
380         * iCalObject.m: ignore X- keys
381
382         * removed all the old stuff (v4.2.4)
383
384         * ICalVEvent.m: renamed -class to -eventClass since -class conflicts
385           with the NSObject method
386
387         * started XML based iCal (v4.2.3)
388
389 2002-10-10  Helge Hess  <helge.hess@skyrix.com>
390
391         * ICalParser.m: small cleanups (v4.2.2)
392
393 2002-10-04  Helge Hess  <helge.hess@skyrix.com>
394
395         * created ChangeLog, created NGiCal library into SkyCore
396
397