Skip to content

Commit

Permalink
3.1.0 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
nolimits4web committed Jul 14, 2015
1 parent b0379b9 commit 65c3789
Show file tree
Hide file tree
Showing 15 changed files with 3,739 additions and 144 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Change Log

## Swiper 3.1.0 - Released on July 14, 2015
* Accessibility (a11y)
* Fixed issue with wrong buttons labels
* Added support for pagination bullets
* New accessibility parameter for pagination label `paginationBulletMessage: 'Go to slide {{index}}'`
* Controler
* New parameter `controlBy` which can be 'slide' (by default) or 'container'. Defines a way how to control another slider: slide by slide or depending on all slides/container (like before)
* Now controllers in `controlBy: 'slide'` (default) mode will respect grid of each other
* Pagination
* New `paginationElement` parameter defines which HTML tag will be use to represent single pagination bullet. By default it is `span`
* New `roundLengths` parameter (by default is `false`) to round values of slides width and height to prevent blurry texts on usual resolution screens
* New `slidesOffsetBefore: 0` and `slidesOffsetAfter: 0` (in px) parameters to add additional slide offset within a container
* Correct calculation for slides size when use CSS padding on `.swiper-container`
* Fixed issue with not working onResize handler when swipes are locked
* Fixed issue with "jumping" effect when you disable `onlyExternal` during touchmove
* Fixed issue when slider goes to previos slide from last slide after window resize
* Added new `swiper.jquery.umd.js` version for the environment where both Swiper and jQuery included as modules
* Minor fixes

## Swiper 3.0.8 - Released on June 14, 2015
* Fixed issue with wrong active index and callbacks in Fade effect
* New mousewheel parameters:
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"url": "https://github.com/nolimits4web/Swiper.git"
},
"description": "Most modern mobile touch slider and framework with hardware accelerated transitions",
"version": "3.0.8",
"version": "3.1.0",
"author": "Vladimir Kharlampidi",
"homepage": "http://www.idangero.us/swiper/",
"keywords": ["swiper", "swipe", "slider", "touch", "ios", "mobile", "cordova", "phonegap", "app", "framework", "carousel", "gallery"],
Expand Down
14 changes: 12 additions & 2 deletions dist/css/swiper.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Swiper 3.0.8
* Swiper 3.1.0
* Most modern mobile touch slider and framework with hardware accelerated transitions
*
* http://www.idangero.us/swiper/
Expand All @@ -10,7 +10,7 @@
*
* Licensed under MIT
*
* Released on: June 14, 2015
* Released on: July 14, 2015
*/
.swiper-container {
margin: 0 auto;
Expand Down Expand Up @@ -180,6 +180,16 @@
background: #000;
opacity: 0.2;
}
button.swiper-pagination-bullet {
border: none;
margin: 0;
padding: 0;
box-shadow: none;
-moz-appearance: none;
-ms-appearance: none;
-webkit-appearance: none;
appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
cursor: pointer;
}
Expand Down
6 changes: 3 additions & 3 deletions dist/css/swiper.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/js/maps/swiper.jquery.min.js.map

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/js/maps/swiper.jquery.umd.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/js/maps/swiper.min.js.map

Large diffs are not rendered by default.

Loading

0 comments on commit 65c3789

Please sign in to comment.