forked from horde/kronolith
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGES
2035 lines (1665 loc) · 75.8 KB
/
CHANGES
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
------
v5.0.0
------
[mjr] Prevent creation of corrupt recurrence end dates (Bug #14752).
[mjr] Allow to optinoally specify end date for calendar feed.
[jan] Add API to backup and restore user data.
[jan] Use colors, names, and descriptions of remote CalDAV calendars (Request
#14612).
[jan] Add headers to print views.
[mjr] Add support for tracking the ORGANIZER of an event independently of the
horde user (Bug #3965, PR: 127, Ralf Lang <lang@b1-systems.de>).
[jan] Use preferred start and end of day for color shades in dynamic view.
[jan] Automatically scroll to preferred start of day (heinz@htl-steyr.ac.at,
Request #14498).
[mjr] Changes to support EAS attachment sync support.
[jan] Remove dependency on PEAR's Date package.
[mjr] Fix display of recurring multi-day events ("Pascal Rigaux"
<pascal.rigaux@univ-paris1.fr>).
[jan] Only export the timezone rules required for an event to iCalendar
objects.
[jan] Show timezone abbreviations in event dialog too.
[jan] Show users' full names in share dialogs.
[mjr] Support for subset of features of ActiveSync 16.0.
[mjr] Disconnect exceptions from base event when series changes.
[mjr] Support file attachments to events (Request #2009).
[mjr] Add ability to prevent any iTip notifications from being sent (Request
#14157).
[mjr] Remove maps configuration, replaced by global maps configuration (Bug
#14168).
[mjr] Show created/last-modified info on event view (Request #10715).
[jan] Allow to edit system calendars in dynamic view.
[jan] Add support for monthly recurrence on last weekday (Request #1922).
[jan] Send event update notifications with HTML part.
[mjr] Resource permissions have been implemented (Request #13647).
[jan] Add refresh button to individual calendars and task lists.
[mjr] Enforce case on attendee user part, but add attendee to event if only
only the case differs (Bug #13905).
[jan] Keep original file names when PUTing events via WebDAV.
[jan] Remove configuration options for database tables.
[mjr] Honor the UID value sent from EAS clients directly in the message
structure.
[jan] Add entries for Tasks and Agenda to top menu.
[mjr] Add Kronolith_Api::move().
[jan] Return ETags with browse() API method.
[jan] Add importing of calendar data from a URL.
-------
v4.2.24
-------
[mjr] Prevent fatal error if calendar not found during DAV sync.
[jan] Fix regression in exporting single tags to iCalendar CATEGORIES (Bug
#14698).
-------
v4.2.23
-------
[jan] Officially support PHP 7.
[jan] Fix time offsets when importing CSV data with two-digit years.
[jan] Fix updating and deleting events from external CalDAV servers
(martin1@k0k.net, Bug #14021).
[jan] Fix exporting multiple tags to iCalendar CATEGORIES (Bug #14057).
-------
v4.2.22
-------
[jan] SECURITY: Fix open redirects.
[mjr] Prevent broken iCalendar files from causing fatal errors (Bug #14672).
[jan] Work around calendar servers advertising as CalDAV-capable, but ignoring
CalDAV requests (Bug #14662).
[jan] Fix displaying yesterday's event in Prior Events portal block
(admin@layertec.de, Bug #14638).
-------
v4.2.21
-------
[mjr] Don't hide the reservee's identity on the resource calendar (Bug #14609).
-------
v4.2.20
-------
[mjr] Fix saving sync preference when no default calendar exists (Bug #14585).
[mjr] Fix display of date in ITIP_CANCEL notifications of deleted instances of
recurring events (PR: 214, almarin@um.es).
-------
v4.2.19
-------
[mjr] Fix allowing ics import on when user has edit permissions on a shared
calendar (Bug #14501).
[jan] Disallow setting of creator permissions too if sharing with world is
disabled.
[jan] Split shared users by linebreaks too.
-------
v4.2.18
-------
[mjr] Fix potential memory issue with really long events (Bug #14453).
[mjr] Fix setting DELETE permissions (Bug #14447).
[mjr] More fixes and improvements related to preventing empty date values.
[jan] Fix losing shared users when adding invalid user name (Bug #14415).
[mjr] Fix displaying tag search results (Bug #14412).
[jan] Fix sender of event change notification messages.
-------
v4.2.17
-------
[jan] Update Portuguese translation.
[jan] Update Basque translation.
[mjr] Fix issue where it is possible to save an event with an empty start or
end date on some browsers.
[mjr] Require Horde_Perms::DELETE for including a calendar as sync-able.
[mjr] Fix end date when toggling an all day event off (Bug #13979).
[jan] Fix showing error message if loading of remote calendars failed.
-------
v4.2.16
-------
[mjr] Fix updating list of resource calendars in resource group dialog (Bug
#14281).
[jan] Fixed several issues with resource management.
[jan] Update Greek translation (Limperis Antonis <limperis@cti.gr>).
-------
v4.2.15
-------
[mjr] Fix typo preventing deletion of events from dynamic view (Bug #14256).
[jan] Handle gracefully if the base event of an imported recurrence exception
is no longer recurring (Bug #14249).
-------
v4.2.14
-------
[mjr] Fix issue deleting and closing event dialog during event deletion.
[mjr] Honor the SCHEDULE-AGENT attribute during CalDAV import.
-------
v4.2.13
-------
[mjr] Add missing EAS ghosted property support for all EAS versions. Prevents
potential loss of event data during synchronization.
-------
v4.2.12
-------
[mjr] Fix missing truncated event description when using ActiveSync.
[jan] Fix week number in basic view if week starts on Sundays.
[mjr] Fix issue where new event could be created with exceptions from
previously edited event.
[jan] Mark preferences only available in basic mode.
[jan] Use access rules compatible with both Apache 2.2 and 2.4.
[jan] Fix accidental deletion of events if importing recurring events without a
UID attribute (Bug #14208).
[mjr] Honor confirm_delete preference in dynamic view (Bug #14188).
[mjr] Correctly deal with cancelled meetings via ActiveSync.
[mjr] Fix visibility of alarm titles when alarm is generated via CLI (Bug
#14154).
[mjr] Fix display of embed code by adding the full url.
-------
v4.2.11
-------
[mjr] Fix issue when replacing an event via the API and the attendee list
changes (Bug #14118).
[mjr] Fix fatal test error related to Content_Tagger.
-------
v4.2.10
-------
[mjr] Fix exporting events from Horde_Perms::SHOW calendars over DAV (Bug
#14128).
[mjr] Send CANCEL iTip when attendee is removed from a meeting (Request
#14118).
[mjr] Remove object reference from Content when object is deleted (Bug #14112).
[mjr] Fix incorrect offset of freebusy times in certain cases (Bug #14084).
[mjr] Fix handling of email groups as attendees (Bug #14093).
[mjr] Fix importing text/calendar data via API (Bug #14089).
------
v4.2.9
------
[mjr] Fix enabling deletion of resources for non-admin users (Bug #14069).
[mjr] Honor workweek view as the login_view (Bug #14042).
[mjr] Fix Permission Denied error after removing a currently displayed
timeObject (Bug #14022).
[jan] Enable purge calendar checkbox if user has delete permissions.
[mjr] Honor locking the remote_cals preference.
[mjr] Fix detecting duplicate events during import via the API (Bug #14018).
------
v4.2.8
------
[jan] Don't delete existing exceptions and completions when editing recurring
events or tasks.
------
v4.2.7
------
[jan] Fix importing iCalendar events via the API (Bug #13975).
------
v4.2.6
------
[jan] Fix building recipient list for event update notifications.
[mjr] Honor background color for listTimeObjects API calendars (Bug #13951).
[jan] Always sort users in advanced sharing dialog (Bug #13938).
[mjr] Fix saving recurring event after a change in resources (Bug #13921).
[mjr] Fix creating recurrence exceptions from CalDAV clients.
[jan] Added an index to find base events of recurrence exceptions faster.
[jan] Fix finding duplicate events by UID.
[mjr] Fix updating FB data when start date changes.
[mjr] Fix detecting attendees when email address is not lowercase (Bug #13905).
[jan] Fix duplicate group names in sharing dialog.
[jan] Fix JavaScript error when saving an unselected calendar.
[mjr] Fix using custom SQL configuration parameters.
------
v4.2.5
------
[mjr] Fix generating calendar embed code (Bug #13828).
[jan] Don't wipe out whole calendars when PUTing individual events via WebDAV.
------
v4.2.4
------
[mjr] SECURITY: Don't show private event details in daily agenda emails if not
the owner (Bug #13660).
[jan] Make access to non-CalDAV remote calendars faster (Bug #12379).
[jan] Continue with further events if parsing of one remote event date fails.
[jan] Fix JS error in month view with more events today than the maximum
threshold.
[mjr] Fix fatal error when creating or modifying an entry via PUT.
------
v4.2.3
------
[jan] Export nicer display names for users and resources via WebDAV.
[jan] Export custom owner and read-only properties via WebDAV.
[jan] Fix finding modification times of shared calendars via WebDAV.
[jan] Support time label rotation in week and day views on IE 11.
[jan] Fix updating of task list view if no tasks are returned from server.
[jan] Fix ordering of sub-tasks.
[jan] Send iTip notifications even to attendees that are not required to attend
(Bug #13600).
[jan] Fix notification and alarm issues if alarm is longer than a day (Bug
#13584).
[jan] Fix closure compiler errors (Bug #13593).
[mjr] Fix checking resource availability when adding multiple resources (Bug
#13561).
------
v4.2.2
------
[mjr] Fix removing resource event when editing the bound event causes the
resource to reject the event (Bug #13466).
[mjr] Fix refreshing resource events in the UI when the host event changes
(Bug #13465).
[mjr] Fix updating the exceptionoriginaldate field when the base event changes
(Bug #13512).
[mjr] Fix moving recurring events with exceptions from one calendar to another
(Bug #13524).
[mjr] Fix honoring resource_management permission (Bug #13049).
[jan] Fix visual overlapping of certain events (Bug #13376).
[jan] Fix error editing events if using exotic date formats.
[jan] Fix JavaScript error if not showing all events in month view (Jasper
Olbrich <Jasper.Olbrich@students.uni-marburg.de>, Bug #13433).
[jan] Fix displayed CalDAV URLs for shared calendars in basic view too
(piper@hrz.uni-marburg.de, Bug #12380).
------
v4.2.1
------
[jan] Fix displayed CalDAV URLs for shared calendars (Bug #12380).
[jan] Don't show today's events that are over in portal (Bug #13368).
[mjr] Fix exporting to ics file when event contains exceptions and an explicit
timezone (Bug #13369).
[mjr] Fix importing iCalendar data that contains timezone parameters.
[mjr] Fix both importing and replacing text/calendar data via the API when
recurrence exceptions are present (Bug #13399).
[mjr] Ensure default share attribute is set when auto determining a default
share.
[mjr] Fix fatal error when calculating alarms on a recurring event that has
completed.
[mjr] Fix catching minical clicks on browsers that return element names in
uppercase (Jasper.Olbrich@students.uni-marburg.de, Bug #13370).
------
v4.2.0
------
[jan] Fix selecting days in the sidebar mini calendar (Bug #13327).
[mjr] Issue a cancellation iTip when an event's status changes to cancelled
(Bug #13321).
[jan] Fix loading events for intial view in smartphone mode.
---------
v4.2.0RC2
---------
[jan] Fix issues with event URL field not updating (Carlos Timóteo
<ctimoteo@sapo.pt>).
---------
v4.2.0RC1
---------
[jan] Fix error when deleting unselected calendars.
[jan] Improve DTEND compatibility with other programs using iCalendar.
[mjr] Fix sending iTip invitations when Save As New is used (Bug #13239).
[jan] Fix free/busy display with 24-hours-busy days.
[jan] Fix navigating free/busy dates.
[jan] Fix hover style in year view (Bug #13057).
[jan] Update Polish translation (Maciej Uhlig <maciej.uhlig@us.edu.pl>).
-----------
v4.2.0beta2
-----------
[jan] Add synchronization of attendees via CalDAV (Request #13027).
[mjr] Fix moving an event from one calendar to another while resources are
disabled (Bug #13201, Carlos Timóteo <ctimoteo@sapo.pt>)
-----------
v4.2.0beta1
-----------
[mjr] Do not include resources with no email address when synching to EAS
clients.
------------
v4.2.0alpha2
------------
[jan] Fix dependency on Nag (Bug #13166).
[jan] Use the event's or calendar's owner identity when sending notifications
(Bug #13158).
------------
v4.2.0alpha1
------------
[mjr] Gracefully handle import errors in dynamic interface (Bug #11127).
[mjr] Show reservee of a resource in resource's event description (Request
#13037).
[mjr] Add resource_management permission (Request #13049).
[jan] Allow to synchronize shared calendars via CalDAV (Request #12380).
[jan] Add script to import events from Open-Xchange.
[mjr] Fix various issues with alarms for recurring events.
[jan] Add calendar legend to print output.
[jan] Make SQL backend compatible with Oracle.
[mjr] Allow for exporting of resource calendars (Request #12372).
[mjr] Make event url property a true hyperlink in dynamic view (Request
#12920).
[jan] Support task assignees.
[jan] Support parent tasks.
[jan] Indent sub tasks.
[jan] Make shares table compatible with Oracle.
[mjr] Improve display of Free/Busy information and add pagination (Requests
#12899, #12676).
[mjr] Add ability to export event to a timeslice (Request #11307).
[mjr] Add API support for supporting multiple calendar sync via ActiveSync.
[jan] Improve sort order of events in month view (Request #11155).
------
v4.1.6
------
[jan] Fix history not always returning the last modification time of an event
(Bug #13113).
[jan] Support timezone aliases when importing events (Bug #13100).
[mjr] Honor the no_sharing configuration option in dynamic view (Bug #13002).
[mjr] Fix issue that could remove all events from shared calendars if a user
with Horde_Perms::EDIT on that calendar is removed via the removeUserData
API (Bug #12524).
[jan] Fix TRIGGER generation if alarm value is negative (Bug #13064).
[jan] Update Korean translation (Deokgon Kim <dgkim@dgkim.net>).
------
v4.1.5
------
[mjr] Fix triggering alarms for cancelled events (Bug #12928).
[jan] Update Danish translation (Erling Preben Hansen <erling@eph.dk>).
[mjr] Fix exporting recurring events with no recur_end value to CSV.
[mjr] No longer include AIRSYNCBASEBODY when exporting for ActiveSync if there
is no description.
[mjr] Properly set event status to Cancelled on Resource calendars when the
original event status is set to Cancelled.
[mjr] Fix updating free/busy display when updating event times (Bug #12676).
[mjr] Fix issue that could cause calendar sync to break when creating an
exception on EAS versions < 14.0
[jan] Fix rounding of start time when dragging events (Bug #11904).
[mjr] Fix fatal error when searching if Holiday driver is disabled (Bug
#12870).
[jan] Ignore iCalendar alarms without action, and use first, not last alarm
(Bug #12865).
[mjr] Fix incorrect case comparison when synchronizing tags with Kolab (Bug
#12770).
[mjr] Honor recurrence-id range values when deleting recurring events (Bug
#12746).
[mjr] Fix deleting and sending iTip notifications for recurring events (Bug
#12746).
[jan] Fix calculation of work week start if on a weekend.
[jan] Fix deleting calendars with exceptions to recurring events.
[jan] Fix fatal error if recurrence exceptions have timezones set (Bug #12801).
------
v4.1.4
------
[jan] SECURITY: Protect against CSRF attacks on share permissions form (Bug
#12804, CVE-2013-6365).
[jan] SECURITY: Fix XSS vulnerabilities when deleting calendars and resources.
[jan] Fix edge case that allowed to enter start time after end time (Bug
#12752).
[mjr] Expire fb cache when fb_cals preference changes (Bug #12714).
[jan] Fix setting DTEND in iCalendar data if event has a timezone (Bug #12693).
[mjr] Fix importing new ActiveSync events created on the client with
recurrence.
[mjr] Fix some issues with recurring event exceptions due to improper timezone
handling (Bug #12630).
------
v4.1.3
------
[jan] Fix inconsistent handling of all-day events (Bug #12627).
[mjr] Fix infinite loop for Kolab driver when event has recurrence (Bug #12160,
Thomas Jarosch <thomas.jarosch@intra2net.com>).
[jan] Fix fatal errors if DAV support is disabled (Bug #12481).
[jan] Fix synchronization of shared events in Kolab driver (Thomas Jarosch
<thomas.jarosch@intra2net.com>, Bug #12585).
[jan] Link to CalDAV help text from calendar dialog.
[mjr] Fix requesting changes by modification sequence (Bug #12508, Thomas
Jarosch <thomas.jarosch@intra2net.com>).
[mjr] Fix subscribing to internal calendars via subscription URL (Bug #12495).
------
v4.1.2
------
[jan] Display CalDAV URL of system calendars and tasklists (Bug #12342).
[jan] Fix system calendar listing via WebDAV.
[rla] Add system calendar support for Kronolith CalDAV access (Request #12342).
[mjr] Fix automatically adding organizer as attendee in dynamic view.
[mjr] Prompt for sending cancellation iTip when deleting an event (Bug #12415).
[rla] Properly display system-owned calendars when browsing DAV (Bug #12325).
------
v4.1.1
------
[mjr] Fix setting RECURRENCE-ID field when exporting ics file (Bug #12368).
[jan] Fix propagating calendar URLs if import/export is turned off.
[mjr] Add API methods for using history modification sequences.
------
v4.1.0
------
[jan] Add help text for CalDAV usage.
---------
v4.1.0RC1
---------
[jan] Fix editing of events per CalDAV if client sends LAST-MODIFIED attribute
(Bug #12244).
-----------
v4.1.0beta2
-----------
[jan] Fix incorrect dependencies.
-----------
v4.1.0beta1
-----------
[jan] Add CalDAV server support (Request #4267).
[jan] Use Horde_Dav for accessing remote calendars.
[mjr] Expose Kronolith_FreeBusy::get() via the external API.
------
v4.0.5
------
[jan] Don't throw error on importing events with unknown timezones (Bug
#11688).
[jan] Don't send notifications for all recurrence exceptions when deleting
events.
[jan] Only send update notifications for local calendars.
[jan] Re-enable users in drop-down list after revoking permissions (Bug
#12000).
[jan] Fix exporting events of a certain time span (piper@hrz.uni-marburg.de,
Bug #12074).
[mjr] Always populate the meetingstatus property in ActiveSync requests to
avoid issues with some versions of iOS (Bug #12056).
[mjr] Fix deletion of resource events after deleting resource (Bug #12034).
------
v4.0.4
------
[jan] Update alarms, resources, and tags when deleting Kolab events (Bug
#11988).
[jan] Update French translation (Paul De Vlieger
<paul.de_vlieger@moniut.univ-bpclermont.fr>).
[jan] Fix some issues with workweek views if first day of week is Sunday (Bug
#11973).
[jan] Fix adding holiday calendars if not using English locale (Bug #11961).
[jan] More robust date parsing during event importing (Bug #11916).
[jan] Always export year numbers with four digits to CSV (Request #11917).
[jan] Fix JavaScript error if Nag is not installed.
------
v4.0.3
------
[jan] Fix setting default start time in new event dialog of basic view (Bug
#11861).
[jan] Fix saving alarm methods to Kolab backend (Thomas Jarosch
<thomas.jarosch@intra2net.com>, Bug #11880).
[jan] Update Basque translation (Ibon Igartua <ibon.igartua@ehu.es>).
[jan] Fix moving events between calendars (Bug #11830).
[jan] Fix fatal error on recurring events with custom timezone (Bug #11587).
[jan] Fix double owner name on shared calendars.
[jan] Use default Kolab folder for default calendar preference.
[jan] Mark Kolab folder as default when changing default calendar preference.
[jan] Defer navigation in dynamic view until environment has been initialized.
[jan] Fix receiving resource calendars in dynamic view (Bug #11776).
------
v4.0.2
------
[jan] Use Kolab modification and creation dates in the UI (Bug #11591).
[jan] Try to translate holiday drivers (Request #11755).
[jan] Fix timezone when reading events from Kolab (Bug #11695).
[jan] Use encoded UIDs as IDs in Kolab driver.
[jan] Fix saving of events if no calendar has been loaded yet.
[mjr] Fix importing events from ActiveSync with empty descriptions in EAS
version 2.5
------
v4.0.1
------
[jan] Fix migration of exceptionoriginaldate field (Bug #11654).
[jan] Fix generating calendar names when exporting non-internal calendars to
iCalendar.
[jan] Fix authentication to remote calendars (Bug #11643).
[jan] Fix incorrect nesting of VTIMEZONE components when exporting to iCalendar
(Bug #11636).
[jan] Fix fatal error when moving non-recurring events with resources (Bug
#11629).
------
v4.0.0
------
[jan] Update Polish translation (Krzysztof Kozera <krzysztof113@o2.pl>).
[jan] Update Dutch translation (Arjen de Korte <arjen+horde@de-korte.org>).
---------
v4.0.0RC1
---------
[jan] Show completed future tasks in complete category, not in future category
(Bug #11562).
[jan] Fix exporting of recurring events with exceptions from Kolab backends.
[jan] Fix export links for calendars (Bug #11576).
[jan] Fix broken Apple iCal behavior with exception dates (Evert Pot
<evert@rooftopsolutions.nl>).
[jan] Use more compatible message format for iTip notifications (Bug #9854).
[jan] Fix free/busy retrieval on Kolab.
-----------
v4.0.0beta2
-----------
[jan] Synchronize tags with Kolab categories.
[mjr] Improvements to resource calendar handling.
[gwr] Mark the initial default share as such with the Kolab backend.
[gwr] Always mark the initial share as default calendar.
[jan] Fix attendees button in traditional view.
[jan] Fix sending alarm emails.
-----------
v4.0.0beta1
-----------
[jan] Add quick task adding to dynamic view.
[rla] Fix sender of appointment notification (Bug #11198)
[mjr] Fix tagging in traditional interface.
[rla] Make system shares browseable in WebDAV (Request #10998).
[jan] Make calendar lists collapsible (Request #10865).
[jan] Delay calendar list loading to speed up initial display.
[mjr] Implement resource scheduling in dynamic view (Request #9774).
[mjr] Fix issue that could cause incorrect freebusy data to be displayed in
certain circumstances.
[mjr] Prompt to send updates when modifying an event with attendees (Request
#10724).
[mjr] Add heatmap to year view (Request #10658).
[mjr] Implement proper editing and deleting of recurrence series and exceptions
in ajax view (Request #9926).
[jan] Remove print buttons.
[jan] Add work week view to dynamic interface (rsalmon@mbpgroup.com, Request
#10519).
[jan] Support importing of iCalendar events with non-local timezones (Request
#7156).
[jan] Include timezone information when exporting events to iCalendar (Request
#7156).
[jan] Allow to set individual timezones for each event (Request #10727).
-------
v3.0.18
-------
[mms] Fix permissions checking in the 'path_delete' API call.
[mms] SECURITY: Fix XSS vulnerabilities in the portal blocks.
[mjr] Fix setting permissions in dynamic mode while $conf[share][world] is
false (Bug #11359).
[mjr] Fix issue causing broken alarm values from being imported from certain
ics files.
[rla] Fix sender of appointment notification (Bug #11198).
[mjr] Use SSL for map providers if current connection is SSL (Request #11193).
[jan] Don't show location of private events (Bug #11235).
[jan] Fix exporting multi-all-day events to iCalendar.
[jan] Update Turkish translation (İstanbul Technical University).
[jan] Update Swedish translation (Jakob Alvermark
<jakob.alvermark@bsdlabs.com>).
-------
v3.0.17
-------
[jan] SECURITY: Fix XSS vulnerabilities in tasks view and search view (Bug
#11189).
[jan] Update Italian translation (Massimo Malabotta <mmalabotta@units.it>).
[jan] Improve print styles.
[jan] Catch if external client doesn't send LAST-MODIFIED attributes (Bug
#11130).
[jan] Don't stop agenda script if there is an error with a single user (Bug
#11129).
[jan] Update Hungarian translation (Zoltán Németh <nemeth.zoltan@etit.hu>).
[jan] Show round corners only on the start and end of multi-day events
(Request #11067).
-------
v3.0.16
-------
[jan] Use preferred date format in week and agenda views (Bug #11089).
[jan] Fix fatal error if no external calendars are available (Bug #11079).
[jan] Fix positioning of events on DST changing dates (Bug #11070).
[mjr] Fix bug that caused time shift of all day events when imported from
ActiveSync devices for users in certain timezones (Bug #10991).
[mjr] Correctly deal with deleted calendars in sync clients (Bug #10969).
-------
v3.0.15
-------
[jan] Search complete names and addresses when auto-completing attendees.
[jan] Fix syntax error in migration script (Bug #10902).
-------
v3.0.14
-------
[mjr] Fix bug that could cause incorrect event exceptions to be created when
drag and dropping events in month view.
[jan] Fix page titles not always updating correctly.
[jan] Display event time in dynamic view if requested (Request #9866).
[jan] Only show end time if different from start time.
[jan] Fix day sorting in agenda view.
[jan] Sort user and group names in permission screen (Request #10896).
-------
v3.0.13
-------
[jan] Hide disabled calendar sections (Bug #9815).
[gwr] Fixed recurrence handling with the Kolab backend.
[gwr] Fixed naming of the default calendar for the Kolab backend.
[gwr] Fixed deleting events with the Kolab backend.
[gwr] Fixed migrations for SQLite as database backend.
[mjr] Fix keyboard navigation of time entry fields in dynamic view (Bug
#10799).
[mjr] Fix parsing display_cal variables for internal calendar links on various
blocks and embedded imples (Bug #10767).
[mjr] Fix adding events directly to a resource's calendar (Bug #10827).
[mjr] Fix regression introduced in 3.0.12 that broke checking a Resource's
availability in certain cases (Bug #10806).
[jan] Don't fail on empty CalDAV calendars (christof@buergi.lugs.ch, Bug
#10739).
[jan] Check permissions when building application drop down
(sberthelot@emisfr.com, Bug #10811).
[gwr] Fix saving Kolab events.
[jan] Update Japanese translation (Hiromi Kimura <hiromi@tac.tsukuba.ac.jp>).
-------
v3.0.12
-------
[jan] Show status of events in agenda messages (Request #10517).
[mjr] Fix selecting custom time from time selection drop down (Bug #10737).
[jan] Always use fresh Horde_Http_Client instances for remote calendars (Bug
#10740).
[jan] Add confirmation screen when deleting events in dynamic view (Request
#10725).
[jan] Fix holidays disappearing from month view if deleting another event.
[jan] Fix resetting attendee response status when saving events in dynamic view
(Bug #10620).
[jan] Support CalDAV servers that don't use DAV: as the default namespace
(christof@buergi.lugs.ch, Bug #10716).
[jan] Allow to view and create copies of holiday events (Bug #10650).
[jan] Don't show import/export tabs in dynamic view if disabled (Bug #10705).
[jan] Don't show option to share with everyone in basic permissions if disabled
(piper@hrz.uni-marburg.de, Bug #10706).
[mjr] Only set ORGANIZER field if the event is a group meeting (Bug #10697).
-------
v3.0.11
-------
[mjr] Fix alarms for recurring events (Bug #10678).
[mjr] Allow filtering listTagInfo results by user.
[jan] Fix uncompleting tasks in dynamic view (Carlos Timóteo, Bug #10653).
[cjh/jan] Improve design.
[mjr] Fix displaying resources when no attendees are present (Bug #10507).
-------
v3.0.10
-------
[jan] Fix opening events from agenda view.
[mjr] The current default calendar is always included in the sync_calendars
preference.
[mjr] Ensure exception gets start and end times when created from month view
(Bug #10496)
[jan] Update group permission when changing group down list in basic
permissions (Bug #10482).
[jan] Fix race condition when editing group permission in basic permission
screen (Bug #10482).
[mjr] Fix removeUserData API (Bug #10241).
[jan] Fix deleting events with a WebDAV client (Bug #10478).
------
v3.0.9
------
[jan] Fix fatal error while searching if hitting certain recurring events.
[jan] Fix exporting events with snoozed alarms (Bug #10438).
------
v3.0.8
------
[jan] Fix deleting resources (Bug #10427)
[jan] Support snoozing alarms with Sundbird/Lightning (Request #7470).
[jan] Import VALARM components from iCalendar 2.0 data (Request #6665).
[jan] Fix exporting all-day events to Funambol clients (Thomas Ilsche
<git@zulan.net>, Bug #10349).
[jan] Fix creating events from dynamic view on Windows (Bug #9916).
[mjr] Fix displaying of freebusy data in dynamic view (adominguez@cne.gob.ve,
Bug #10347).
------
v3.0.7
------
[mjr] Fix updating attendees (Bug #10411).
[jan] Fix error if Nag is not installed (Bug #10406).
------
v3.0.6
------
[jan] Display event time in dynamic agenda/search view.
[jan] Don't load all shares with requested permissions from the backend if
$conf['share']['hidden'] is enabled.
[jan] Improve exporting all-day events to Funambol clients.
[mjr] Fix removing an exception from a recurrence series (Bug # 10365).
[jan] Close session while listing events to speed up parallel loading from
different calendars.
[jan] Share list of displayed task lists with Nag (requires Nag 3.0.3).
[jan] Don't show import/export link in preferences if using the dynamic view.
[mjr] Force ActiveSync device reset after sync_calendars pref is changed
(Request #10342).
[jan] Try to work with remote servers even if they don't support a recent
WebDAV protocol version.
[jan] Support updating attendees from vCalendar 1.0 iTip responses.
[jan] Fix sending invitations to attendees from traditional view.
[jan] Fix organizer attribute when exporting to vCalendar 1.0.
[mjr] Fix issue that prevented synching when no sync_calendar pref was set
(Bug #10329).
------
v3.0.5
------
[jan] Update task due date in interface after dragging a task (Bug #10001).
[jan] Correctly sort events in portal block or widget if only displaying a
single calendar (Bug #10099).
[mjr] Allow syncing of multiple owner-owned calendars (Request #8734).
[jan] Don't show calendar drop down in event form without delete permissions
(Bug #10201).
[jan] Don't change event creator when saving events.
[jan] Fetch events immediately after saving remote calendar.
------
v3.0.4
------
[jan] Fix holidays being off with certain system timezones (Bug #9989).
[jan] Only highlight days in the mini calendar that are currently displayed
(Bug #10048).
[jan] Fix advanced search with empty search criteria (Bug #10038).
------
v3.0.3
------
[jan] Add header for timeobjects calendars.
[jan] Fix date picker in advanced search form (Bug #10039).
[mjr] Remove visible exceptions when deleting recurring events (Bug #10013).
[mjr] Fix issue causing listTimeObject calendars to not appear (Bug #10012).
------
v3.0.2
------
[jan] Don't show event edit links if user doesn't have edit permissions on any
calendar.
[jan] Fix parsing of recurrence end date in dynamic view (Bug #10025).
[jan] Fix displaying of new tasks in new task lists.
[jan] Fix displaying colors of task lists.
[jan] Delete tasks from tasks view when deleting tasks lists.
[jan] Don't export multi-day events as multiple events to iCalendar data (Bug
#10007).
[jan] Fix dragging tasks in the dynamic view.
------
v3.0.1
------
[mjr] Fix calendar embedding.
[jan] Don't store all task lists in the session.
[jan] Fix new task lists not showing up until next login (Bug #9814).
[mjr] Fix broken event alarm links in sidebar (Bug #9897).
[mjr] Fix drag/drop editing of recurring events (Bug #9880).
[jan] Fix undefined function on Windows (Bug #9916).
[jan] Support adding and editing of CalDAV events in dynamic view (Bug #9865).
[mjr] Allow migrations to complete despite of missing shares.
[jan] Remove debug code in Ajax library (Bug #9818).
------
v3.0.0
------
First stable release for Horde 4.
[jan] Fix application-specific permission checks (Bug #9786).
[jan] Fix fatal error when using the max_events permission (Bug #9784).
[mjr] Datatree share to SQL upgrade script refactored for Horde 4.
[mjr] Add migration for mysql specific geospatial fields (Bug #9758).
[jan] Set default alarm in dynamic view (Bug #9752).
[jan] Move all executable scripts to bin/ and prefix with kronolith-.
---------
v3.0.0RC2
---------
Second release candidate for Horde 4.
[jan] Fix javascript error when viewing events with desktop notifications (Bug
#9727).
---------
v3.0.0RC1
---------
First release candidate for Horde 4.
[jan] Update installation and upgrade instructions.
[jan] Fix custom event alarm settings in traditional view (Bug #9154).
-----------
v3.0.0beta1
-----------
[jan] Only load external events in IFRAME if configured.
[jan] Fix retrieving event UIDs without date limit (Simon Bühler, Bug #9651).
[jan] Fix saving display status of other applications' calendars (Bug #9636).
[mjr] Add migration for converting existing event categories to tags.
------------
v3.0.0alpha1
------------
First alpha release for Horde 4.
[jan] Add configuration whether to load other applications in an IFRAME.
[jan] Provide default configuration files instead of .dist versions.
[jan] Send a subscription link with the notification about shared calendars if