diff --git a/changelog.txt b/changelog.txt index 1c5f667..372886b 100644 --- a/changelog.txt +++ b/changelog.txt @@ -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 diff --git a/src/jquery/jquery-1.4.1.min.js b/tests/jquery-1.4.1.min.js similarity index 100% rename from src/jquery/jquery-1.4.1.min.js rename to tests/jquery-1.4.1.min.js diff --git a/src/jquery/jquery-uncompressed.js b/tests/jquery-uncompressed.js similarity index 100% rename from src/jquery/jquery-uncompressed.js rename to tests/jquery-uncompressed.js diff --git a/tests/loader.js b/tests/loader.js index 40204a6..d61fe2a 100644 --- a/tests/loader.js +++ b/tests/loader.js @@ -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'); diff --git a/tests/methods.html b/tests/methods.html index e689b73..78d5bb4 100644 --- a/tests/methods.html +++ b/tests/methods.html @@ -174,11 +174,12 @@ - + +

-
+
diff --git a/tests/options.html b/tests/options.html index 970c559..e364eaf 100644 --- a/tests/options.html +++ b/tests/options.html @@ -129,6 +129,6 @@ -
+
diff --git a/tests/plain.html b/tests/plain.html index f8e4c6a..13e6a84 100644 --- a/tests/plain.html +++ b/tests/plain.html @@ -13,7 +13,6 @@ var y = date.getFullYear(); $('#calendar').fullCalendar({ - //defaultView: 'agendaWeek', header: { left: 'prev,next today', center: 'title', diff --git a/version.txt b/version.txt index 1c99cf0..e516bb9 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.4.4 +1.4.5