github.com/apremalal/vamps-core@v1.0.1-0.20161221121535-d430b56ec174/server/webapps/app/base/plugins/bootstrap-datepicker/CHANGELOG.md (about)

     1  Changelog
     2  =========
     3  
     4  1.3.0
     5  -----
     6  
     7  New features:
     8  * Bootstrap 3 support.  Added build files `build/build_standalone3.less` and `build/build3.less`, and source files `less/datepicker3.less` and `css/datepicker3.css` (built from `build_standalone3.less`).
     9  * Multi-date functionality.  This required rethinking several areas of the picker:
    10      * The internals have been modified to be completely multidate-centric.
    11      * Attributes and methods availabel on events have changed, but the old attributes and functions will still work.
    12      * Keyboard navigation has been revamped, as it didn't work at all properly with multidate selection.
    13      * The picker now explicitly supports "no selected date".
    14  
    15  Non-API changes:
    16  * Keyboard navigation has been changed.  See `docs/keyboard.rst`.
    17  * Empty pickers in a range picker setup will be populated with the first date selected by the user to make finding the next date easier.
    18  
    19  Bug squashed:
    20  * Jan 1, 1970 is now highlighted when selected
    21  * `touchstart` added to document-bound picker-closing events (alongside `mousedown`)
    22  * Fixed a display bug with component add-on icons being vertically higher than they should have been.
    23  * Input is refocused after clicking the picker.
    24  * `changeDate` event is triggered when `setDate` is called.
    25  
    26  Locale changes:
    27  * Added Ukrainian, Belgium-Dutch, Welsh, Galician, Vietnamese, and Azerbaijani
    28  * `clear` for German, Danish, Italian, and Romanian
    29  * Fixed `weekStart` and `format` for Norwegian
    30  * `weekStart` and `format` for Georgian
    31  * Tweaks for Latvian, French, Vietnamese, Swedish, and Croatian
    32  * De-duplicated Ukrainian files from `uk` and `ua` to just `ua`
    33  
    34  Repository changes:
    35  * Documentation has been moved from the base `README.md` file to the `docs/` folder, and been re-written to use sphinx docs.  The docs are now viewable online at http://bootstrap-datepicker.readthedocs.org/.  The [gh-pages](http://eternicode.github.io/bootstrap-datepicker/) branch has been reduced to the sandbox demo.
    36  * Changed the js file header to point at repo/demo/docs urls instead of eyecon.ro
    37  * The css files are now the output of the standalone build scripts instead of `build/build.less` etc.
    38  * `composer.json` now supports component-installer
    39  * Added [JSHint](http://www.jshint.com/docs/) and [JSCS](https://github.com/mdevils/node-jscs) configurations
    40  
    41  
    42  1.2.0
    43  -----
    44  
    45  New features:
    46  * Google Closure Compiler Compatibility
    47  * Smart orientation by default, and explicit picker orientation with the `orientation` option
    48  * Text inside the picker is no longer user-selectable
    49  * Packagist/Composer support (I think...)
    50  * No longer depends on glyphicons for arrows
    51  * `clearDate` event added, fired when the date is cleared
    52  
    53  Bug squashed:
    54  * `noConflict` fixed
    55  * Fix for large years causing an infinite loop in date parsing
    56  * Fixed cases where `changeYear` and `changeMonth` events were not being triggered
    57  * `component.js` moved to `bower.js`
    58  * Falsey values for `startDate` and `endDate` translate to `-Infinity` and `Infinity`, respectively (effectively, falsey values mean "no bounds")
    59  * Fixed `autoclose` for non-input, non-component elements
    60  * Fixed 50% param in `mix()` less function -- expands compatibility with less compilers
    61  * Fixed `update` method to update the selected date
    62  * `beforeShowDay` was getting UTC dates, now it gets local dates (all dates that developers are given should be in local time, not UTC).
    63  * `startDate` and `endDate` were a bit confused when given `new Date()` -- they would not allow today to be selected (the range should be inclusive), they would change whether it was selectable based on local time, etc.  These quirks should be fixed now.  They both also now expect local dates (which will then be time-zeroed and converted to UTC).
    64  * Fixed selected date not being automatically constrained to the specified range when `setStartDate` and `setEndDate` were called.
    65  * No longer uses jQuery's `.size()` (deprecated in favor of `.length`)
    66  * `changeDate` triggered during manual user input
    67  * `change` event fired when input value changed, it wasn't in some cases
    68  
    69  Locale changes:
    70  * Added Arabic, Norwegian, Georgian
    71  * `clear` for French
    72  * `today` and `clear` for Bahasa
    73  * `today` and `clear` for Portuguese (both `pt` and `pt-BR`)
    74  * `format` for Turkish
    75  * `format` and `weekStart` for Swedish
    76  * `format` and `weekStart` for Simplified Chinese; `today`, `format`, and `weekStart` for Traditional Chinese
    77  * Fixed typo in Serbian latin (`rs-latin`)
    78  * More appropriate use of Traditional Chinese habit in `zh-TW`
    79  
    80  
    81  1.1.3
    82  ----------
    83  
    84  Clicking the clear button now triggers the input's `change` and datepicker's `changeDate` events.
    85  Fixed a bug that broke the event-attached `format` function.
    86  
    87  
    88  1.1.2
    89  ----------
    90  
    91  Botched release, no change from 1.1.1
    92  
    93  
    94  1.1.1
    95  ----------
    96  
    97  Fixes a bug when setting startDate or endDate during initialization.
    98  
    99  
   100  1.1.0
   101  ----------
   102  
   103  New features:
   104  * Date range picker.
   105  * Data API / noConflict.
   106  * `getDate` and `setDate` methods.
   107  * `format` method for events; this allows you to easily format the `date` associated with the event.
   108  * New options:
   109    * `beforeShowDay` option: a dev-provided function that can enable/disable dates, add css classes, and add tooltips.
   110    * `clearBtn`, a button for resetting the picker.
   111  
   112  Internal changes:
   113  * Cleaner and more reliable method for extracting options from all potential sources (defaults, locale overrides, data-attrs, and instantiation options, in that order).  This also populates `$.fn.datepicker.defaults` with the default values, and uses this hash as the actual source of defaults, meaning you can globally change the default value for a given option.
   114  
   115  Bugs squashed:
   116  * Resolved a conflict with bootstrap's native `.switch` class.
   117  * Fixed a bug with components where they would be stuck with a stale value when editing the value manually.
   118  * The `date` attributes on events are now local dates instead of internal UTC dates.
   119  * Separate `Date` objects for internal selected and view date references.
   120  * Clicking multiple times inside inputs no longer hides the picker.
   121  
   122  Minor improvements:
   123  * Better text color for highlighted "today" date.
   124  * Last year in decade view now marked as "new" instead of "old".
   125  * Formats now properly handle trailing separators.
   126  
   127  Locale changes:
   128  * Added Albanian, Estonian, and Macedonian
   129  * Added `weekStart` for Russian
   130  * Added `weekStart` and `format` for Finnish
   131  
   132  Potentially backward-incompatible changes:
   133  * Options revamp:
   134    * This fixes bugs in the correlation of some data-attrs to their associated option names.  If you use `data-date-weekstart`, `data-date-startdate`, or `data-date-enddate`, you should update these to `data-date-week-start`, `data-date-start-date`, or `data-date-end-date`, respectively.
   135    * All options for datepicker are now properties on the datepicker's `o` property; options are no longer stored on the Datepicker instance itself.  If you have code that accesses options stored on the datepicker instance (eg, `datepicker.format`), you will need to update it to access those options via the `o` property (eg, `datepicker.o.format`).  "Raw" options are available via the `_o` property.
   136  
   137  1.0.2
   138  ----------
   139  
   140  Small optimizations release
   141  
   142  * Reduced the number of times `update` is called on initialization.
   143  * Datepicker now detaches the picker dropdown when it is hidden, and appends it when shown.  This removes the picker from the DOM when it is not in use.
   144  * No longer listens to document/window events unless picker is visible.
   145  
   146  v1.0.1
   147  ------
   148  
   149  * Support for [Bower](http://twitter.github.com/bower/)
   150  * Component pickers are now aligned under the input, not the add-on element.
   151  * Japanese locale now has "today" and "format".
   152  * "remove" method removes `.data().date` if the datepicker is on a non-input.
   153  * Events on initialized elements are no longer blocked from bubbling up the DOM (jQuery.live et al can now catch the events).
   154  * Component triggers now include `.btn` in addition to `.add-on`.
   155  * Updates to README contents.
   156  
   157  v1.0.0
   158  ------
   159  
   160  Initial release:
   161  
   162  * format option
   163  * weekStart option
   164  * calendarWeeks option
   165  * startDate / endDate options
   166  * daysOfWeekDisabled option
   167  * autoclose option
   168  * startView / mnViewMode options
   169  * todayBtn / todayHighlight options
   170  * keyboardNavigation option
   171  * language option
   172  * forceParse option