fullcalendar-wrapper-rails 2.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,32 @@
1
+ /*!
2
+ * FullCalendar v2.0.1 Print Stylesheet
3
+ * Docs & License: http://arshaw.com/fullcalendar/
4
+ * (c) 2013 Adam Shaw
5
+ */
6
+
7
+ /*
8
+ * Include this stylesheet on your page to get a more printer-friendly calendar.
9
+ * When including this stylesheet, use the media='print' attribute of the <link> tag.
10
+ * Make sure to include this stylesheet IN ADDITION to the regular fullcalendar.css.
11
+ */
12
+
13
+
14
+ /* Events
15
+ -----------------------------------------------------*/
16
+
17
+ .fc-event {
18
+ background: #fff !important;
19
+ color: #000 !important;
20
+ }
21
+
22
+ /* for vertical events */
23
+
24
+ .fc-event-bg {
25
+ display: none !important;
26
+ }
27
+
28
+ .fc-event .ui-resizable-handle {
29
+ display: none !important;
30
+ }
31
+
32
+
@@ -0,0 +1,589 @@
1
+
2
+ v2.0.1 (2014-06-15)
3
+ -------------------
4
+
5
+ - wrongfully triggering a windowResize when resizing an agenda view event ([1116])
6
+ - `this` values in event drag-n-drop/resize handlers consistently the DOM node ([1177])
7
+ - `displayEventEnd` - v2 workaround to force display of an end time ([2090])
8
+ - don't modify passed-in eventSource items ([954])
9
+ - destroy method now removes fc-ltr class ([2033])
10
+ - weeks of last/next month still visible when weekends are hidden ([2095])
11
+ - fixed memory leak when destroying calendar with selectable/droppable ([2137])
12
+ - `delta` parameters reintroduced in `eventDrop` and `eventResize` handlers ([2156])
13
+ - Icelandic language ([2180])
14
+ - Bahasa Indonesia language ([PR 172])
15
+
16
+ [1116]: https://code.google.com/p/fullcalendar/issues/detail?id=1116
17
+ [1177]: https://code.google.com/p/fullcalendar/issues/detail?id=1177
18
+ [2090]: https://code.google.com/p/fullcalendar/issues/detail?id=2090
19
+ [954]: https://code.google.com/p/fullcalendar/issues/detail?id=954
20
+ [2033]: https://code.google.com/p/fullcalendar/issues/detail?id=2033
21
+ [2095]: https://code.google.com/p/fullcalendar/issues/detail?id=2095
22
+ [2137]: https://code.google.com/p/fullcalendar/issues/detail?id=2137
23
+ [2156]: https://code.google.com/p/fullcalendar/issues/detail?id=2156
24
+ [2180]: https://code.google.com/p/fullcalendar/issues/detail?id=2180
25
+ [PR 172]: https://github.com/arshaw/fullcalendar/pull/172
26
+
27
+
28
+ v2.0.0 (2014-06-01)
29
+ -------------------
30
+
31
+ Internationalization support, timezone support, and [MomentJS] integration. Extensive changes, many
32
+ of which are backwards incompatible.
33
+
34
+ [Full list of changes][Upgrading-to-v2] | [Affected Issues][Date-Milestone]
35
+
36
+ An automated testing framework has been set up ([Karma] + [Jasmine]) and tests have been written
37
+ which cover about half of FullCalendar's functionality. Special thanks to @incre-d, @vidbina, and
38
+ @sirrocco for the help.
39
+
40
+ In addition, the main development repo has been repurposed to also include the built distributable
41
+ JS/CSS for the project and will serve as the new [Bower] endpoint.
42
+
43
+ [MomentJS]: http://momentjs.com/
44
+ [Upgrading-to-v2]: http://arshaw.com/fullcalendar/wiki/Upgrading-to-v2/
45
+ [Date-Milestone]: https://code.google.com/p/fullcalendar/issues/list?can=1&q=milestone%3Ddate
46
+ [Karma]: http://karma-runner.github.io/
47
+ [Jasmine]: http://jasmine.github.io/
48
+ [Bower]: http://bower.io/
49
+
50
+
51
+ v1.6.4 (2013-09-01)
52
+ -------------------
53
+
54
+ - better algorithm for positioning timed agenda events ([1115])
55
+ - `slotEventOverlap` option to tweak timed agenda event overlapping ([218])
56
+ - selection bug when slot height is customized ([1035])
57
+ - supply view argument in `loading` callback ([1018])
58
+ - fixed week number not displaying in agenda views ([1951])
59
+ - fixed fullCalendar not initializing with no options ([1356])
60
+ - NPM's `package.json`, no more warnings or errors ([1762])
61
+ - building the bower component should output `bower.json` instead of `component.json` ([PR 125])
62
+ - use bower internally for fetching new versions of jQuery and jQuery UI
63
+
64
+ [1115]: https://code.google.com/p/fullcalendar/issues/detail?id=1115
65
+ [218]: https://code.google.com/p/fullcalendar/issues/detail?id=218
66
+ [1035]: https://code.google.com/p/fullcalendar/issues/detail?id=1035
67
+ [1018]: https://code.google.com/p/fullcalendar/issues/detail?id=1018
68
+ [1951]: https://code.google.com/p/fullcalendar/issues/detail?id=1951
69
+ [1356]: https://code.google.com/p/fullcalendar/issues/detail?id=1356
70
+ [1762]: https://code.google.com/p/fullcalendar/issues/detail?id=1762
71
+ [PR 125]: https://github.com/arshaw/fullcalendar/pull/125
72
+
73
+
74
+ v1.6.3 (2013-08-10)
75
+ -------------------
76
+
77
+ - `viewRender` callback ([PR 15])
78
+ - `viewDestroy` callback ([PR 15])
79
+ - `eventDestroy` callback ([PR 111])
80
+ - `handleWindowResize` option ([PR 54])
81
+ - `eventStartEditable`/`startEditable` options ([PR 49])
82
+ - `eventDurationEditable`/`durationEditable` options ([PR 49])
83
+ - specify function for `$.ajax` `data` parameter for JSON event sources ([PR 59])
84
+ - fixed bug with agenda event dropping in wrong column ([PR 55])
85
+ - easier event element z-index customization ([PR 58])
86
+ - classNames on past/future days ([PR 88])
87
+ - allow `null`/`undefined` event titles ([PR 84])
88
+ - small optimize for agenda event rendering ([PR 56])
89
+ - deprecated:
90
+ - `viewDisplay`
91
+ - `disableDragging`
92
+ - `disableResizing`
93
+ - bundled with latest jQuery (1.10.2) and jQuery UI (1.10.3)
94
+
95
+ [PR 15]: https://github.com/arshaw/fullcalendar/pull/15
96
+ [PR 111]: https://github.com/arshaw/fullcalendar/pull/111
97
+ [PR 54]: https://github.com/arshaw/fullcalendar/pull/54
98
+ [PR 49]: https://github.com/arshaw/fullcalendar/pull/49
99
+ [PR 59]: https://github.com/arshaw/fullcalendar/pull/59
100
+ [PR 55]: https://github.com/arshaw/fullcalendar/pull/55
101
+ [PR 58]: https://github.com/arshaw/fullcalendar/pull/58
102
+ [PR 88]: https://github.com/arshaw/fullcalendar/pull/88
103
+ [PR 84]: https://github.com/arshaw/fullcalendar/pull/84
104
+ [PR 56]: https://github.com/arshaw/fullcalendar/pull/56
105
+
106
+
107
+ v1.6.2 (2013-07-18)
108
+ -------------------
109
+
110
+ - `hiddenDays` option ([686])
111
+ - bugfix: when `eventRender` returns `false`, incorrect stacking of events ([762])
112
+ - bugfix: couldn't change `event.backgroundImage` when calling `updateEvent` (thx @stephenharris)
113
+
114
+ [686]: https://code.google.com/p/fullcalendar/issues/detail?id=686
115
+ [762]: https://code.google.com/p/fullcalendar/issues/detail?id=762
116
+
117
+
118
+ v1.6.1 (2013-04-14)
119
+ -------------------
120
+
121
+ - fixed event inner content overflow bug ([1783])
122
+ - fixed table header className bug [1772]
123
+ - removed text-shadow on events (better for general use, thx @tkrotoff)
124
+
125
+ [1783]: https://code.google.com/p/fullcalendar/issues/detail?id=1783
126
+ [1772]: https://code.google.com/p/fullcalendar/issues/detail?id=1772
127
+
128
+
129
+ v1.6.0 (2013-03-18)
130
+ -------------------
131
+
132
+ - visual facelift, with bootstrap-inspired buttons and colors
133
+ - simplified HTML/CSS for events and buttons
134
+ - `dayRender`, for modifying a day cell ([191], thx @althaus)
135
+ - week numbers on side of calendar ([295])
136
+ - `weekNumber`
137
+ - `weekNumberCalculation`
138
+ - `weekNumberTitle`
139
+ - `W` formatting variable
140
+ - finer snapping granularity for agenda view events ([495], thx @ms-doodle-com)
141
+ - `eventAfterAllRender` ([753], thx @pdrakeweb)
142
+ - `eventDataTransform` (thx @joeyspo)
143
+ - `data-date` attributes on cells (thx @Jae)
144
+ - expose `$.fullCalendar.dateFormatters`
145
+ - when clicking fast on buttons, prevent text selection
146
+ - bundled with latest jQuery (1.9.1) and jQuery UI (1.10.2)
147
+ - Grunt/Lumbar build system for internal development
148
+ - build for Bower package manager
149
+ - build for jQuery plugin site
150
+
151
+ [191]: https://code.google.com/p/fullcalendar/issues/detail?id=191
152
+ [295]: https://code.google.com/p/fullcalendar/issues/detail?id=295
153
+ [495]: https://code.google.com/p/fullcalendar/issues/detail?id=495
154
+ [753]: https://code.google.com/p/fullcalendar/issues/detail?id=753
155
+
156
+
157
+ v1.5.4 (2012-09-05)
158
+ -------------------
159
+
160
+ - made compatible with jQuery 1.8.* (thx @archaeron)
161
+ - bundled with jQuery 1.8.1 and jQuery UI 1.8.23
162
+
163
+
164
+ v1.5.3 (2012-02-06)
165
+ -------------------
166
+
167
+ - fixed dragging issue with jQuery UI 1.8.16 ([1168])
168
+ - bundled with jQuery 1.7.1 and jQuery UI 1.8.17
169
+
170
+ [1168]: https://code.google.com/p/fullcalendar/issues/detail?id=1168
171
+
172
+
173
+ v1.5.2 (2011-08-21)
174
+ -------------------
175
+
176
+ - correctly process UTC "Z" ISO8601 date strings ([750])
177
+
178
+ [750]: https://code.google.com/p/fullcalendar/issues/detail?id=750
179
+
180
+
181
+ v1.5.1 (2011-04-09)
182
+ -------------------
183
+
184
+ - more flexible ISO8601 date parsing ([814])
185
+ - more flexible parsing of UNIX timestamps ([826])
186
+ - FullCalendar now buildable from source on a Mac ([795])
187
+ - FullCalendar QA'd in FF4 ([883])
188
+ - upgraded to jQuery 1.5.2 (which supports IE9) and jQuery UI 1.8.11
189
+
190
+ [814]: https://code.google.com/p/fullcalendar/issues/detail?id=814
191
+ [826]: https://code.google.com/p/fullcalendar/issues/detail?id=826
192
+ [795]: https://code.google.com/p/fullcalendar/issues/detail?id=795
193
+ [883]: https://code.google.com/p/fullcalendar/issues/detail?id=883
194
+
195
+
196
+ v1.5 (2011-03-19)
197
+ -----------------
198
+
199
+ - slicker default styling for buttons
200
+ - reworked a lot of the calendar's HTML and accompanying CSS (solves [327] and [395])
201
+ - more printer-friendly (fullcalendar-print.css)
202
+ - fullcalendar now inherits styles from jquery-ui themes differently.
203
+ styles for buttons are distinct from styles for calendar cells.
204
+ (solves [299])
205
+ - can now color events through FullCalendar options and Event-Object properties ([117])
206
+ THIS IS NOW THE PREFERRED METHOD OF COLORING EVENTS (as opposed to using className and CSS)
207
+ - FullCalendar options:
208
+ - eventColor (changes both background and border)
209
+ - eventBackgroundColor
210
+ - eventBorderColor
211
+ - eventTextColor
212
+ - Event-Object options:
213
+ - color (changes both background and border)
214
+ - backgroundColor
215
+ - borderColor
216
+ - textColor
217
+ - can now specify an event source as an *object* with a `url` property (json feed) or
218
+ an `events` property (function or array) with additional properties that will
219
+ be applied to the entire event source:
220
+ - color (changes both background and border)
221
+ - backgroudColor
222
+ - borderColor
223
+ - textColor
224
+ - className
225
+ - editable
226
+ - allDayDefault
227
+ - ignoreTimezone
228
+ - startParam (for a feed)
229
+ - endParam (for a feed)
230
+ - ANY OF THE JQUERY $.ajax OPTIONS
231
+ allows for easily changing from GET to POST and sending additional parameters ([386])
232
+ allows for easily attaching ajax handlers such as `error` ([754])
233
+ allows for turning caching on ([355])
234
+ - Google Calendar feeds are now specified differently:
235
+ - specify a simple string of your feed's URL
236
+ - specify an *object* with a `url` property of your feed's URL.
237
+ you can include any of the new Event-Source options in this object.
238
+ - the old `$.fullCalendar.gcalFeed` method still works
239
+ - no more IE7 SSL popup ([504])
240
+ - remove `cacheParam` - use json event source `cache` option instead
241
+ - latest jquery/jquery-ui
242
+
243
+ [327]: https://code.google.com/p/fullcalendar/issues/detail?id=327
244
+ [395]: https://code.google.com/p/fullcalendar/issues/detail?id=395
245
+ [299]: https://code.google.com/p/fullcalendar/issues/detail?id=299
246
+ [117]: https://code.google.com/p/fullcalendar/issues/detail?id=117
247
+ [386]: https://code.google.com/p/fullcalendar/issues/detail?id=386
248
+ [754]: https://code.google.com/p/fullcalendar/issues/detail?id=754
249
+ [355]: https://code.google.com/p/fullcalendar/issues/detail?id=355
250
+ [504]: https://code.google.com/p/fullcalendar/issues/detail?id=504
251
+
252
+
253
+ v1.4.11 (2011-02-22)
254
+ --------------------
255
+
256
+ - fixed rerenderEvents bug ([790])
257
+ - fixed bug with faulty dragging of events from all-day slot in agenda views
258
+ - bundled with jquery 1.5 and jquery-ui 1.8.9
259
+
260
+ [790]: https://code.google.com/p/fullcalendar/issues/detail?id=790
261
+
262
+
263
+ v1.4.10 (2011-01-02)
264
+ --------------------
265
+
266
+ - fixed bug with resizing event to different week in 5-day month view ([740])
267
+ - fixed bug with events not sticking after a removeEvents call ([757])
268
+ - fixed bug with underlying parseTime method, and other uses of parseInt ([688])
269
+
270
+ [740]: https://code.google.com/p/fullcalendar/issues/detail?id=740
271
+ [757]: https://code.google.com/p/fullcalendar/issues/detail?id=757
272
+ [688]: https://code.google.com/p/fullcalendar/issues/detail?id=688
273
+
274
+
275
+ v1.4.9 (2010-11-16)
276
+ -------------------
277
+
278
+ - new algorithm for vertically stacking events ([111])
279
+ - resizing an event to a different week ([306])
280
+ - bug: some events not rendered with consecutive calls to addEventSource ([679])
281
+
282
+ [111]: https://code.google.com/p/fullcalendar/issues/detail?id=111
283
+ [306]: https://code.google.com/p/fullcalendar/issues/detail?id=306
284
+ [679]: https://code.google.com/p/fullcalendar/issues/detail?id=679
285
+
286
+
287
+ v1.4.8 (2010-10-16)
288
+ -------------------
289
+
290
+ - ignoreTimezone option (set to `false` to process UTC offsets in ISO8601 dates)
291
+ - bugfixes
292
+ - event refetching not being called under certain conditions ([417], [554])
293
+ - event refetching being called multiple times under certain conditions ([586], [616])
294
+ - selection cannot be triggered by right mouse button ([558])
295
+ - agenda view left axis sized incorrectly ([465])
296
+ - IE js error when calendar is too narrow ([517])
297
+ - agenda view looks strange when no scrollbars ([235])
298
+ - improved parsing of ISO8601 dates with UTC offsets
299
+ - $.fullCalendar.version
300
+ - an internal refactor of the code, for easier future development and modularity
301
+
302
+ [417]: https://code.google.com/p/fullcalendar/issues/detail?id=417
303
+ [554]: https://code.google.com/p/fullcalendar/issues/detail?id=554
304
+ [586]: https://code.google.com/p/fullcalendar/issues/detail?id=586
305
+ [616]: https://code.google.com/p/fullcalendar/issues/detail?id=616
306
+ [558]: https://code.google.com/p/fullcalendar/issues/detail?id=558
307
+ [465]: https://code.google.com/p/fullcalendar/issues/detail?id=465
308
+ [517]: https://code.google.com/p/fullcalendar/issues/detail?id=517
309
+ [235]: https://code.google.com/p/fullcalendar/issues/detail?id=235
310
+
311
+
312
+ v1.4.7 (2010-07-05)
313
+ -------------------
314
+
315
+ - "dropping" external objects onto the calendar
316
+ - droppable (boolean, to turn on/off)
317
+ - dropAccept (to filter which events the calendar will accept)
318
+ - drop (trigger)
319
+ - selectable options can now be specified with a View Option Hash
320
+ - bugfixes
321
+ - dragged & reverted events having wrong time text ([406])
322
+ - bug rendering events that have an endtime with seconds, but no hours/minutes ([477])
323
+ - gotoDate date overflow bug ([429])
324
+ - wrong date reported when clicking on edge of last column in agenda views [412]
325
+ - support newlines in event titles
326
+ - select/unselect callbacks now passes native js event
327
+
328
+ [406]: https://code.google.com/p/fullcalendar/issues/detail?id=406
329
+ [477]: https://code.google.com/p/fullcalendar/issues/detail?id=477
330
+ [429]: https://code.google.com/p/fullcalendar/issues/detail?id=429
331
+ [412]: https://code.google.com/p/fullcalendar/issues/detail?id=412
332
+
333
+
334
+ v1.4.6 (2010-05-31)
335
+ -------------------
336
+
337
+ - "selecting" days or timeslots
338
+ - options: selectable, selectHelper, unselectAuto, unselectCancel
339
+ - callbacks: select, unselect
340
+ - methods: select, unselect
341
+ - when dragging an event, the highlighting reflects the duration of the event
342
+ - code compressing by Google Closure Compiler
343
+ - bundled with jQuery 1.4.2 and jQuery UI 1.8.1
344
+
345
+
346
+ v1.4.5 (2010-02-21)
347
+ -------------------
348
+
349
+ - lazyFetching option, which can force the calendar to fetch events on every view/date change
350
+ - scroll state of agenda views are preserved when switching back to view
351
+ - bugfixes
352
+ - calling methods on an uninitialized fullcalendar throws error
353
+ - IE6/7 bug where an entire view becomes invisible ([320])
354
+ - error when rendering a hidden calendar (in jquery ui tabs for example) in IE ([340])
355
+ - interconnected bugs related to calendar resizing and scrollbars
356
+ - when switching views or clicking prev/next, calendar would "blink" ([333])
357
+ - liquid-width calendar's events shifted (depending on initial height of browser) ([341])
358
+ - more robust underlying algorithm for calendar resizing
359
+
360
+ [320]: https://code.google.com/p/fullcalendar/issues/detail?id=320
361
+ [340]: https://code.google.com/p/fullcalendar/issues/detail?id=340
362
+ [333]: https://code.google.com/p/fullcalendar/issues/detail?id=333
363
+ [341]: https://code.google.com/p/fullcalendar/issues/detail?id=341
364
+
365
+
366
+ v1.4.4 (2010-02-03)
367
+ -------------------
368
+
369
+ - optimized event rendering in all views (events render in 1/10 the time)
370
+ - gotoDate() does not force the calendar to unnecessarily rerender
371
+ - render() method now correctly readjusts height
372
+
373
+
374
+ v1.4.3 (2009-12-22)
375
+ -------------------
376
+
377
+ - added destroy method
378
+ - Google Calendar event pages respect currentTimezone
379
+ - caching now handled by jQuery's ajax
380
+ - protection from setting aspectRatio to zero
381
+ - bugfixes
382
+ - parseISO8601 and DST caused certain events to display day before
383
+ - button positioning problem in IE6
384
+ - ajax event source removed after recently being added, events still displayed
385
+ - event not displayed when end is an empty string
386
+ - dynamically setting calendar height when no events have been fetched, throws error
387
+
388
+
389
+ v1.4.2 (2009-12-02)
390
+ -------------------
391
+
392
+ - eventAfterRender trigger
393
+ - getDate & getView methods
394
+ - height & contentHeight options (explicitly sets the pixel height)
395
+ - minTime & maxTime options (restricts shown hours in agenda view)
396
+ - getters [for all options] and setters [for height, contentHeight, and aspectRatio ONLY! stay tuned..]
397
+ - render method now readjusts calendar's size
398
+ - bugfixes
399
+ - lightbox scripts that use iframes (like fancybox)
400
+ - day-of-week classNames were off when firstDay=1
401
+ - guaranteed space on right side of agenda events (even when stacked)
402
+ - accepts ISO8601 dates with a space (instead of 'T')
403
+
404
+
405
+ v1.4.1 (2009-10-31)
406
+ -------------------
407
+
408
+ - can exclude weekends with new 'weekends' option
409
+ - gcal feed 'currentTimezone' option
410
+ - bugfixes
411
+ - year/month/date option sometimes wouldn't set correctly (depending on current date)
412
+ - daylight savings issue caused agenda views to start at 1am (for BST users)
413
+ - cleanup of gcal.js code
414
+
415
+
416
+ v1.4 (2009-10-19)
417
+ -----------------
418
+
419
+ - agendaWeek and agendaDay views
420
+ - added some options for agenda views:
421
+ - allDaySlot
422
+ - allDayText
423
+ - firstHour
424
+ - slotMinutes
425
+ - defaultEventMinutes
426
+ - axisFormat
427
+ - modified some existing options/triggers to work with agenda views:
428
+ - dragOpacity and timeFormat can now accept a "View Hash" (a new concept)
429
+ - dayClick now has an allDay parameter
430
+ - eventDrop now has an an allDay parameter
431
+ (this will affect those who use revertFunc, adjust parameter list)
432
+ - added 'prevYear' and 'nextYear' for buttons in header
433
+ - minor change for theme users, ui-state-hover not applied to active/inactive buttons
434
+ - added event-color-changing example in docs
435
+ - better defaults for right-to-left themed button icons
436
+
437
+
438
+ v1.3.2 (2009-10-13)
439
+ -------------------
440
+
441
+ - Bugfixes (please upgrade from 1.3.1!)
442
+ - squashed potential infinite loop when addMonths and addDays
443
+ is called with an invalid date
444
+ - $.fullCalendar.parseDate() now correctly parses IETF format
445
+ - when switching views, the 'today' button sticks inactive, fixed
446
+ - gotoDate now can accept a single Date argument
447
+ - documentation for changes in 1.3.1 and 1.3.2 now on website
448
+
449
+
450
+ v1.3.1 (2009-09-30)
451
+ -------------------
452
+
453
+ - Important Bugfixes (please upgrade from 1.3!)
454
+ - When current date was late in the month, for long months, and prev/next buttons
455
+ were clicked in month-view, some months would be skipped/repeated
456
+ - In certain time zones, daylight savings time would cause certain days
457
+ to be misnumbered in month-view
458
+ - Subtle change in way week interval is chosen when switching from month to basicWeek/basicDay view
459
+ - Added 'allDayDefault' option
460
+ - Added 'changeView' and 'render' methods
461
+
462
+
463
+ v1.3 (2009-09-21)
464
+ -----------------
465
+
466
+ - different 'views': month/basicWeek/basicDay
467
+ - more flexible 'header' system for buttons
468
+ - themable by jQuery UI themes
469
+ - resizable events (require jQuery UI resizable plugin)
470
+ - rescoped & rewritten CSS, enhanced default look
471
+ - cleaner css & rendering techniques for right-to-left
472
+ - reworked options & API to support multiple views / be consistent with jQuery UI
473
+ - refactoring of entire codebase
474
+ - broken into different JS & CSS files, assembled w/ build scripts
475
+ - new test suite for new features, uses firebug-lite
476
+ - refactored docs
477
+ - Options
478
+ - + date
479
+ - + defaultView
480
+ - + aspectRatio
481
+ - + disableResizing
482
+ - + monthNames (use instead of $.fullCalendar.monthNames)
483
+ - + monthNamesShort (use instead of $.fullCalendar.monthAbbrevs)
484
+ - + dayNames (use instead of $.fullCalendar.dayNames)
485
+ - + dayNamesShort (use instead of $.fullCalendar.dayAbbrevs)
486
+ - + theme
487
+ - + buttonText
488
+ - + buttonIcons
489
+ - x draggable -> editable/disableDragging
490
+ - x fixedWeeks -> weekMode
491
+ - x abbrevDayHeadings -> columnFormat
492
+ - x buttons/title -> header
493
+ - x eventDragOpacity -> dragOpacity
494
+ - x eventRevertDuration -> dragRevertDuration
495
+ - x weekStart -> firstDay
496
+ - x rightToLeft -> isRTL
497
+ - x showTime (use 'allDay' CalEvent property instead)
498
+ - Triggered Actions
499
+ - + eventResizeStart
500
+ - + eventResizeStop
501
+ - + eventResize
502
+ - x monthDisplay -> viewDisplay
503
+ - x resize -> windowResize
504
+ - 'eventDrop' params changed, can revert if ajax cuts out
505
+ - CalEvent Properties
506
+ - x showTime -> allDay
507
+ - x draggable -> editable
508
+ - 'end' is now INCLUSIVE when allDay=true
509
+ - 'url' now produces a real <a> tag, more native clicking/tab behavior
510
+ - Methods:
511
+ - + renderEvent
512
+ - x prevMonth -> prev
513
+ - x nextMonth -> next
514
+ - x prevYear/nextYear -> moveDate
515
+ - x refresh -> rerenderEvents/refetchEvents
516
+ - x removeEvent -> removeEvents
517
+ - x getEventsByID -> clientEvents
518
+ - Utilities:
519
+ - 'formatDate' format string completely changed (inspired by jQuery UI datepicker + datejs)
520
+ - 'formatDates' added to support date-ranges
521
+ - Google Calendar Options:
522
+ - x draggable -> editable
523
+ - Bugfixes
524
+ - gcal extension fetched 25 results max, now fetches all
525
+
526
+
527
+ v1.2.1 (2009-06-29)
528
+ -------------------
529
+
530
+ - bugfixes
531
+ - allows and corrects invalid end dates for events
532
+ - doesn't throw an error in IE while rendering when display:none
533
+ - fixed 'loading' callback when used w/ multiple addEventSource calls
534
+ - gcal className can now be an array
535
+
536
+
537
+ v1.2 (2009-05-31)
538
+ -----------------
539
+
540
+ - expanded API
541
+ - 'className' CalEvent attribute
542
+ - 'source' CalEvent attribute
543
+ - dynamically get/add/remove/update events of current month
544
+ - locale improvements: change month/day name text
545
+ - better date formatting ($.fullCalendar.formatDate)
546
+ - multiple 'event sources' allowed
547
+ - dynamically add/remove event sources
548
+ - options for prevYear and nextYear buttons
549
+ - docs have been reworked (include addition of Google Calendar docs)
550
+ - changed behavior of parseDate for number strings
551
+ (now interpets as unix timestamp, not MS times)
552
+ - bugfixes
553
+ - rightToLeft month start bug
554
+ - off-by-one errors with month formatting commands
555
+ - events from previous months sticking when clicking prev/next quickly
556
+ - Google Calendar API changed to work w/ multiple event sources
557
+ - can also provide 'className' and 'draggable' options
558
+ - date utilties moved from $ to $.fullCalendar
559
+ - more documentation in source code
560
+ - minified version of fullcalendar.js
561
+ - test suit (available from svn)
562
+ - top buttons now use `<button>` w/ an inner `<span>` for better css cusomization
563
+ - thus CSS has changed. IF UPGRADING FROM PREVIOUS VERSIONS,
564
+ UPGRADE YOUR FULLCALENDAR.CSS FILE
565
+
566
+
567
+ v1.1 (2009-05-10)
568
+ -----------------
569
+
570
+ - Added the following options:
571
+ - weekStart
572
+ - rightToLeft
573
+ - titleFormat
574
+ - timeFormat
575
+ - cacheParam
576
+ - resize
577
+ - Fixed rendering bugs
578
+ - Opera 9.25 (events placement & window resizing)
579
+ - IE6 (window resizing)
580
+ - Optimized window resizing for ALL browsers
581
+ - Events on same day now sorted by start time (but first by timespan)
582
+ - Correct z-index when dragging
583
+ - Dragging contained in overflow DIV for IE6
584
+ - Modified fullcalendar.css
585
+ - for right-to-left support
586
+ - for variable start-of-week
587
+ - for IE6 resizing bug
588
+ - for THEAD and TBODY (in 1.0, just used TBODY, restructured in 1.1)
589
+ - IF UPGRADING FROM FULLCALENDAR 1.0, YOU MUST UPGRADE FULLCALENDAR.CSS