Subversion-Projekte lars-tiefland.webanos.zeldi.de

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
4 lars 1
 
2
v3.10.0 (2019-01-10)
3
--------------------
4
 
5
POTENTIALLY BREAKING CHANGE:
6
The jquery and moment packages have been moved to peerDependencies. If you are using
7
NPM to install fullcalendar, you'll need to explicitly add jquery and moment as
8
dependencies of your project. NPM will not install them automatically. (#4136, #4233)
9
 
10
New Features:
11
- events from a Google Calendar event source will receive extended props (#4123)
12
- export more classes and util functions (#4124)
13
- new locales: zh-hk (#4266), be (#4274)
14
 
15
Bugfixes:
16
- not accepting dayClicks/selects because of overflow-x:hidden on html/body (#3615)
17
- event end time not displayed when duration is one slot, in agenda view (#3049)
18
- switching views before event fetch resolves, JS error (#3689)
19
- single-day allDay event not showing when time is specified (#3854)
20
- prev button doesn't work when previous days are hidden by hiddenDays and dayCount
21
  is greater than dateIncrement (#4202)
22
- calendar locale not used in all moments objects (#4174)
23
- background event background color does not completely fill cells in Chrome (#4145)
24
- provide a delta for eventResize when resizing from start (#4135)
25
- IE11 memory leak from not removing handler correctly (#4311)
26
- make touchstart handlers passive (#4087)
27
- fixed typescript definition for: eventAllow (#4243), selectAllow (#4319)
28
- fixed locales: de (#4197, #4371), hu (#4203), tr (#4312), ja (#4329)
29
 
30
 
31
v3.9.0 (2018-03-04)
32
-------------------
33
 
34
- Bootstrap 4 support (#4032, #4065, thx @GeekJosh)
35
- add OptionsInput to the fullcalendar.d.ts exports (#4040, #4006)
36
- columnHeaderFormat/columnHeaderHtml/columnHeaderText in .d.ts file (#4061, #4085)
37
- list-view auto-height not working (#3346, #4071, thx @WhatTheBuild)
38
- bump momentjs minimum version to 2.20.1, for locale fixes (#4014)
39
- swedish week header translation fix (#4082)
40
- dutch year translation (#4069)
41
 
42
 
43
v3.8.2 (2018-01-30)
44
-------------------
45
 
46
Bugfixes:
47
- Fix TypeScript definitions file with strictNullChecks (#4035)
48
 
49
 
50
v3.8.1 (2018-01-28)
51
-------------------
52
 
53
Bugfixes:
54
- TypeScript definition file not compatible with noImplicitAny (#4017)
55
- ES6 classes are not supported for grid class (#3437)
56
- day numbers in month view should be localized (#3339)
57
- select helper is resizable, causes js error (#3764)
58
- selecting over existing select helper causes js error (#4031)
59
- eventOrder doesn't work on custom fields (#3950)
60
- aria label on button icons (#4023)
61
- dynamic option changes to select/overlap/allow doesn't cause rerender
62
 
63
Locales:
64
- added Georgian (#3994)
65
- added Bosnian (#4029)
66
 
67
 
68
v3.8.0 (2017-12-18)
69
-------------------
70
 
71
- new settings for month/agenda/basic views (#3078):
72
  - `columnHeaderFormat` (renamed from `columnFormat`)
73
  - `columnHeaderText`
74
  - `columnHeaderHtml`
75
- TypeScript definition file (fullcalendar.d.ts) included in npm package (#3889)
76
- codebase using SASS, though not taking advantage of it yet (#3463)
77
- codebase fully ported to TypeScript / Webpack
78
- Afrikaans locale fix (#3862)
79
 
80
 
81
v3.7.0 (2017-11-13)
82
-------------------
83
 
84
Bugfixes:
85
- `render` method does not re-adjust calendar dimension (#3893)
86
- when custom view navigates completely into hidden weekends, JS error ([scheduler-375])
87
 
88
Other:
89
- in themes.html demo, fixed broken Bootswatch themes (#3917)
90
- moved JavaScript codebase over to TypeScript
91
  (same external API; embedded typedefs coming soon)
92
 
93
[scheduler-375]: https://github.com/fullcalendar/fullcalendar-scheduler/issues/375
94
 
95
 
96
v3.6.2 (2017-10-23)
97
-------------------
98
 
99
Bugfixes:
100
- Google Calendar event sources not calling `loading` callback (#3884)
101
- `eventDataTransform` w/ eventConstraint shouldn't be called during event resizing (#3859)
102
- `navLinks` would go to the previously navigated date (#3869)
103
- `nowIndicator` arrow would repeatedly render (#3872)
104
- fc-content-skeleton DOM element would repeatedly render on navigation in agenda view
105
 
106
 
107
v3.6.1 (2017-10-11)
108
-------------------
109
 
110
Bugfixes:
111
- JSON feed event sources always requesting current page (#3865)
112
- multi-day events appearing multiple times in more+ popover (#3856)
113
 
114
 
115
v3.6.0 (2017-10-10)
116
-------------------
117
 
118
Features:
119
- `agendaEventMinHeight` for guaranteeing height (#961, #3788) thx @Stafie
120
- `columnHeader` can be set to `false` to hide headings (#3438, #3787) thx @caseyjhol
121
- export all View classes (#2851, #3831)
122
- `updateEvent`, update complex attributes (#2864)
123
- Albanian locale (#3847) thx @alensaqe
124
 
125
Bugfixes:
126
- objects used as non-standard Event properties ignored by `updateEvent` (#3839)
127
- listDay error if event goes over period (#3843)
128
- `validDays` with `hiddenDays`, js error when no days active (#3846)
129
- json feed Event Source object no longer has `url` property (#3845)
130
- `updateEvent`, allDay to timed, when no end, wrong end date (#3144)
131
- `removeEvents` by `_id` stopped working (#3828)
132
- correct `this` context in FuncEventSource (#3848) thx @declspec
133
- js event not received in unselect callback when selecting another cell (#3832)
134
 
135
Incompatibilities:
136
- The `viewRender` callback might now be fired AFTER events have been rendered
137
  to the DOM. However, the eventRender/eventAfterRender/eventAfterAllRender callbacks
138
  will always be fired after `viewRender`, just as before.
139
- The internal `Grid` class (accessed via `$.fullCalendar.Grid`) has been removed.
140
  For monkeypatching, use DayGrid/TimeGrid directly.
141
 
142
 
143
v3.5.1 (2017-09-06)
144
-------------------
145
 
146
- fixed loading trigger not firing (#3810)
147
- fixed overaggressively fetching events, on option changes (#3820)
148
- fixed event object `date` property being discarded (tho still parsed) (#3819)
149
- fixed event object `_id` property being discarded (#3811)
150
 
151
 
152
v3.5.0 (2017-08-30)
153
-------------------
154
 
155
Features:
156
- Bootstrap 3 theme support (#2334, #3566)
157
	- via `themeSystem: 'bootstrap3'` (the `theme` option is deprecated)
158
	- new `bootstrapGlyphicons` option
159
	- jQuery UI "Cupertino" theme no longer included in zip archive
160
	- improved theme switcher on demo page (#1436)
161
	(big thanks to @joankaradimov)
162
- 25% event rendering performance improvement across the board (#2524)
163
- console message for unknown method/calendar (#3253)
164
- Serbian cyrilic/latin (#3656)
165
- available via Packagist (#2999, #3617)
166
 
167
Bugfixes:
168
- slot time label invisible when minTime starts out of alignment (#2786)
169
- bug with inverse-background event rendering when out of range (#3652)
170
- wrongly disabled prev/next when current date outside of validRange (#3686, #3651)
171
- updateEvent, error when changing allDay from false to true (#3518)
172
- updateEvent doesn't support ID changes (#2928)
173
- Promise then method doesn't forward result (#3744)
174
- Korean typo (#3693)
175
- fixed switching from any view to listview, eventAfterRender isn't called (#3751)
176
 
177
Incompatibilities:
178
- Event Objects obtained from clientEvents or various callbacks are no longer
179
  references to internally used objects. Rather, they are static object copies.
180
- `clientEvents` method no longer returns events in same order as received.
181
  Do not depend on order.
182
 
183
 
184
v3.4.0 (2017-04-27)
185
-------------------
186
 
187
- composer.json for Composer (PHP package manager) (#3617)
188
- fix toISOString for locales with non-trivial postformatting (#3619)
189
- fix for nested inverse-background events (#3609)
190
- Estonian locale (#3600)
191
- fixed Latvian localization (#3525)
192
- internal refactor of async systems
193
 
194
 
195
v3.3.1 (2017-04-01)
196
-------------------
197
 
198
Bugfixes:
199
- stale calendar title when navigate away from then back to the a view (#3604)
200
- js error when gotoDate immediately after calendar initialization (#3598)
201
- agenda view scrollbars causes misalignment in jquery 3.2.1 (#3612)
202
- navigation bug when trying to navigate to a day of another week (#3610)
203
- dateIncrement not working when duration and dateIncrement have different units
204
 
205
 
206
v3.3.0 (2017-03-23)
207
-------------------
208
 
209
Features:
210
- `visibleRange` - complete control over view's date range (#2847, #3105, #3245)
211
- `validRange` - restrict date range (#429)
212
- `changeView` - pass in a date or visibleRange as second param (#3366)
213
- `dateIncrement` - customize prev/next jump (#2710)
214
- `dateAlignment` - custom view alignment, like start-of-week (#3113)
215
- `dayCount` - force a fixed number-of-days, even with hiddenDays (#2753)
216
- `showNonCurrentDates` - option to hide day cells for prev/next months (#437)
217
- can define a defaultView with a duration/visibleRange/dayCount with needing
218
  to create a custom view in the `views` object. Known as a "Generic View".
219
 
220
Behavior Changes:
221
- when custom view is specified with duration `{days:7}`,
222
  it will no longer align with the start of the week. (#2847)
223
- when `gotoDate` is called on a custom view with a duration of multiple days,
224
  the view will always shift to begin with the given date. (#3515)
225
 
226
Bugfixes:
227
- event rendering when excessive `minTime`/`maxTime` (#2530)
228
- event dragging not shown when excessive `minTime`/`maxTime` (#3055)
229
- excessive `minTime`/`maxTime` not reflected in event fetching (#3514)
230
	- when minTime is negative, or maxTime beyond 24 hours, when event data is requested
231
	  via a function or a feed, the given data params will have time parts.
232
- external event dragging via touchpunch broken (#3544)
233
- can't make an immediate new selection after existing selection, with mouse.
234
  introduced in v3.2.0 (#3558)
235
 
236
 
237
v3.2.0 (2017-02-14)
238
-------------------
239
 
240
Features:
241
- `selectMinDistance`, threshold before a mouse selection begins (#2428)
242
 
243
Bugfixes:
244
- iOS 10, unwanted scrolling while dragging events/selection (#3403)
245
- dayClick triggered when swiping on touch devices (#3332)
246
- dayClick not functioning on Firefix mobile (#3450)
247
- title computed incorrectly for views with no weekends (#2884)
248
- unwanted scrollbars in month-view when non-integer width (#3453, #3444)
249
- incorrect date formatting for locales with non-standlone month/day names (#3478)
250
- date formatting, incorrect omission of trailing period for certain locales (#2504, #3486)
251
- formatRange should collapse same week numbers (#3467)
252
- Taiwanese locale updated (#3426)
253
- Finnish noEventsMessage updated (#3476)
254
- Croatian (hr) buttonText is blank (#3270)
255
- JSON feed PHP example, date range math bug (#3485)
256
 
257
 
258
v3.1.0 (2016-12-05)
259
-------------------
260
 
261
- experimental support for implicitly batched ("debounced") event rendering (#2938)
262
	- `eventRenderWait` (off by default)
263
- new `footer` option, similar to header toolbar (#654, #3299)
264
- event rendering batch methods (#3351):
265
	- `renderEvents`
266
	- `updateEvents`
267
- more granular touch settings (#3377):
268
	- `eventLongPressDelay`
269
	- `selectLongPressDelay`
270
- eventDestroy not called when removing the popover (#3416, #3419)
271
- print stylesheet and gcal extension now offered as minified (#3415)
272
- fc-today in agenda header cells (#3361, #3365)
273
- height-related options in tandem with other options (#3327, #3384)
274
- Kazakh locale (#3394)
275
- Afrikaans locale (#3390)
276
- internal refactor related to timing of rendering and firing handlers.
277
  calls to rerender the current date-range and events from within handlers
278
  might not execute immediately. instead, will execute after handler finishes.
279
 
280
 
281
v3.0.1 (2016-09-26)
282
-------------------
283
 
284
Bugfixes:
285
- list view rendering event times incorrectly (#3334)
286
- list view rendering events/days out of order (#3347)
287
- events with no title rendering as "undefined"
288
- add .fc scope to table print styles (#3343)
289
- "display no events" text fix for German (#3354)
290
 
291
 
292
v3.0.0 (2016-09-04)
293
-------------------
294
 
295
Features:
296
- List View (#560)
297
	- new views: `listDay`, `listWeek`, `listMonth`, `listYear`, and simply `list`
298
	- `listDayFormat`
299
	- `listDayAltFormat`
300
	- `noEventsMessage`
301
- Clickable day/week numbers for easier navigation (#424)
302
	- `navLinks`
303
	- `navLinkDayClick`
304
	- `navLinkWeekClick`
305
- Programmatically allow/disallow user interactions:
306
	- `eventAllow` (#2740)
307
	- `selectAllow` (#2511)
308
- Option to display week numbers in cells (#3024)
309
	- `weekNumbersWithinDays` (set to `true` to activate)
310
- When week calc is ISO, default first day-of-week to Monday (#3255)
311
- Macedonian locale (#2739)
312
- Malay locale
313
 
314
Breaking Changes:
315
- IE8 support dropped
316
- jQuery: minimum support raised to v2.0.0
317
- MomentJS: minimum support raised to v2.9.0
318
- `lang` option renamed to `locale`
319
- dist files have been renamed to be more consistent with MomentJS:
320
	- `lang/` -> `locale/`
321
	- `lang-all.js` -> `locale-all.js`
322
- behavior of moment methods no longer affected by ambiguousness:
323
	- `isSame`
324
	- `isBefore`
325
	- `isAfter`
326
- View-Option-Hashes no longer supported (deprecated in 2.2.4)
327
- removed `weekMode` setting
328
- removed `axisFormat` setting
329
- DOM structure of month/basic-view day cell numbers changed
330
 
331
Bugfixes:
332
- `$.fullCalendar.version` incorrect (#3292)
333
 
334
Build System:
335
- using gulp instead of grunt (faster)
336
- using npm internally for dependencies instead of bower
337
- changed repo directory structure
338
 
339
 
340
v2.9.1 (2016-07-31)
341
-------------------
342
 
343
- multiple definitions for businessHours (#2686)
344
- businessHours for single day doesn't display weekends (#2944)
345
- height/contentHeight can accept a function or 'parent' for dynamic value (#3271)
346
- fix +more popover clipped by overflow (#3232)
347
- fix +more popover positioned incorrectly when scrolled (#3137)
348
- Norwegian Nynorsk translation (#3246)
349
- fix isAnimating JS error (#3285)
350
 
351
 
352
v2.9.0 (2016-07-10)
353
-------------------
354
 
355
- Setters for (almost) all options (#564).
356
  See [docs](http://fullcalendar.io/docs/utilities/dynamic_options/) for more info.
357
- Travis CI improvements (#3266)
358
 
359
 
360
v2.8.0 (2016-06-19)
361
-------------------
362
 
363
- getEventSources method (#3103, #2433)
364
- getEventSourceById method (#3223)
365
- refetchEventSources method (#3103, #1328, #254)
366
- removeEventSources method (#3165, #948)
367
- prevent flicker when refetchEvents is called (#3123, #2558)
368
- fix for removing event sources that share same URL (#3209)
369
- jQuery 3 support (#3197, #3124)
370
- Travis CI integration (#3218)
371
- EditorConfig for promoting consistent code style (#141)
372
- use en dash when formatting ranges (#3077)
373
- height:auto always shows scrollbars in month view on FF (#3202)
374
- new languages:
375
	- Basque (#2992)
376
	- Galician (#194)
377
	- Luxembourgish (#2979)
378
 
379
 
380
v2.7.3 (2016-06-02)
381
-------------------
382
 
383
internal enhancements that plugins can benefit from:
384
- EventEmitter not correctly working with stopListeningTo
385
- normalizeEvent hook for manipulating event data
386
 
387
 
388
v2.7.2 (2016-05-20)
389
-------------------
390
 
391
- fixed desktops/laptops with touch support not accepting mouse events for
392
  dayClick/dragging/resizing (#3154, #3149)
393
- fixed dayClick incorrectly triggered on touch scroll (#3152)
394
- fixed touch event dragging wrongfully beginning upon scrolling document (#3160)
395
- fixed minified JS still contained comments
396
- UI change: mouse users must hover over an event to reveal its resizers
397
 
398
 
399
v2.7.1 (2016-05-01)
400
-------------------
401
 
402
- dayClick not firing on touch devices (#3138)
403
- icons for prev/next not working in MS Edge (#2852)
404
- fix bad languages troubles with firewalls (#3133, #3132)
405
- update all dev dependencies (#3145, #3010, #2901, #251)
406
- git-ignore npm debug logs (#3011)
407
- misc automated test updates (#3139, #3147)
408
- Google Calendar htmlLink not always defined (#2844)
409
 
410
 
411
v2.7.0 (2016-04-23)
412
-------------------
413
 
414
touch device support (#994):
415
	- smoother scrolling
416
	- interactions initiated via "long press":
417
		- event drag-n-drop
418
		- event resize
419
		- time-range selecting
420
	- `longPressDelay`
421
 
422
 
423
v2.6.1 (2016-02-17)
424
-------------------
425
 
426
- make `nowIndicator` positioning refresh on window resize
427
 
428
 
429
v2.6.0 (2016-01-07)
430
-------------------
431
 
432
- current time indicator (#414)
433
- bundled with most recent version of moment (2.11.0)
434
- UMD wrapper around lang files now handles commonjs (#2918)
435
- fix bug where external event dragging would not respect eventOverlap
436
- fix bug where external event dropping would not render the whole-day highlight
437
 
438
 
439
v2.5.0 (2015-11-30)
440
-------------------
441
 
442
- internal timezone refactor. fixes #2396, #2900, #2945, #2711
443
- internal "grid" system refactor. improved API for plugins.
444
 
445
 
446
v2.4.0 (2015-08-16)
447
-------------------
448
 
449
- add new buttons to the header via `customButtons` ([225])
450
- control stacking order of events via `eventOrder` ([364])
451
- control frequency of slot text via `slotLabelInterval` ([946])
452
- `displayEventTime` ([1904])
453
- `on` and `off` methods ([1910])
454
- renamed `axisFormat` to `slotLabelFormat`
455
 
456
[225]: https://code.google.com/p/fullcalendar/issues/detail?id=225
457
[364]: https://code.google.com/p/fullcalendar/issues/detail?id=364
458
[946]: https://code.google.com/p/fullcalendar/issues/detail?id=946
459
[1904]: https://code.google.com/p/fullcalendar/issues/detail?id=1904
460
[1910]: https://code.google.com/p/fullcalendar/issues/detail?id=1910
461
 
462
 
463
v2.3.2 (2015-06-14)
464
-------------------
465
 
466
- minor code adjustment in preparation for plugins
467
 
468
 
469
v2.3.1 (2015-03-08)
470
-------------------
471
 
472
- Fix week view column title for en-gb ([PR220])
473
- Publish to NPM ([2447])
474
- Detangle bower from npm package ([PR179])
475
 
476
[PR220]: https://github.com/arshaw/fullcalendar/pull/220
477
[2447]: https://code.google.com/p/fullcalendar/issues/detail?id=2447
478
[PR179]: https://github.com/arshaw/fullcalendar/pull/179
479
 
480
 
481
v2.3.0 (2015-02-21)
482
-------------------
483
 
484
- internal refactoring in preparation for other views
485
- businessHours now renders on whole-days in addition to timed areas
486
- events in "more" popover not sorted by time ([2385])
487
- avoid using moment's deprecated zone method ([2443])
488
- destroying the calendar sometimes causes all window resize handlers to be unbound ([2432])
489
- multiple calendars on one page, can't accept external elements after navigating ([2433])
490
- accept external events from jqui sortable ([1698])
491
- external jqui drop processed before reverting ([1661])
492
- IE8 fix: month view renders incorrectly ([2428])
493
- IE8 fix: eventLimit:true wouldn't activate "more" link ([2330])
494
- IE8 fix: dragging an event with an href
495
- IE8 fix: invisible element while dragging agenda view events
496
- IE8 fix: erratic external element dragging
497
 
498
[2385]: https://code.google.com/p/fullcalendar/issues/detail?id=2385
499
[2443]: https://code.google.com/p/fullcalendar/issues/detail?id=2443
500
[2432]: https://code.google.com/p/fullcalendar/issues/detail?id=2432
501
[2433]: https://code.google.com/p/fullcalendar/issues/detail?id=2433
502
[1698]: https://code.google.com/p/fullcalendar/issues/detail?id=1698
503
[1661]: https://code.google.com/p/fullcalendar/issues/detail?id=1661
504
[2428]: https://code.google.com/p/fullcalendar/issues/detail?id=2428
505
[2330]: https://code.google.com/p/fullcalendar/issues/detail?id=2330
506
 
507
 
508
v2.2.7 (2015-02-10)
509
-------------------
510
 
511
- view.title wasn't defined in viewRender callback ([2407])
512
- FullCalendar versions >= 2.2.5 brokenness with Moment versions <= 2.8.3 ([2417])
513
- Support Bokmal Norwegian language specifically ([2427])
514
 
515
[2407]: https://code.google.com/p/fullcalendar/issues/detail?id=2407
516
[2417]: https://code.google.com/p/fullcalendar/issues/detail?id=2417
517
[2427]: https://code.google.com/p/fullcalendar/issues/detail?id=2427
518
 
519
 
520
v2.2.6 (2015-01-11)
521
-------------------
522
 
523
- Compatibility with Moment v2.9. Was breaking GCal plugin ([2408])
524
- View object's `title` property mistakenly omitted ([2407])
525
- Single-day views with hiddens days could cause prev/next misbehavior ([2406])
526
- Don't let the current date ever be a hidden day (solves [2395])
527
- Hebrew locale ([2157])
528
 
529
[2408]: https://code.google.com/p/fullcalendar/issues/detail?id=2408
530
[2407]: https://code.google.com/p/fullcalendar/issues/detail?id=2407
531
[2406]: https://code.google.com/p/fullcalendar/issues/detail?id=2406
532
[2395]: https://code.google.com/p/fullcalendar/issues/detail?id=2395
533
[2157]: https://code.google.com/p/fullcalendar/issues/detail?id=2157
534
 
535
 
536
v2.2.5 (2014-12-30)
537
-------------------
538
 
539
- `buttonText` specified for custom views via the `views` option
540
	- bugfix: wrong default value, couldn't override default
541
	- feature: default value taken from locale
542
 
543
 
544
v2.2.4 (2014-12-29)
545
-------------------
546
 
547
- Arbitrary durations for basic/agenda views with the `views` option ([692])
548
- Specify view-specific options using the `views` option. fixes [2283]
549
- Deprecate view-option-hashes
550
- Formalize and expose View API ([1055])
551
- updateEvent method, more intuitive behavior. fixes [2194]
552
 
553
[692]: https://code.google.com/p/fullcalendar/issues/detail?id=692
554
[2283]: https://code.google.com/p/fullcalendar/issues/detail?id=2283
555
[1055]: https://code.google.com/p/fullcalendar/issues/detail?id=1055
556
[2194]: https://code.google.com/p/fullcalendar/issues/detail?id=2194
557
 
558
 
559
v2.2.3 (2014-11-26)
560
-------------------
561
 
562
- removeEventSource with Google Calendar object source, would not remove ([2368])
563
- Events with invalid end dates are still accepted and rendered ([2350], [2237], [2296])
564
- Bug when rendering business hours and navigating away from original view ([2365])
565
- Links to Google Calendar events will use current timezone ([2122])
566
- Google Calendar plugin works with timezone names that have spaces
567
- Google Calendar plugin accepts person email addresses as calendar IDs
568
- Internally use numeric sort instead of alphanumeric sort ([2370])
569
 
570
[2368]: https://code.google.com/p/fullcalendar/issues/detail?id=2368
571
[2350]: https://code.google.com/p/fullcalendar/issues/detail?id=2350
572
[2237]: https://code.google.com/p/fullcalendar/issues/detail?id=2237
573
[2296]: https://code.google.com/p/fullcalendar/issues/detail?id=2296
574
[2365]: https://code.google.com/p/fullcalendar/issues/detail?id=2365
575
[2122]: https://code.google.com/p/fullcalendar/issues/detail?id=2122
576
[2370]: https://code.google.com/p/fullcalendar/issues/detail?id=2370
577
 
578
 
579
v2.2.2 (2014-11-19)
580
-------------------
581
 
582
- Fixes to Google Calendar API V3 code
583
	- wouldn't recognize a lone-string Google Calendar ID if periods before the @ symbol
584
	- removeEventSource wouldn't work when given a Google Calendar ID
585
 
586
 
587
v2.2.1 (2014-11-19)
588
-------------------
589
 
590
- Migrate Google Calendar plugin to use V3 of the API ([1526])
591
 
592
[1526]: https://code.google.com/p/fullcalendar/issues/detail?id=1526
593
 
594
 
595
v2.2.0 (2014-11-14)
596
-------------------
597
 
598
- Background events. Event object's `rendering` property ([144], [1286])
599
- `businessHours` option ([144])
600
- Controlling where events can be dragged/resized and selections can go ([396], [1286], [2253])
601
	- `eventOverlap`, `selectOverlap`, and similar
602
	- `eventConstraint`, `selectConstraint`, and similar
603
- Improvements to dragging and dropping external events ([2004])
604
	- Associating with real event data. used with `eventReceive`
605
	- Associating a `duration`
606
- Performance boost for moment creation
607
	- Be aware, FullCalendar-specific methods now attached directly to global moment.fn
608
	- Helps with [issue 2259][2259]
609
- Reintroduced forgotten `dropAccept` option ([2312])
610
 
611
[144]: https://code.google.com/p/fullcalendar/issues/detail?id=144
612
[396]: https://code.google.com/p/fullcalendar/issues/detail?id=396
613
[1286]: https://code.google.com/p/fullcalendar/issues/detail?id=1286
614
[2004]: https://code.google.com/p/fullcalendar/issues/detail?id=2004
615
[2253]: https://code.google.com/p/fullcalendar/issues/detail?id=2253
616
[2259]: https://code.google.com/p/fullcalendar/issues/detail?id=2259
617
[2312]: https://code.google.com/p/fullcalendar/issues/detail?id=2312
618
 
619
 
620
v2.1.1 (2014-08-29)
621
-------------------
622
 
623
- removeEventSource not working with array ([2203])
624
- mouseout not triggered after mouseover+updateEvent ([829])
625
- agenda event's render with no <a> href, not clickable ([2263])
626
 
627
[2203]: https://code.google.com/p/fullcalendar/issues/detail?id=2203
628
[829]: https://code.google.com/p/fullcalendar/issues/detail?id=829
629
[2263]: https://code.google.com/p/fullcalendar/issues/detail?id=2263
630
 
631
 
632
v2.1.0 (2014-08-25)
633
-------------------
634
 
635
Large code refactor with better OOP, better code reuse, and more comments.
636
**No more reliance on jQuery UI** for event dragging, resizing, or anything else.
637
 
638
Significant changes to HTML/CSS skeleton:
639
- Leverages tables for liquid rendering of days and events. No costly manual repositioning ([809])
640
- **Backwards-incompatibilities**:
641
	- **Many classNames have changed. Custom CSS will likely need to be adjusted.**
642
	- IE7 definitely not supported anymore
643
	- In `eventRender` callback, `element` will not be attached to DOM yet
644
	- Events are styled to be one line by default ([1992]). Can be undone through custom CSS,
645
	  but not recommended (might get gaps [like this][111] in certain situations).
646
 
647
A "more..." link when there are too many events on a day ([304]). Works with month and basic views
648
as well as the all-day section of the agenda views. New options:
649
- `eventLimit`. a number or `true`
650
- `eventLimitClick`. the `"popover`" value will reveal all events in a raised panel (the default)
651
- `eventLimitText`
652
- `dayPopoverFormat`
653
 
654
Changes related to height and scrollbars:
655
- `aspectRatio`/`height`/`contentHeight` values will be honored *no matter what*
656
	- If too many events causing too much vertical space, scrollbars will be used ([728]).
657
	  This is default behavior for month view (**backwards-incompatibility**)
658
	- If too few slots in agenda view, view will stretch to be the correct height ([2196])
659
- `'auto'` value for `height`/`contentHeight` options. If content is too tall, the view will
660
  vertically stretch to accomodate and no scrollbars will be used ([521]).
661
- Tall weeks in month view will borrow height from other weeks ([243])
662
- Automatically scroll the view then dragging/resizing an event ([1025], [2078])
663
- New `fixedWeekCount` option to determines the number of weeks in month view
664
	- Supersedes `weekMode` (**deprecated**). Instead, use a combination of `fixedWeekCount` and
665
	  one of the height options, possibly with an `'auto'` value
666
 
667
Much nicer, glitch-free rendering of calendar *for printers* ([35]). Things you might not expect:
668
- Buttons will become hidden
669
- Agenda views display a flat list of events where the time slots would be
670
 
671
Other issues resolved along the way:
672
- Space on right side of agenda events configurable through CSS ([204])
673
- Problem with window resize ([259])
674
- Events sorting stays consistent across weeks ([510])
675
- Agenda's columns misaligned on wide screens ([511])
676
- Run `selectHelper` through `eventRender` callbacks ([629])
677
- Keyboard access, tabbing ([637])
678
- Run resizing events through `eventRender` ([714])
679
- Resize an event to a different day in agenda views ([736])
680
- Allow selection across days in agenda views ([778])
681
- Mouseenter delegated event not working on event elements ([936])
682
- Agenda event dragging, snapping to different columns is erratic ([1101])
683
- Android browser cuts off Day view at 8 PM with no scroll bar ([1203])
684
- Don't fire `eventMouseover`/`eventMouseout` while dragging/resizing ([1297])
685
- Customize the resize handle text ("=") ([1326])
686
- If agenda event is too short, don't overwrite `.fc-event-time` ([1700])
687
- Zooming calendar causes events to misalign ([1996])
688
- Event destroy callback on event removal ([2017])
689
- Agenda views, when RTL, should have axis on right ([2132])
690
- Make header buttons more accessibile ([2151])
691
- daySelectionMousedown should interpret OSX ctrl+click as a right mouse click ([2169])
692
- Best way to display time text on multi-day events *with times* ([2172])
693
- Eliminate table use for header layout ([2186])
694
- Event delegation used for event-related callbacks (like `eventClick`). Speedier.
695
 
696
[35]: https://code.google.com/p/fullcalendar/issues/detail?id=35
697
[204]: https://code.google.com/p/fullcalendar/issues/detail?id=204
698
[243]: https://code.google.com/p/fullcalendar/issues/detail?id=243
699
[259]: https://code.google.com/p/fullcalendar/issues/detail?id=259
700
[304]: https://code.google.com/p/fullcalendar/issues/detail?id=304
701
[510]: https://code.google.com/p/fullcalendar/issues/detail?id=510
702
[511]: https://code.google.com/p/fullcalendar/issues/detail?id=511
703
[521]: https://code.google.com/p/fullcalendar/issues/detail?id=521
704
[629]: https://code.google.com/p/fullcalendar/issues/detail?id=629
705
[637]: https://code.google.com/p/fullcalendar/issues/detail?id=637
706
[714]: https://code.google.com/p/fullcalendar/issues/detail?id=714
707
[728]: https://code.google.com/p/fullcalendar/issues/detail?id=728
708
[736]: https://code.google.com/p/fullcalendar/issues/detail?id=736
709
[778]: https://code.google.com/p/fullcalendar/issues/detail?id=778
710
[809]: https://code.google.com/p/fullcalendar/issues/detail?id=809
711
[936]: https://code.google.com/p/fullcalendar/issues/detail?id=936
712
[1025]: https://code.google.com/p/fullcalendar/issues/detail?id=1025
713
[1101]: https://code.google.com/p/fullcalendar/issues/detail?id=1101
714
[1203]: https://code.google.com/p/fullcalendar/issues/detail?id=1203
715
[1297]: https://code.google.com/p/fullcalendar/issues/detail?id=1297
716
[1326]: https://code.google.com/p/fullcalendar/issues/detail?id=1326
717
[1700]: https://code.google.com/p/fullcalendar/issues/detail?id=1700
718
[1992]: https://code.google.com/p/fullcalendar/issues/detail?id=1992
719
[1996]: https://code.google.com/p/fullcalendar/issues/detail?id=1996
720
[2017]: https://code.google.com/p/fullcalendar/issues/detail?id=2017
721
[2078]: https://code.google.com/p/fullcalendar/issues/detail?id=2078
722
[2132]: https://code.google.com/p/fullcalendar/issues/detail?id=2132
723
[2151]: https://code.google.com/p/fullcalendar/issues/detail?id=2151
724
[2169]: https://code.google.com/p/fullcalendar/issues/detail?id=2169
725
[2172]: https://code.google.com/p/fullcalendar/issues/detail?id=2172
726
[2186]: https://code.google.com/p/fullcalendar/issues/detail?id=2186
727
[2196]: https://code.google.com/p/fullcalendar/issues/detail?id=2196
728
[111]: https://code.google.com/p/fullcalendar/issues/detail?id=111
729
 
730
 
731
v2.0.3 (2014-08-15)
732
-------------------
733
 
734
- moment-2.8.1 compatibility ([2221])
735
- relative path in bower.json ([PR 117])
736
- upgraded jquery-ui and misc dev dependencies
737
 
738
[2221]: https://code.google.com/p/fullcalendar/issues/detail?id=2221
739
[PR 117]: https://github.com/arshaw/fullcalendar/pull/177
740
 
741
 
742
v2.0.2 (2014-06-24)
743
-------------------
744
 
745
- bug with persisting addEventSource calls ([2191])
746
- bug with persisting removeEvents calls with an array source ([2187])
747
- bug with removeEvents method when called with 0 removes all events ([2082])
748
 
749
[2191]: https://code.google.com/p/fullcalendar/issues/detail?id=2191
750
[2187]: https://code.google.com/p/fullcalendar/issues/detail?id=2187
751
[2082]: https://code.google.com/p/fullcalendar/issues/detail?id=2082
752
 
753
 
754
v2.0.1 (2014-06-15)
755
-------------------
756
 
757
- `delta` parameters reintroduced in `eventDrop` and `eventResize` handlers ([2156])
758
  - **Note**: this changes the argument order for `revertFunc`
759
- wrongfully triggering a windowResize when resizing an agenda view event ([1116])
760
- `this` values in event drag-n-drop/resize handlers consistently the DOM node ([1177])
761
- `displayEventEnd` - v2 workaround to force display of an end time ([2090])
762
- don't modify passed-in eventSource items ([954])
763
- destroy method now removes fc-ltr class ([2033])
764
- weeks of last/next month still visible when weekends are hidden ([2095])
765
- fixed memory leak when destroying calendar with selectable/droppable ([2137])
766
- Icelandic language ([2180])
767
- Bahasa Indonesia language ([PR 172])
768
 
769
[1116]: https://code.google.com/p/fullcalendar/issues/detail?id=1116
770
[1177]: https://code.google.com/p/fullcalendar/issues/detail?id=1177
771
[2090]: https://code.google.com/p/fullcalendar/issues/detail?id=2090
772
[954]: https://code.google.com/p/fullcalendar/issues/detail?id=954
773
[2033]: https://code.google.com/p/fullcalendar/issues/detail?id=2033
774
[2095]: https://code.google.com/p/fullcalendar/issues/detail?id=2095
775
[2137]: https://code.google.com/p/fullcalendar/issues/detail?id=2137
776
[2156]: https://code.google.com/p/fullcalendar/issues/detail?id=2156
777
[2180]: https://code.google.com/p/fullcalendar/issues/detail?id=2180
778
[PR 172]: https://github.com/arshaw/fullcalendar/pull/172
779
 
780
 
781
v2.0.0 (2014-06-01)
782
-------------------
783
 
784
Internationalization support, timezone support, and [MomentJS] integration. Extensive changes, many
785
of which are backwards incompatible.
786
 
787
[Full list of changes][Upgrading-to-v2] | [Affected Issues][Date-Milestone]
788
 
789
An automated testing framework has been set up ([Karma] + [Jasmine]) and tests have been written
790
which cover about half of FullCalendar's functionality. Special thanks to @incre-d, @vidbina, and
791
@sirrocco for the help.
792
 
793
In addition, the main development repo has been repurposed to also include the built distributable
794
JS/CSS for the project and will serve as the new [Bower] endpoint.
795
 
796
[MomentJS]: http://momentjs.com/
797
[Upgrading-to-v2]: http://arshaw.com/fullcalendar/wiki/Upgrading-to-v2/
798
[Date-Milestone]: https://code.google.com/p/fullcalendar/issues/list?can=1&q=milestone%3Ddate
799
[Karma]: http://karma-runner.github.io/
800
[Jasmine]: http://jasmine.github.io/
801
[Bower]: http://bower.io/
802
 
803
 
804
v1.6.4 (2013-09-01)
805
-------------------
806
 
807
- better algorithm for positioning timed agenda events ([1115])
808
- `slotEventOverlap` option to tweak timed agenda event overlapping ([218])
809
- selection bug when slot height is customized ([1035])
810
- supply view argument in `loading` callback ([1018])
811
- fixed week number not displaying in agenda views ([1951])
812
- fixed fullCalendar not initializing with no options ([1356])
813
- NPM's `package.json`, no more warnings or errors ([1762])
814
- building the bower component should output `bower.json` instead of `component.json` ([PR 125])
815
- use bower internally for fetching new versions of jQuery and jQuery UI
816
 
817
[1115]: https://code.google.com/p/fullcalendar/issues/detail?id=1115
818
[218]: https://code.google.com/p/fullcalendar/issues/detail?id=218
819
[1035]: https://code.google.com/p/fullcalendar/issues/detail?id=1035
820
[1018]: https://code.google.com/p/fullcalendar/issues/detail?id=1018
821
[1951]: https://code.google.com/p/fullcalendar/issues/detail?id=1951
822
[1356]: https://code.google.com/p/fullcalendar/issues/detail?id=1356
823
[1762]: https://code.google.com/p/fullcalendar/issues/detail?id=1762
824
[PR 125]: https://github.com/arshaw/fullcalendar/pull/125
825
 
826
 
827
v1.6.3 (2013-08-10)
828
-------------------
829
 
830
- `viewRender` callback ([PR 15])
831
- `viewDestroy` callback ([PR 15])
832
- `eventDestroy` callback ([PR 111])
833
- `handleWindowResize` option ([PR 54])
834
- `eventStartEditable`/`startEditable` options ([PR 49])
835
- `eventDurationEditable`/`durationEditable` options ([PR 49])
836
- specify function for `$.ajax` `data` parameter for JSON event sources ([PR 59])
837
- fixed bug with agenda event dropping in wrong column ([PR 55])
838
- easier event element z-index customization ([PR 58])
839
- classNames on past/future days ([PR 88])
840
- allow `null`/`undefined` event titles ([PR 84])
841
- small optimize for agenda event rendering ([PR 56])
842
- deprecated:
843
	- `viewDisplay`
844
	- `disableDragging`
845
	- `disableResizing`
846
- bundled with latest jQuery (1.10.2) and jQuery UI (1.10.3)
847
 
848
[PR 15]: https://github.com/arshaw/fullcalendar/pull/15
849
[PR 111]: https://github.com/arshaw/fullcalendar/pull/111
850
[PR 54]: https://github.com/arshaw/fullcalendar/pull/54
851
[PR 49]: https://github.com/arshaw/fullcalendar/pull/49
852
[PR 59]: https://github.com/arshaw/fullcalendar/pull/59
853
[PR 55]: https://github.com/arshaw/fullcalendar/pull/55
854
[PR 58]: https://github.com/arshaw/fullcalendar/pull/58
855
[PR 88]: https://github.com/arshaw/fullcalendar/pull/88
856
[PR 84]: https://github.com/arshaw/fullcalendar/pull/84
857
[PR 56]: https://github.com/arshaw/fullcalendar/pull/56
858
 
859
 
860
v1.6.2 (2013-07-18)
861
-------------------
862
 
863
- `hiddenDays` option ([686])
864
- bugfix: when `eventRender` returns `false`, incorrect stacking of events ([762])
865
- bugfix: couldn't change `event.backgroundImage` when calling `updateEvent` (thx @stephenharris)
866
 
867
[686]: https://code.google.com/p/fullcalendar/issues/detail?id=686
868
[762]: https://code.google.com/p/fullcalendar/issues/detail?id=762
869
 
870
 
871
v1.6.1 (2013-04-14)
872
-------------------
873
 
874
- fixed event inner content overflow bug ([1783])
875
- fixed table header className bug [1772]
876
- removed text-shadow on events (better for general use, thx @tkrotoff)
877
 
878
[1783]: https://code.google.com/p/fullcalendar/issues/detail?id=1783
879
[1772]: https://code.google.com/p/fullcalendar/issues/detail?id=1772
880
 
881
 
882
v1.6.0 (2013-03-18)
883
-------------------
884
 
885
- visual facelift, with bootstrap-inspired buttons and colors
886
- simplified HTML/CSS for events and buttons
887
- `dayRender`, for modifying a day cell ([191], thx @althaus)
888
- week numbers on side of calendar ([295])
889
	- `weekNumber`
890
	- `weekNumberCalculation`
891
	- `weekNumberTitle`
892
	- `W` formatting variable
893
- finer snapping granularity for agenda view events ([495], thx @ms-doodle-com)
894
- `eventAfterAllRender` ([753], thx @pdrakeweb)
895
- `eventDataTransform` (thx @joeyspo)
896
- `data-date` attributes on cells (thx @Jae)
897
- expose `$.fullCalendar.dateFormatters`
898
- when clicking fast on buttons, prevent text selection
899
- bundled with latest jQuery (1.9.1) and jQuery UI (1.10.2)
900
- Grunt/Lumbar build system for internal development
901
- build for Bower package manager
902
- build for jQuery plugin site
903
 
904
[191]: https://code.google.com/p/fullcalendar/issues/detail?id=191
905
[295]: https://code.google.com/p/fullcalendar/issues/detail?id=295
906
[495]: https://code.google.com/p/fullcalendar/issues/detail?id=495
907
[753]: https://code.google.com/p/fullcalendar/issues/detail?id=753
908
 
909
 
910
v1.5.4 (2012-09-05)
911
-------------------
912
 
913
- made compatible with jQuery 1.8.* (thx @archaeron)
914
- bundled with jQuery 1.8.1 and jQuery UI 1.8.23
915
 
916
 
917
v1.5.3 (2012-02-06)
918
-------------------
919
 
920
- fixed dragging issue with jQuery UI 1.8.16 ([1168])
921
- bundled with jQuery 1.7.1 and jQuery UI 1.8.17
922
 
923
[1168]: https://code.google.com/p/fullcalendar/issues/detail?id=1168
924
 
925
 
926
v1.5.2 (2011-08-21)
927
-------------------
928
 
929
- correctly process UTC "Z" ISO8601 date strings ([750])
930
 
931
[750]: https://code.google.com/p/fullcalendar/issues/detail?id=750
932
 
933
 
934
v1.5.1 (2011-04-09)
935
-------------------
936
 
937
- more flexible ISO8601 date parsing ([814])
938
- more flexible parsing of UNIX timestamps ([826])
939
- FullCalendar now buildable from source on a Mac ([795])
940
- FullCalendar QA'd in FF4 ([883])
941
- upgraded to jQuery 1.5.2 (which supports IE9) and jQuery UI 1.8.11
942
 
943
[814]: https://code.google.com/p/fullcalendar/issues/detail?id=814
944
[826]: https://code.google.com/p/fullcalendar/issues/detail?id=826
945
[795]: https://code.google.com/p/fullcalendar/issues/detail?id=795
946
[883]: https://code.google.com/p/fullcalendar/issues/detail?id=883
947
 
948
 
949
v1.5 (2011-03-19)
950
-----------------
951
 
952
- slicker default styling for buttons
953
- reworked a lot of the calendar's HTML and accompanying CSS (solves [327] and [395])
954
- more printer-friendly (fullcalendar-print.css)
955
- fullcalendar now inherits styles from jquery-ui themes differently.
956
  styles for buttons are distinct from styles for calendar cells.
957
  (solves [299])
958
- can now color events through FullCalendar options and Event-Object properties ([117])
959
  THIS IS NOW THE PREFERRED METHOD OF COLORING EVENTS (as opposed to using className and CSS)
960
	- FullCalendar options:
961
		- eventColor (changes both background and border)
962
		- eventBackgroundColor
963
		- eventBorderColor
964
		- eventTextColor
965
	- Event-Object options:
966
		- color (changes both background and border)
967
		- backgroundColor
968
		- borderColor
969
		- textColor
970
- can now specify an event source as an *object* with a `url` property (json feed) or
971
  an `events` property (function or array) with additional properties that will
972
  be applied to the entire event source:
973
	- color (changes both background and border)
974
	- backgroudColor
975
	- borderColor
976
	- textColor
977
	- className
978
	- editable
979
	- allDayDefault
980
	- ignoreTimezone
981
	- startParam (for a feed)
982
	- endParam   (for a feed)
983
	- ANY OF THE JQUERY $.ajax OPTIONS
984
	  allows for easily changing from GET to POST and sending additional parameters ([386])
985
	  allows for easily attaching ajax handlers such as `error` ([754])
986
	  allows for turning caching on ([355])
987
- Google Calendar feeds are now specified differently:
988
	- specify a simple string of your feed's URL
989
	- specify an *object* with a `url` property of your feed's URL.
990
	  you can include any of the new Event-Source options in this object.
991
	- the old `$.fullCalendar.gcalFeed` method still works
992
- no more IE7 SSL popup ([504])
993
- remove `cacheParam` - use json event source `cache` option instead
994
- latest jquery/jquery-ui
995
 
996
[327]: https://code.google.com/p/fullcalendar/issues/detail?id=327
997
[395]: https://code.google.com/p/fullcalendar/issues/detail?id=395
998
[299]: https://code.google.com/p/fullcalendar/issues/detail?id=299
999
[117]: https://code.google.com/p/fullcalendar/issues/detail?id=117
1000
[386]: https://code.google.com/p/fullcalendar/issues/detail?id=386
1001
[754]: https://code.google.com/p/fullcalendar/issues/detail?id=754
1002
[355]: https://code.google.com/p/fullcalendar/issues/detail?id=355
1003
[504]: https://code.google.com/p/fullcalendar/issues/detail?id=504
1004
 
1005
 
1006
v1.4.11 (2011-02-22)
1007
--------------------
1008
 
1009
- fixed rerenderEvents bug ([790])
1010
- fixed bug with faulty dragging of events from all-day slot in agenda views
1011
- bundled with jquery 1.5 and jquery-ui 1.8.9
1012
 
1013
[790]: https://code.google.com/p/fullcalendar/issues/detail?id=790
1014
 
1015
 
1016
v1.4.10 (2011-01-02)
1017
--------------------
1018
 
1019
- fixed bug with resizing event to different week in 5-day month view ([740])
1020
- fixed bug with events not sticking after a removeEvents call ([757])
1021
- fixed bug with underlying parseTime method, and other uses of parseInt ([688])
1022
 
1023
[740]: https://code.google.com/p/fullcalendar/issues/detail?id=740
1024
[757]: https://code.google.com/p/fullcalendar/issues/detail?id=757
1025
[688]: https://code.google.com/p/fullcalendar/issues/detail?id=688
1026
 
1027
 
1028
v1.4.9 (2010-11-16)
1029
-------------------
1030
 
1031
- new algorithm for vertically stacking events ([111])
1032
- resizing an event to a different week ([306])
1033
- bug: some events not rendered with consecutive calls to addEventSource ([679])
1034
 
1035
[111]: https://code.google.com/p/fullcalendar/issues/detail?id=111
1036
[306]: https://code.google.com/p/fullcalendar/issues/detail?id=306
1037
[679]: https://code.google.com/p/fullcalendar/issues/detail?id=679
1038
 
1039
 
1040
v1.4.8 (2010-10-16)
1041
-------------------
1042
 
1043
- ignoreTimezone option (set to `false` to process UTC offsets in ISO8601 dates)
1044
- bugfixes
1045
	- event refetching not being called under certain conditions ([417], [554])
1046
	- event refetching being called multiple times under certain conditions ([586], [616])
1047
	- selection cannot be triggered by right mouse button ([558])
1048
	- agenda view left axis sized incorrectly ([465])
1049
	- IE js error when calendar is too narrow ([517])
1050
	- agenda view looks strange when no scrollbars ([235])
1051
	- improved parsing of ISO8601 dates with UTC offsets
1052
- $.fullCalendar.version
1053
- an internal refactor of the code, for easier future development and modularity
1054
 
1055
[417]: https://code.google.com/p/fullcalendar/issues/detail?id=417
1056
[554]: https://code.google.com/p/fullcalendar/issues/detail?id=554
1057
[586]: https://code.google.com/p/fullcalendar/issues/detail?id=586
1058
[616]: https://code.google.com/p/fullcalendar/issues/detail?id=616
1059
[558]: https://code.google.com/p/fullcalendar/issues/detail?id=558
1060
[465]: https://code.google.com/p/fullcalendar/issues/detail?id=465
1061
[517]: https://code.google.com/p/fullcalendar/issues/detail?id=517
1062
[235]: https://code.google.com/p/fullcalendar/issues/detail?id=235
1063
 
1064
 
1065
v1.4.7 (2010-07-05)
1066
-------------------
1067
 
1068
- "dropping" external objects onto the calendar
1069
	- droppable (boolean, to turn on/off)
1070
	- dropAccept (to filter which events the calendar will accept)
1071
	- drop (trigger)
1072
- selectable options can now be specified with a View Option Hash
1073
- bugfixes
1074
	- dragged & reverted events having wrong time text ([406])
1075
	- bug rendering events that have an endtime with seconds, but no hours/minutes ([477])
1076
	- gotoDate date overflow bug ([429])
1077
	- wrong date reported when clicking on edge of last column in agenda views [412]
1078
- support newlines in event titles
1079
- select/unselect callbacks now passes native js event
1080
 
1081
[406]: https://code.google.com/p/fullcalendar/issues/detail?id=406
1082
[477]: https://code.google.com/p/fullcalendar/issues/detail?id=477
1083
[429]: https://code.google.com/p/fullcalendar/issues/detail?id=429
1084
[412]: https://code.google.com/p/fullcalendar/issues/detail?id=412
1085
 
1086
 
1087
v1.4.6 (2010-05-31)
1088
-------------------
1089
 
1090
- "selecting" days or timeslots
1091
	- options: selectable, selectHelper, unselectAuto, unselectCancel
1092
	- callbacks: select, unselect
1093
	- methods: select, unselect
1094
- when dragging an event, the highlighting reflects the duration of the event
1095
- code compressing by Google Closure Compiler
1096
- bundled with jQuery 1.4.2 and jQuery UI 1.8.1
1097
 
1098
 
1099
v1.4.5 (2010-02-21)
1100
-------------------
1101
 
1102
- lazyFetching option, which can force the calendar to fetch events on every view/date change
1103
- scroll state of agenda views are preserved when switching back to view
1104
- bugfixes
1105
	- calling methods on an uninitialized fullcalendar throws error
1106
	- IE6/7 bug where an entire view becomes invisible ([320])
1107
	- error when rendering a hidden calendar (in jquery ui tabs for example) in IE ([340])
1108
	- interconnected bugs related to calendar resizing and scrollbars
1109
		- when switching views or clicking prev/next, calendar would "blink" ([333])
1110
		- liquid-width calendar's events shifted (depending on initial height of browser) ([341])
1111
		- more robust underlying algorithm for calendar resizing
1112
 
1113
[320]: https://code.google.com/p/fullcalendar/issues/detail?id=320
1114
[340]: https://code.google.com/p/fullcalendar/issues/detail?id=340
1115
[333]: https://code.google.com/p/fullcalendar/issues/detail?id=333
1116
[341]: https://code.google.com/p/fullcalendar/issues/detail?id=341
1117
 
1118
 
1119
v1.4.4 (2010-02-03)
1120
-------------------
1121
 
1122
- optimized event rendering in all views (events render in 1/10 the time)
1123
- gotoDate() does not force the calendar to unnecessarily rerender
1124
- render() method now correctly readjusts height
1125
 
1126
 
1127
v1.4.3 (2009-12-22)
1128
-------------------
1129
 
1130
- added destroy method
1131
- Google Calendar event pages respect currentTimezone
1132
- caching now handled by jQuery's ajax
1133
- protection from setting aspectRatio to zero
1134
- bugfixes
1135
	- parseISO8601 and DST caused certain events to display day before
1136
	- button positioning problem in IE6
1137
	- ajax event source removed after recently being added, events still displayed
1138
	- event not displayed when end is an empty string
1139
	- dynamically setting calendar height when no events have been fetched, throws error
1140
 
1141
 
1142
v1.4.2 (2009-12-02)
1143
-------------------
1144
 
1145
- eventAfterRender trigger
1146
- getDate & getView methods
1147
- height & contentHeight options (explicitly sets the pixel height)
1148
- minTime & maxTime options (restricts shown hours in agenda view)
1149
- getters [for all options] and setters [for height, contentHeight, and aspectRatio ONLY! stay tuned..]
1150
- render method now readjusts calendar's size
1151
- bugfixes
1152
	- lightbox scripts that use iframes (like fancybox)
1153
	- day-of-week classNames were off when firstDay=1
1154
	- guaranteed space on right side of agenda events (even when stacked)
1155
	- accepts ISO8601 dates with a space (instead of 'T')
1156
 
1157
 
1158
v1.4.1 (2009-10-31)
1159
-------------------
1160
 
1161
- can exclude weekends with new 'weekends' option
1162
- gcal feed 'currentTimezone' option
1163
- bugfixes
1164
	- year/month/date option sometimes wouldn't set correctly (depending on current date)
1165
	- daylight savings issue caused agenda views to start at 1am (for BST users)
1166
- cleanup of gcal.js code
1167
 
1168
 
1169
v1.4 (2009-10-19)
1170
-----------------
1171
 
1172
- agendaWeek and agendaDay views
1173
- added some options for agenda views:
1174
	- allDaySlot
1175
	- allDayText
1176
	- firstHour
1177
	- slotMinutes
1178
	- defaultEventMinutes
1179
	- axisFormat
1180
- modified some existing options/triggers to work with agenda views:
1181
	- dragOpacity and timeFormat can now accept a "View Hash" (a new concept)
1182
	- dayClick now has an allDay parameter
1183
	- eventDrop now has an an allDay parameter
1184
	  (this will affect those who use revertFunc, adjust parameter list)
1185
- added 'prevYear' and 'nextYear' for buttons in header
1186
- minor change for theme users, ui-state-hover not applied to active/inactive buttons
1187
- added event-color-changing example in docs
1188
- better defaults for right-to-left themed button icons
1189
 
1190
 
1191
v1.3.2 (2009-10-13)
1192
-------------------
1193
 
1194
- Bugfixes (please upgrade from 1.3.1!)
1195
	- squashed potential infinite loop when addMonths and addDays
1196
	  is called with an invalid date
1197
	- $.fullCalendar.parseDate() now correctly parses IETF format
1198
	- when switching views, the 'today' button sticks inactive, fixed
1199
- gotoDate now can accept a single Date argument
1200
- documentation for changes in 1.3.1 and 1.3.2 now on website
1201
 
1202
 
1203
v1.3.1 (2009-09-30)
1204
-------------------
1205
 
1206
- Important Bugfixes (please upgrade from 1.3!)
1207
	- When current date was late in the month, for long months, and prev/next buttons
1208
	  were clicked in month-view, some months would be skipped/repeated
1209
	- In certain time zones, daylight savings time would cause certain days
1210
	  to be misnumbered in month-view
1211
- Subtle change in way week interval is chosen when switching from month to basicWeek/basicDay view
1212
- Added 'allDayDefault' option
1213
- Added 'changeView' and 'render' methods
1214
 
1215
 
1216
v1.3 (2009-09-21)
1217
-----------------
1218
 
1219
- different 'views': month/basicWeek/basicDay
1220
- more flexible 'header' system for buttons
1221
- themable by jQuery UI themes
1222
- resizable events (require jQuery UI resizable plugin)
1223
- rescoped & rewritten CSS, enhanced default look
1224
- cleaner css & rendering techniques for right-to-left
1225
- reworked options & API to support multiple views / be consistent with jQuery UI
1226
- refactoring of entire codebase
1227
	- broken into different JS & CSS files, assembled w/ build scripts
1228
	- new test suite for new features, uses firebug-lite
1229
- refactored docs
1230
- Options
1231
	- + date
1232
	- + defaultView
1233
	- + aspectRatio
1234
	- + disableResizing
1235
	- + monthNames      (use instead of $.fullCalendar.monthNames)
1236
	- + monthNamesShort (use instead of $.fullCalendar.monthAbbrevs)
1237
	- + dayNames        (use instead of $.fullCalendar.dayNames)
1238
	- + dayNamesShort   (use instead of $.fullCalendar.dayAbbrevs)
1239
	- + theme
1240
	- + buttonText
1241
	- + buttonIcons
1242
	- x draggable           -> editable/disableDragging
1243
	- x fixedWeeks          -> weekMode
1244
	- x abbrevDayHeadings   -> columnFormat
1245
	- x buttons/title       -> header
1246
	- x eventDragOpacity    -> dragOpacity
1247
	- x eventRevertDuration -> dragRevertDuration
1248
	- x weekStart           -> firstDay
1249
	- x rightToLeft         -> isRTL
1250
	- x showTime (use 'allDay' CalEvent property instead)
1251
- Triggered Actions
1252
	- + eventResizeStart
1253
	- + eventResizeStop
1254
	- + eventResize
1255
	- x monthDisplay -> viewDisplay
1256
	- x resize       -> windowResize
1257
	- 'eventDrop' params changed, can revert if ajax cuts out
1258
- CalEvent Properties
1259
	- x showTime  -> allDay
1260
	- x draggable -> editable
1261
	- 'end' is now INCLUSIVE when allDay=true
1262
	- 'url' now produces a real <a> tag, more native clicking/tab behavior
1263
- Methods:
1264
	- + renderEvent
1265
	- x prevMonth         -> prev
1266
	- x nextMonth         -> next
1267
	- x prevYear/nextYear -> moveDate
1268
	- x refresh           -> rerenderEvents/refetchEvents
1269
	- x removeEvent       -> removeEvents
1270
	- x getEventsByID     -> clientEvents
1271
- Utilities:
1272
	- 'formatDate' format string completely changed (inspired by jQuery UI datepicker + datejs)
1273
	- 'formatDates' added to support date-ranges
1274
- Google Calendar Options:
1275
	- x draggable -> editable
1276
- Bugfixes
1277
	- gcal extension fetched 25 results max, now fetches all
1278
 
1279
 
1280
v1.2.1 (2009-06-29)
1281
-------------------
1282
 
1283
- bugfixes
1284
	- allows and corrects invalid end dates for events
1285
	- doesn't throw an error in IE while rendering when display:none
1286
	- fixed 'loading' callback when used w/ multiple addEventSource calls
1287
	- gcal className can now be an array
1288
 
1289
 
1290
v1.2 (2009-05-31)
1291
-----------------
1292
 
1293
- expanded API
1294
	- 'className' CalEvent attribute
1295
	- 'source' CalEvent attribute
1296
	- dynamically get/add/remove/update events of current month
1297
	- locale improvements: change month/day name text
1298
	- better date formatting ($.fullCalendar.formatDate)
1299
	- multiple 'event sources' allowed
1300
		- dynamically add/remove event sources
1301
- options for prevYear and nextYear buttons
1302
- docs have been reworked (include addition of Google Calendar docs)
1303
- changed behavior of parseDate for number strings
1304
  (now interpets as unix timestamp, not MS times)
1305
- bugfixes
1306
	- rightToLeft month start bug
1307
	- off-by-one errors with month formatting commands
1308
	- events from previous months sticking when clicking prev/next quickly
1309
- Google Calendar API changed to work w/ multiple event sources
1310
	- can also provide 'className' and 'draggable' options
1311
- date utilties moved from $ to $.fullCalendar
1312
- more documentation in source code
1313
- minified version of fullcalendar.js
1314
- test suit (available from svn)
1315
- top buttons now use `<button>` w/ an inner `<span>` for better css cusomization
1316
	- thus CSS has changed. IF UPGRADING FROM PREVIOUS VERSIONS,
1317
	  UPGRADE YOUR FULLCALENDAR.CSS FILE
1318
 
1319
 
1320
v1.1 (2009-05-10)
1321
-----------------
1322
 
1323
- Added the following options:
1324
	- weekStart
1325
	- rightToLeft
1326
	- titleFormat
1327
	- timeFormat
1328
	- cacheParam
1329
	- resize
1330
- Fixed rendering bugs
1331
	- Opera 9.25 (events placement & window resizing)
1332
	- IE6 (window resizing)
1333
- Optimized window resizing for ALL browsers
1334
- Events on same day now sorted by start time (but first by timespan)
1335
- Correct z-index when dragging
1336
- Dragging contained in overflow DIV for IE6
1337
- Modified fullcalendar.css
1338
	- for right-to-left support
1339
	- for variable start-of-week
1340
	- for IE6 resizing bug
1341
	- for THEAD and TBODY (in 1.0, just used TBODY, restructured in 1.1)
1342
	- IF UPGRADING FROM FULLCALENDAR 1.0, YOU MUST UPGRADE FULLCALENDAR.CSS