fullcalendar/changelog.txt

121 lines
4.0 KiB
Plaintext
Raw Normal View History

2009-05-11 04:58:02 +02:00
2009-09-15 08:19:43 +02:00
version 1.3 (9/15/09)
- different 'views': month/basicWeek/basicDay
- more flexible 'header' system for buttons
- themable by jQuery UI themes
- resizable events (require jQuery UI resizable plugin)
- reworked options/API to support idea of multiple views / be consistent with jQuery UI datepicker
- refactoring of entire codebase for future of development
- broken into different JS files, assembled w/ build scripts
- new test suite for new features, uses firebug-lite
- Options
- added:
date
defaultView
aspectRatio
disableResizing
monthNames (use instead of $.fullCalendar.monthNames)
monthNamesShort (use instead of $.fullCalendar.monthAbbrevs)
dayNames (use instead of $.fullCalendar.dayNames)
dayNamesShort (use instead of $.fullCalendar.dayAbbrevs)
theme
buttonText
buttonIcons
- superseded:
editable/disableDragging <- draggable
weekMode <- fixedWeeks
columnFormat <- abbrevDayHeadings
header <- buttons/title
dragOpacity <- eventDragOpacity
dragRevertDuration <- eventRevertDuration
firstDay <- weekStart
isRTL <- rightToLeft
- removed:
showTime (use 'allDay' CalEvent property instead)
- Triggered Actions
- added:
eventResizeStart
eventResizeStop
eventResize
- superseded:
viewDisplay <- monthDisplay
windowResize <- resize
- CalEvent Properties
- superseded:
allDay <- showTime
editable <- draggable
- 'end' is now INCLUSIVE when allDay=true
- Methods:
- added:
renderEvent
- superseded:
prev <- prevMonth
next <- nextMonth
moveDate <- prevYear/nextYear
rerenderEvents/refetchEvents <- refresh
removeEvents <- removeEvent
clientEvents <- getEventsByID
- Utilities:
- 'formatDate' format string completely changed (inspired by jqueryui datepicker + datejs)
- 'formatDates' added to support date-ranges
- gcalFeed Options:
- superseded:
draggable <- editable
2009-06-30 08:03:15 +02:00
version 1.2.1 (6/29/09)
- bugfixes
- allows and corrects invalid end dates for events
- doesn't throw an error in IE while rendering when display:none
- fixed 'loading' callback when used w/ multiple addEventSource calls
- gcal className can now be an array
2009-05-31 22:56:02 +02:00
version 1.2 (5/31/09)
- expanded API
- 'className' CalEvent attribute
- 'source' CalEvent attribute
- dynamically get/add/remove/update events of current month
- locale improvements: change month/day name text
- better date formatting ($.fullCalendar.formatDate)
- multiple 'event sources' allowed
- dynamically add/remove event sources
2009-06-01 06:51:34 +02:00
- options for prevYear and nextYear buttons
2009-05-31 22:56:02 +02:00
- docs have been reworked (include addition of Google Calendar docs)
- changed behavior of parseDate for number strings
(now interpets as unix timestamp, not MS times)
- bugfixes
- rightToLeft month start bug
- off-by-one errors with month formatting commands
- events from previous months sticking when clicking prev/next quickly
- Google Calendar API changed to work w/ multiple event sources
- can also provide 'className' and 'draggable' options
2009-06-01 06:51:34 +02:00
- date utilties moved from $ to $.fullCalendar
- more documentation in source code
2009-05-31 22:56:02 +02:00
- minified version of fullcalendar.js
- test suit (available from svn)
2009-06-01 06:51:34 +02:00
- top buttons now use <button> w/ an inner <span> for better css cusomization
- thus CSS has changed. IF UPGRADING FROM PREVIOUS VERSIONS,
UPGRADE YOUR FULLCALENDAR.CSS FILE!!!
2009-05-17 19:41:48 +02:00
2009-05-11 04:58:02 +02:00
version 1.1 (5/10/09)
- Added the following options:
- weekStart
- rightToLeft
- titleFormat
- timeFormat
- cacheParam
- resize
- Fixed rendering bugs
- Opera 9.25 (events placement & window resizing)
- IE6 (window resizing)
- Optimized window resizing for ALL browsers
- Events on same day now sorted by start time (but first by timespan)
- Correct z-index when dragging
- Dragging contained in overflow DIV for IE6
- Modified fullcalendar.css
- for right-to-left support
- for variable start-of-week
- for IE6 resizing bug
- for THEAD and TBODY (in 1.0, just used TBODY, restructured in 1.1)
- IF UPGRADING FROM FULLCALENDAR 1.0, YOU MUST UPGRADE FULLCALENDAR.CSS
!!!!!!!!!!!