CHANGELOG.txt 37 KB

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