Browse Source

Add 1.12.3 changelog

zhixin 7 years ago
parent
commit
812063034c
2 changed files with 24 additions and 4 deletions
  1. 23 3
      CHANGELOG.md
  2. 1 1
      src/bootstrap-table.js

+ 23 - 3
CHANGELOG.md

@@ -3,10 +3,30 @@ ChangeLog
 
 
 ### 1.12.3
 ### 1.12.3
 
 
-- feat(js): rewrite bootstrap-table, locales and extensions to ES6
-- feat(js): extensions add `Bootstrap v4.0` support
+- feat(js): rewrite bootstrap-table to ES6
+- feat(locale): add fi-FI.js locale
+- feat(filter-control): add `created-controls.bs.table` event to filter-control
+- feat(export extension): rewrite export extension to ES6
+- feat(export extension): export extension support bootstrap v4
+- feat(export extension): add `exportTable` method
+- feat(toolbar extension): rewrite toolbar extension to ES6
+- feat(toolbar extension): toolbar extension supports bootstrap v4
+- feat(toolbar extension): add server sidePagination support
+- feat(resizable extension): new resizable extension version 2.0.0
+- feat(editable extension): allow different x-editable configuration per table row
+- feat(addrbar extension): add addrbar extension
+
+- fix(js): fix #1769, improve check/uncheck methods
+- fix(js): fix #2485, selections bugs
+- fix(js): fix #1983, cookie with pageNumber and searchText bug
+- fix(js): fix #3696, can't search data with formatter
+- fix(js): fix #2545, customSearch support data attribute
+- fix(js): fix older bootstrap version bug
 - fix(css): fix #1848, remove toolbar line-height
 - fix(css): fix #1848, remove toolbar line-height
-- fix(resizable extension): remove `fixed` option from resizable extension
+- fix(css): limit fullscreen CSS rule scope
+- fix(editable extension): fix #1819, #2072, editable formatter bug
+- fix(extension): fix #3720, fix #3682, bug with export extension together
+- fix(extension): remove lick-edit-row and flat-json extensions
 
 
 ### 1.12.2
 ### 1.12.2
 
 

+ 1 - 1
src/bootstrap-table.js

@@ -10,7 +10,7 @@
 
 
   let bootstrapVersion = 3
   let bootstrapVersion = 3
   try {
   try {
-    var rawVersion = $.fn.dropdown.Constructor.VERSION
+    const rawVersion = $.fn.dropdown.Constructor.VERSION
 
 
     // Only try to parse VERSION if is is defined.
     // Only try to parse VERSION if is is defined.
     // It is undefined in older versions of Bootstrap (tested with 3.1.1).
     // It is undefined in older versions of Bootstrap (tested with 3.1.1).