final touches for 1.4.5

v1.4.x v1.4.5
Adam Shaw 2010-02-21 20:30:11 -08:00
parent 229c9c31d8
commit deed716b67
8 changed files with 20 additions and 7 deletions

View File

@ -1,4 +1,16 @@
version 1.4.5 (2/21/09)
- lazyFetching option, which can force the calendar to fetch events on every view/date change
- scroll state of agenda views are preserved when switching back to view
- bugfixes
- calling methods on an uninitialized fullcalendar throws error
- IE6/7 bug where an entire view becomes invisible (issue 320)
- error when rendering a hidden calendar (in jquery ui tabs for example) in IE (issue 340)
- interconnected bugs related to calendar resizing and scrollbars
- when switching views or clicking prev/next, calendar would "blink" (issue 333)
- liquid-width calendar's events shifted (depending on initial height of browser) (issue 341)
- more robust underlying algorithm for calendar resizing
version 1.4.4 (2/3/10)
- optimized event rendering in all views (events render in 1/10 the time)
- gotoDate() does not force the calendar to unnecessarily rerender

View File

@ -63,8 +63,9 @@ else if (_build) {
includeJS('../build/fullcalendar/jquery/ui.resizable.js');
}
else {
//includeJS('../src/jquery/jquery-1.4.1.min.js');
includeJS('../src/jquery/jquery-uncompressed.js');
//includeJS('jquery-1.4.1.min.js');
//includeJS('jquery-uncompressed.js');
includeJS('../src/jquery/jquery.js');
includeJS('../src/jquery/ui.core.js');
includeJS('../src/jquery/ui.draggable.js');
includeJS('../src/jquery/ui.resizable.js');

View File

@ -174,11 +174,12 @@
<button onclick="getView()">getView</button>
<button onclick="getDate()">getDate</button>
<button onclick="optionGetter()">option getter</button>
<button onclick="cal.width(1100)">change size</button>
<button onclick="cal.width(1100)">change width (passive)</button>
<button onclick="cal.fullCalendar('render')">render</button>
<button onclick="cal.fullCalendar('option', 'height', 1000)">change height</button>
</p>
<div id='loading' style='position:absolute;display:none'>loading...</div>
<div id='calendar' style='width:900px;margin:20px auto 0;font-family:arial'></div>
<div id='calendar' style='width:70%;margin:20px auto 0;font-family:arial'></div>
</body>
</html>

View File

@ -129,6 +129,6 @@
</script>
</head>
<body style='font-size:12px'>
<div id='calendar' style='width:900px;margin:20px auto 0;font-family:arial'></div>
<div id='calendar' style='width:70%;margin:20px auto 0;font-family:arial'></div>
</body>
</html>

View File

@ -13,7 +13,6 @@
var y = date.getFullYear();
$('#calendar').fullCalendar({
//defaultView: 'agendaWeek',
header: {
left: 'prev,next today',
center: 'title',

View File

@ -1 +1 @@
1.4.4
1.4.5