Browse Source

Pre 1.13.2

zhixin 7 years ago
parent
commit
78749fed5f
9 changed files with 23 additions and 7 deletions
  1. 0 1
      .travis.yml
  2. 1 0
      CHANGELOG.md
  3. 1 1
      _config.yml
  4. 1 1
      bootstrap-table.jquery.json
  5. 1 1
      deploy.sh
  6. 1 1
      package.json
  7. 16 0
      site/news.md
  8. 1 1
      src/bootstrap-table.css
  9. 1 1
      src/bootstrap-table.js

+ 0 - 1
.travis.yml

@@ -7,7 +7,6 @@ script: bash ./deploy.sh
 branches:
   only:
   - master
-  - develop
 
 env:
   global:

+ 1 - 0
CHANGELOG.md

@@ -10,6 +10,7 @@ ChangeLog
 - **New(filter-control extension):** Added `clearFilterControl` method in order to clear all filter controls.
 - **New(docs)** Added algolia search.
 - **Update(js):** Fixed sort column shows hidden rows in `server` side pagination bug.
+- **Update(js):** Fixed `scrollTo` bug.
 - **Update(css):** Fixed no-bordered problem of bootstrap v4.
 - **Update(filter-control extension):** Added bootstrap v4 icon support.
 

+ 1 - 1
_config.yml

@@ -27,7 +27,7 @@ algolia:
   index_name:     bootstrap-table
 
 # Custom variables
-current_version:  1.13.1
+current_version:  1.13.2
 title:            "Bootstrap Table"
 description:      "An extended Bootstrap Table with radio, checkbox, sort, pagination, and other added features."
 authors:          "Zhixin Wen, and Bootstrap Table contributors"

+ 1 - 1
bootstrap-table.jquery.json

@@ -1,6 +1,6 @@
 {
   "name": "bootstrap-table",
-  "version": "1.13.1",
+  "version": "1.13.2",
   "title": "Bootstrap Table",
   "description": "An extended Bootstrap table with radio, checkbox, sort, pagination, and other added features.",
   "author": {

+ 1 - 1
deploy.sh

@@ -1,7 +1,7 @@
 #!/bin/bash
 set -e # Exit with nonzero exit code if anything fails
 
-SOURCE_BRANCH="develop"
+SOURCE_BRANCH="master"
 TARGET_BRANCH="gh-pages"
 
 function doCompile {

+ 1 - 1
package.json

@@ -1,7 +1,7 @@
 {
   "name": "bootstrap-table",
   "description": "An extended Bootstrap table with radio, checkbox, sort, pagination, and other added features. (supports twitter bootstrap v2 and v3).",
-  "version": "1.13.1",
+  "version": "1.13.2",
   "main": "./dist/bootstrap-table.js",
   "directories": {
     "doc": "docs"

+ 16 - 0
site/news.md

@@ -4,6 +4,22 @@ title: News
 description: News and announcements for all things Bootstrap Table, including new releases.
 ---
 
+## Bootstrap Table 1.13.2
+
+<span class="post-date">18 Jan 2019</span>
+
+- **New(js):** Added `paginationSuccessivelySize`, `paginationPagesBySide` and `paginationUseIntermediate` pagination options.
+- **New(cookie extension):** Rewrited cookie extension to ES6.
+- **New(cookie extension):** Saved `filterBy` method.
+- **New(filter-control extension):** Added `placeholder` as a empty option to the select controls.
+- **New(filter-control extension):** Added `clearFilterControl` method in order to clear all filter controls.
+- **New(docs)** Added algolia search.
+- **Update(js):** Fixed sort column shows hidden rows in `server` side pagination bug.
+- **Update(js):** Fixed `scrollTo` bug.
+- **Update(css):** Fixed no-bordered problem of bootstrap v4.
+- **Update(filter-control extension):** Added bootstrap v4 icon support.
+
+
 ## New Website for Bootstrap v4
 
 <span class="post-date">10 Jan 2019</span>

+ 1 - 1
src/bootstrap-table.css

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

+ 1 - 1
src/bootstrap-table.js

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