Skip to content

Commit

Permalink
final touches for 1.4.5
Browse files Browse the repository at this point in the history
  • Loading branch information
arshaw committed Feb 22, 2010
1 parent 229c9c3 commit deed716
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 7 deletions.
12 changes: 12 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down
File renamed without changes.
File renamed without changes.
5 changes: 3 additions & 2 deletions tests/loader.js
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down
5 changes: 3 additions & 2 deletions tests/methods.html
Original file line number Diff line number Diff line change
Expand Up @@ -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>
2 changes: 1 addition & 1 deletion tests/options.html
Original file line number Diff line number Diff line change
Expand Up @@ -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>
1 change: 0 additions & 1 deletion tests/plain.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
var y = date.getFullYear();

$('#calendar').fullCalendar({
//defaultView: 'agendaWeek',
header: {
left: 'prev,next today',
center: 'title',
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.4.4
1.4.5

0 comments on commit deed716

Please sign in to comment.