changelog.txt 29 KB

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