Skip to content

Commit fcec7c9

Browse files
committed
version bump
1 parent b872624 commit fcec7c9

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# Change Log
22
This project adheres to [Semantic Versioning](http://semver.org/).
33

4-
## 2.6.0 (2020-06-XX)
4+
## 2.6.0 (2020-06-17)
55
* Added support of Vimeo videos
66
* Mouse click event available to trigger the display of items
77
* Possibility to destroy an instance of the plugin and recreate it
8-
* Possibility to translate a message related to unsupported screen size using CSS
8+
* Possibility to translate a message related to unsupported screen sizes using CSS
99
* Console logs improved for debugging purposes
1010
* Some jQuery code replaced by equivalent in vanilla JavaScript
1111
* Code coverage augmented

dist/interactive-image.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/interactive-image.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/interactive-image.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/interactive-image.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
</style>
1717

1818
<!-- Include Interactive Image jQuery plugin Styles -->
19-
<link href="../dist/interactive-image.css" rel="stylesheet"></head>
19+
<link href="../dist/interactive-image.min.css" rel="stylesheet"></head>
2020
<body>
2121
<!-- Main container of a scene -->
2222
<div id="my-interactive-image"></div>
@@ -221,5 +221,5 @@
221221
</script>
222222

223223
<!-- Include Interactive Image jQuery plugin JavaScript -->
224-
<script type="text/javascript" src="../dist/interactive-image.js"></script></body>
224+
<script type="text/javascript" src="../dist/interactive-image.min.js"></script></body>
225225
</html>

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "interactiveimagejs",
3-
"version": "2.5.0",
3+
"version": "2.6.0",
44
"description": "A jQuery plugin to embed interactive images on your website",
55
"author": "Jean-Philippe Chateau",
66
"browser": "./src/js/index.js",

webpack.common.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ module.exports = {
3939
filename: '../examples/index.html'
4040
}),
4141
new webpack.BannerPlugin({
42-
banner: '[name] v2.5.0\nhttps://github.com/jpchateau\nJean-Philippe Chateau - <contact@jpchateau.com>\nMIT License'
42+
banner: '[name] v2.6.0\nhttps://github.com/jpchateau\nJean-Philippe Chateau - <contact@jpchateau.com>\nMIT License'
4343
})
4444
],
4545
externals: {

0 commit comments

Comments
 (0)