Browse Source

Update to 1.15.1

zhixin 6 years ago
parent
commit
6906375885
8 changed files with 15 additions and 11 deletions
  1. 4 2
      CHANGELOG.md
  2. 1 1
      _config.yml
  3. 1 1
      bootstrap-table.jquery.json
  4. 1 1
      package.json
  5. 5 3
      site/news.md
  6. 1 1
      src/bootstrap-table.js
  7. 1 1
      src/bootstrap-table.scss
  8. 1 1
      src/constants/index.js

+ 4 - 2
CHANGELOG.md

@@ -1,11 +1,11 @@
 ChangeLog
 ---------
 
-### 1.15.0
+### 1.15.1
 
 #### Core
 
-- **New:** Added virtual scroll to support large data sets.
+- **New:** Added `virtualScroll` and `virtualScrollItemHeight` options to support large data.
 - **New:** Added vue component support.
 - **New:** Added support comparisons search(<, >, <=, =<, >=, =>).
 - **New:** Added `detailViewByClick` table option and `detailFormatter` column option.
@@ -70,9 +70,11 @@ ChangeLog
 - **Update(filter-control):** Fixed loading screen with filter control.
 - **Update(filter-control):** Fixed overwriting the searchText bug.
 - **Update(filter-control):** Fixed filtering does not work json sub-object.
+- **Update(filter-control):** Fixed select filter with formatter.
 - **Update(multiple-sort):** Fixed multiple-sort does not work with data-query-params bug.
 - **Update(page-jump-to):** Fixed `click` bug when paginationVAlign is 'both'.
 - **Update(reorder-columns):** Fixed reorder columns cannot work bug.
+- **Update(reorder-columns):** Fix search and columns bug after reorder columns.
 - **Update(treegrid):** Fixed treegrid cannot work bug.
 
 ### 1.14.2

+ 1 - 1
_config.yml

@@ -27,7 +27,7 @@ algolia:
   index_name:     bootstrap-table
 
 # Custom variables
-current_version:  1.15.0
+current_version:  1.15.1
 title:            "Bootstrap Table"
 description:      "An extended table to the integration with some of the most widely used CSS frameworks. (Supports Bootstrap, Semantic UI, Bulma, Material Design, Foundation)"
 authors:          "Zhixin Wen, and Bootstrap Table contributors"

+ 1 - 1
bootstrap-table.jquery.json

@@ -1,6 +1,6 @@
 {
   "name": "bootstrap-table",
-  "version": "1.15.0",
+  "version": "1.15.1",
   "title": "Bootstrap Table",
   "description": "An extended table to integration with some of the most widely used CSS frameworks. (Supports Bootstrap, Semantic UI, Bulma, Material Design, Foundation)",
   "author": {

+ 1 - 1
package.json

@@ -1,7 +1,7 @@
 {
   "name": "bootstrap-table",
   "description": "An extended table to integration with some of the most widely used CSS frameworks. (Supports Bootstrap, Semantic UI, Bulma, Material Design, Foundation)",
-  "version": "1.15.0",
+  "version": "1.15.1",
   "main": "./dist/bootstrap-table.min.js",
   "directories": {
     "doc": "site"

+ 5 - 3
site/news.md

@@ -4,13 +4,13 @@ title: News
 description: News and announcements for all things Bootstrap Table, including new releases.
 ---
 
-## Bootstrap Table 1.15.0
+## Bootstrap Table 1.15.1
 
-<span class="post-date">22 Jun 2019</span>
+<span class="post-date">24 Jun 2019</span>
 
 #### Core
 
-- **New:** Added virtual scroll to support large data sets.
+- **New:** Added `virtualScroll` and `virtualScrollItemHeight` options to support large data.
 - **New:** Added vue component support.
 - **New:** Added support comparisons search(<, >, <=, =<, >=, =>).
 - **New:** Added `detailViewByClick` table option and `detailFormatter` column option.
@@ -75,9 +75,11 @@ description: News and announcements for all things Bootstrap Table, including ne
 - **Update(filter-control):** Fixed loading screen with filter control.
 - **Update(filter-control):** Fixed overwriting the searchText bug.
 - **Update(filter-control):** Fixed filtering does not work json sub-object.
+- **Update(filter-control):** Fixed select filter with formatter.
 - **Update(multiple-sort):** Fixed multiple-sort does not work with data-query-params bug.
 - **Update(page-jump-to):** Fixed `click` bug when paginationVAlign is 'both'.
 - **Update(reorder-columns):** Fixed reorder columns cannot work bug.
+- **Update(reorder-columns):** Fix search and columns bug after reorder columns.
 - **Update(treegrid):** Fixed treegrid cannot work bug.
 
 ## Bootstrap Table 1.14.2

+ 1 - 1
src/bootstrap-table.js

@@ -1,6 +1,6 @@
 /**
  * @author zhixin wen <wenzhixin2010@gmail.com>
- * version: 1.15.0
+ * version: 1.15.1
  * https://github.com/wenzhixin/bootstrap-table/
  */
 

+ 1 - 1
src/bootstrap-table.scss

@@ -1,6 +1,6 @@
 /**
  * @author zhixin wen <wenzhixin2010@gmail.com>
- * version: 1.15.0
+ * version: 1.15.1
  * https://github.com/wenzhixin/bootstrap-table/
  */
 

+ 1 - 1
src/constants/index.js

@@ -1,4 +1,4 @@
-const VERSION = '1.15.0'
+const VERSION = '1.15.1'
 
 let bootstrapVersion = 4
 try {