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