Skip to content

Commit

Permalink
1.5.0
Browse files Browse the repository at this point in the history
Fixes #96 #97
  • Loading branch information
Antonio-Laguna committed Sep 16, 2017
1 parent eef9d75 commit 13fe06d
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 12 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 1.5.0 (2017-09-16)

- [[#96]((https://github.com/webslides/webslides/issues/96))] Using Shift Space now allows to go to previous slide.
- [[#97]((https://github.com/webslides/webslides/issues/97))] Fixing CTRL/CMD + F not allowing to search.
- Dependencies updated.

# 1.4.2 (2017-09-12)

- Fixed `.toc` class. (Regression from Sass)
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "webslides",
"version": "1.4.2",
"version": "1.5.0",
"description": "Making HTML presentations easy",
"main": "static/js/webslides.js",
"repository": {
Expand Down Expand Up @@ -67,7 +67,7 @@
"lint:css": "sass-lint -v -f stylish",
"dev": "webpack-dev-server",
"test": "jest && codecov",
"preversion": "npm test",
"preversion": "npm jest",
"postversion": "npm run build && git add -A static && node ./zip-release.js && git push && git push --tags"
},
"release": {
Expand Down
4 changes: 2 additions & 2 deletions static/css/webslides.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*!
* Name: WebSlides
* Version: 1.4.2
* Date: 2017-09-12
* Version: 1.5.0
* Date: 2017-09-16
* Description: Making HTML presentations easy
* URL: https://github.com/webslides/webslides#readme
* Credits: @jlantunez, @LuisSacristan, @Belelros
Expand Down
17 changes: 13 additions & 4 deletions static/js/webslides.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*!
* Name: WebSlides
* Version: 1.4.2
* Date: 2017-09-12
* Version: 1.5.0
* Date: 2017-09-16
* Description: Making HTML presentations easy
* URL: https://github.com/webslides/webslides#readme
* Credits: @jlantunez, @LuisSacristan, @Belelros
Expand Down Expand Up @@ -1779,9 +1779,15 @@ var Keyboard = function () {

switch (event.which) {
case __WEBPACK_IMPORTED_MODULE_0__utils_keys__["a" /* default */].AV_PAGE:
case __WEBPACK_IMPORTED_MODULE_0__utils_keys__["a" /* default */].SPACE:
method = this.ws_.goNext;
break;
case __WEBPACK_IMPORTED_MODULE_0__utils_keys__["a" /* default */].SPACE:
if (event.shiftKey) {
method = this.ws_.goPrev;
} else {
method = this.ws_.goNext;
}
break;
case __WEBPACK_IMPORTED_MODULE_0__utils_keys__["a" /* default */].RE_PAGE:
method = this.ws_.goPrev;
break;
Expand All @@ -1806,7 +1812,10 @@ var Keyboard = function () {
method = !this.ws_.isVertical ? this.ws_.goNext : null;
break;
case __WEBPACK_IMPORTED_MODULE_0__utils_keys__["a" /* default */].F:
method = this.ws_.fullscreen;
if (!event.metaKey && !event.ctrlKey) {
method = this.ws_.fullscreen;
}

break;
}

Expand Down
6 changes: 3 additions & 3 deletions static/js/webslides.min.js

Large diffs are not rendered by default.

0 comments on commit 13fe06d

Please sign in to comment.