changelog.txt 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318
  1. version 1.5.3 (2/6/12)
  2. - fixed dragging issue with jQuery UI 1.8.16 (issue 1168)
  3. - bundled with jQuery 1.7.1 and jQuery UI 1.8.17
  4. version 1.5.2 (8/21/11)
  5. - correctly process UTC "Z" ISO8601 date strings (issue 750)
  6. version 1.5.1 (4/9/11)
  7. - more flexible ISO8601 date parsing (issue 814)
  8. - more flexible parsing of UNIX timestamps (issue 826)
  9. - FullCalendar now buildable from source on a Mac (issue 795)
  10. - FullCalendar QA'd in FF4 (issue 883)
  11. - upgraded to jQuery 1.5.2 (which supports IE9) and jQuery UI 1.8.11
  12. version 1.5 (3/19/11)
  13. - slicker default styling for buttons
  14. - reworked a lot of the calendar's HTML and accompanying CSS
  15. (solves issues 327 and 395)
  16. - more printer-friendly (fullcalendar-print.css)
  17. - fullcalendar now inherits styles from jquery-ui themes differently.
  18. styles for buttons are distinct from styles for calendar cells.
  19. (solves issue 299)
  20. - can now color events through FullCalendar options and Event-Object properties (issue 117)
  21. THIS IS NOW THE PREFERRED METHOD OF COLORING EVENTS (as opposed to using className and CSS)
  22. - FullCalendar options:
  23. - eventColor (changes both background and border)
  24. - eventBackgroundColor
  25. - eventBorderColor
  26. - eventTextColor
  27. - Event-Object options:
  28. - color (changes both background and border)
  29. - backgroundColor
  30. - borderColor
  31. - textColor
  32. - can now specify an event source as an *object* with a `url` property (json feed) or
  33. an `events` property (function or array) with additional properties that will
  34. be applied to the entire event source:
  35. - color (changes both background and border)
  36. - backgroudColor
  37. - borderColor
  38. - textColor
  39. - className
  40. - editable
  41. - allDayDefault
  42. - ignoreTimezone
  43. - startParam (for a feed)
  44. - endParam (for a feed)
  45. - ANY OF THE JQUERY $.ajax OPTIONS
  46. allows for easily changing from GET to POST and sending additional parameters (issue 386)
  47. allows for easily attaching ajax handlers such as `error` (issue 754)
  48. allows for turning caching on (issue 355)
  49. - Google Calendar feeds are now specified differently:
  50. - specify a simple string of your feed's URL
  51. - specify an *object* with a `url` property of your feed's URL.
  52. you can include any of the new Event-Source options in this object.
  53. - the old `$.fullCalendar.gcalFeed` method still works
  54. - no more IE7 SSL popup (issue 504)
  55. - remove `cacheParam` - use json event source `cache` option instead
  56. - latest jquery/jquery-ui
  57. version 1.4.11 (2/22/11)
  58. - fixed rerenderEvents bug (issue 790)
  59. - fixed bug with faulty dragging of events from all-day slot in agenda views
  60. - bundled with jquery 1.5 and jquery-ui 1.8.9
  61. version 1.4.10 (1/2/11)
  62. - fixed bug with resizing event to different week in 5-day month view (issue 740)
  63. - fixed bug with events not sticking after a removeEvents call (issue 757)
  64. - fixed bug with underlying parseTime method, and other uses of parseInt (issue 688)
  65. version 1.4.9 (11/16/10)
  66. - new algorithm for vertically stacking events (issue 111)
  67. - resizing an event to a different week (issue 306)
  68. - bug: some events not rendered with consecutive calls to addEventSource (issue 679)
  69. version 1.4.8 (10/16/10)
  70. - ignoreTimezone option (set to `false` to process UTC offsets in ISO8601 dates)
  71. - bugfixes
  72. - event refetching not being called under certain conditions (issues 417, 554)
  73. - event refetching being called multiple times under certain conditions (issues 586, 616)
  74. - selection cannot be triggered by right mouse button (issue 558)
  75. - agenda view left axis sized incorrectly (issue 465)
  76. - IE js error when calendar is too narrow (issue 517)
  77. - agenda view looks strange when no scrollbars (issue 235)
  78. - improved parsing of ISO8601 dates with UTC offsets
  79. - $.fullCalendar.version
  80. - an internal refactor of the code, for easier future development and modularity
  81. version 1.4.7 (7/5/10)
  82. - "dropping" external objects onto the calendar
  83. - droppable (boolean, to turn on/off)
  84. - dropAccept (to filter which events the calendar will accept)
  85. - drop (trigger)
  86. - selectable options can now be specified with a View Option Hash
  87. - bugfixes
  88. - dragged & reverted events having wrong time text (issue 406)
  89. - bug rendering events that have an endtime with seconds, but no hours/minutes (issue 477)
  90. - gotoDate date overflow bug (issue 429)
  91. - wrong date reported when clicking on edge of last column in agenda views (412)
  92. - support newlines in event titles
  93. - select/unselect callbacks now passes native js event
  94. version 1.4.6 (5/31/10)
  95. - "selecting" days or timeslots
  96. - options: selectable, selectHelper, unselectAuto, unselectCancel
  97. - callbacks: select, unselect
  98. - methods: select, unselect
  99. - when dragging an event, the highlighting reflects the duration of the event
  100. - code compressing by Google Closure Compiler
  101. - bundled with jQuery 1.4.2 and jQuery UI 1.8.1
  102. version 1.4.5 (2/21/10)
  103. - lazyFetching option, which can force the calendar to fetch events on every view/date change
  104. - scroll state of agenda views are preserved when switching back to view
  105. - bugfixes
  106. - calling methods on an uninitialized fullcalendar throws error
  107. - IE6/7 bug where an entire view becomes invisible (issue 320)
  108. - error when rendering a hidden calendar (in jquery ui tabs for example) in IE (issue 340)
  109. - interconnected bugs related to calendar resizing and scrollbars
  110. - when switching views or clicking prev/next, calendar would "blink" (issue 333)
  111. - liquid-width calendar's events shifted (depending on initial height of browser) (issue 341)
  112. - more robust underlying algorithm for calendar resizing
  113. version 1.4.4 (2/3/10)
  114. - optimized event rendering in all views (events render in 1/10 the time)
  115. - gotoDate() does not force the calendar to unnecessarily rerender
  116. - render() method now correctly readjusts height
  117. version 1.4.3 (12/22/09)
  118. - added destroy method
  119. - Google Calendar event pages respect currentTimezone
  120. - caching now handled by jQuery's ajax
  121. - protection from setting aspectRatio to zero
  122. - bugfixes
  123. - parseISO8601 and DST caused certain events to display day before
  124. - button positioning problem in IE6
  125. - ajax event source removed after recently being added, events still displayed
  126. - event not displayed when end is an empty string
  127. - dynamically setting calendar height when no events have been fetched, throws error
  128. version 1.4.2 (12/02/09)
  129. - eventAfterRender trigger
  130. - getDate & getView methods
  131. - height & contentHeight options (explicitly sets the pixel height)
  132. - minTime & maxTime options (restricts shown hours in agenda view)
  133. - getters [for all options] and setters [for height, contentHeight, and aspectRatio ONLY! stay tuned..]
  134. - render method now readjusts calendar's size
  135. - bugfixes
  136. - lightbox scripts that use iframes (like fancybox)
  137. - day-of-week classNames were off when firstDay=1
  138. - guaranteed space on right side of agenda events (even when stacked)
  139. - accepts ISO8601 dates with a space (instead of 'T')
  140. version 1.4.1 (10/31/09)
  141. - can exclude weekends with new 'weekends' option
  142. - gcal feed 'currentTimezone' option
  143. - bugfixes
  144. - year/month/date option sometimes wouldn't set correctly (depending on current date)
  145. - daylight savings issue caused agenda views to start at 1am (for BST users)
  146. - cleanup of gcal.js code
  147. version 1.4 (10/19/09)
  148. - agendaWeek and agendaDay views
  149. - added some options for agenda views:
  150. - allDaySlot
  151. - allDayText
  152. - firstHour
  153. - slotMinutes
  154. - defaultEventMinutes
  155. - axisFormat
  156. - modified some existing options/triggers to work with agenda views:
  157. - dragOpacity and timeFormat can now accept a "View Hash" (a new concept)
  158. - dayClick now has an allDay parameter
  159. - eventDrop now has an an allDay parameter
  160. (this will affect those who use revertFunc, adjust parameter list)
  161. - added 'prevYear' and 'nextYear' for buttons in header
  162. - minor change for theme users, ui-state-hover not applied to active/inactive buttons
  163. - added event-color-changing example in docs
  164. - better defaults for right-to-left themed button icons
  165. version 1.3.2 (10/13/09)
  166. - Bugfixes (please upgrade from 1.3.1!)
  167. - squashed potential infinite loop when addMonths and addDays
  168. is called with an invalid date
  169. - $.fullCalendar.parseDate() now correctly parses IETF format
  170. - when switching views, the 'today' button sticks inactive, fixed
  171. - gotoDate now can accept a single Date argument
  172. - documentation for changes in 1.3.1 and 1.3.2 now on website
  173. version 1.3.1 (9/30/09)
  174. - Important Bugfixes (please upgrade from 1.3!)
  175. - When current date was late in the month, for long months, and prev/next buttons
  176. were clicked in month-view, some months would be skipped/repeated
  177. - In certain time zones, daylight savings time would cause certain days
  178. to be misnumbered in month-view
  179. - Subtle change in way week interval is chosen when switching from month to basicWeek/basicDay view
  180. - Added 'allDayDefault' option
  181. - Added 'changeView' and 'render' methods
  182. version 1.3 (9/21/09)
  183. - different 'views': month/basicWeek/basicDay
  184. - more flexible 'header' system for buttons
  185. - themable by jQuery UI themes
  186. - resizable events (require jQuery UI resizable plugin)
  187. - rescoped & rewritten CSS, enhanced default look
  188. - cleaner css & rendering techniques for right-to-left
  189. - reworked options & API to support multiple views / be consistent with jQuery UI
  190. - refactoring of entire codebase
  191. - broken into different JS & CSS files, assembled w/ build scripts
  192. - new test suite for new features, uses firebug-lite
  193. - refactored docs
  194. - Options
  195. + date
  196. + defaultView
  197. + aspectRatio
  198. + disableResizing
  199. + monthNames (use instead of $.fullCalendar.monthNames)
  200. + monthNamesShort (use instead of $.fullCalendar.monthAbbrevs)
  201. + dayNames (use instead of $.fullCalendar.dayNames)
  202. + dayNamesShort (use instead of $.fullCalendar.dayAbbrevs)
  203. + theme
  204. + buttonText
  205. + buttonIcons
  206. x draggable -> editable/disableDragging
  207. x fixedWeeks -> weekMode
  208. x abbrevDayHeadings -> columnFormat
  209. x buttons/title -> header
  210. x eventDragOpacity -> dragOpacity
  211. x eventRevertDuration -> dragRevertDuration
  212. x weekStart -> firstDay
  213. x rightToLeft -> isRTL
  214. x showTime (use 'allDay' CalEvent property instead)
  215. - Triggered Actions
  216. + eventResizeStart
  217. + eventResizeStop
  218. + eventResize
  219. x monthDisplay -> viewDisplay
  220. x resize -> windowResize
  221. 'eventDrop' params changed, can revert if ajax cuts out
  222. - CalEvent Properties
  223. x showTime -> allDay
  224. x draggable -> editable
  225. 'end' is now INCLUSIVE when allDay=true
  226. 'url' now produces a real <a> tag, more native clicking/tab behavior
  227. - Methods:
  228. + renderEvent
  229. x prevMonth -> prev
  230. x nextMonth -> next
  231. x prevYear/nextYear -> moveDate
  232. x refresh -> rerenderEvents/refetchEvents
  233. x removeEvent -> removeEvents
  234. x getEventsByID -> clientEvents
  235. - Utilities:
  236. 'formatDate' format string completely changed (inspired by jQuery UI datepicker + datejs)
  237. 'formatDates' added to support date-ranges
  238. - Google Calendar Options:
  239. x draggable -> editable
  240. - Bugfixes
  241. - gcal extension fetched 25 results max, now fetches all
  242. version 1.2.1 (6/29/09)
  243. - bugfixes
  244. - allows and corrects invalid end dates for events
  245. - doesn't throw an error in IE while rendering when display:none
  246. - fixed 'loading' callback when used w/ multiple addEventSource calls
  247. - gcal className can now be an array
  248. version 1.2 (5/31/09)
  249. - expanded API
  250. - 'className' CalEvent attribute
  251. - 'source' CalEvent attribute
  252. - dynamically get/add/remove/update events of current month
  253. - locale improvements: change month/day name text
  254. - better date formatting ($.fullCalendar.formatDate)
  255. - multiple 'event sources' allowed
  256. - dynamically add/remove event sources
  257. - options for prevYear and nextYear buttons
  258. - docs have been reworked (include addition of Google Calendar docs)
  259. - changed behavior of parseDate for number strings
  260. (now interpets as unix timestamp, not MS times)
  261. - bugfixes
  262. - rightToLeft month start bug
  263. - off-by-one errors with month formatting commands
  264. - events from previous months sticking when clicking prev/next quickly
  265. - Google Calendar API changed to work w/ multiple event sources
  266. - can also provide 'className' and 'draggable' options
  267. - date utilties moved from $ to $.fullCalendar
  268. - more documentation in source code
  269. - minified version of fullcalendar.js
  270. - test suit (available from svn)
  271. - top buttons now use <button> w/ an inner <span> for better css cusomization
  272. - thus CSS has changed. IF UPGRADING FROM PREVIOUS VERSIONS,
  273. UPGRADE YOUR FULLCALENDAR.CSS FILE!!!
  274. version 1.1 (5/10/09)
  275. - Added the following options:
  276. - weekStart
  277. - rightToLeft
  278. - titleFormat
  279. - timeFormat
  280. - cacheParam
  281. - resize
  282. - Fixed rendering bugs
  283. - Opera 9.25 (events placement & window resizing)
  284. - IE6 (window resizing)
  285. - Optimized window resizing for ALL browsers
  286. - Events on same day now sorted by start time (but first by timespan)
  287. - Correct z-index when dragging
  288. - Dragging contained in overflow DIV for IE6
  289. - Modified fullcalendar.css
  290. - for right-to-left support
  291. - for variable start-of-week
  292. - for IE6 resizing bug
  293. - for THEAD and TBODY (in 1.0, just used TBODY, restructured in 1.1)
  294. - IF UPGRADING FROM FULLCALENDAR 1.0, YOU MUST UPGRADE FULLCALENDAR.CSS
  295. !!!!!!!!!!!