Skip to content

Commit

Permalink
Release v1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
techfg committed Jan 24, 2021
1 parent ad5696e commit 07e5764
Show file tree
Hide file tree
Showing 11 changed files with 21 additions and 19 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Expand Up @@ -15,7 +15,7 @@

- **Breaking Change** - [Issue 70](https://github.com/jamietre/ImageMapster/issues/70) Respect target attribute for AREA elements with href.

## Version 1.3.3 (planned)
## Version 1.4.0 - 2021.01.24

- [Issue 344](https://github.com/jamietre/ImageMapster/issues/344) Fix exception on tooltip api when options is jQuery object
- [Issue 345](https://github.com/jamietre/ImageMapster/issues/345) Fix tooltip options not applied via api call
Expand Down
12 changes: 7 additions & 5 deletions README.md
Expand Up @@ -158,7 +158,9 @@ ImageMapster includes several examples. To view the examples:

## Zepto Compatibility

As of ImageMapster v1.3.2, ImageMapster contains full support for Zepto v1.2.0. Prior to ImageMapster v1.3.2 and with any version of Zepto except v1.2.0, ImageMapster is unlikely to work as expected. In the early versions of ImageMapster, Zepto support was maintained, however due to changes in Zepto, as of v1.2.5 of ImageMapster, support for Zepto compatability was not maintained as it required too much effort and pushing ImageMapster forward with jQuery was the priority.
As of ImageMapster v1.3.2, ImageMapster contains full support for Zepto v1.2.0. The latest Zepto Compatiable version is [1.4.0](https://github.com/jamietre/ImageMapster/releases/tag/v1.4.0).

Prior to ImageMapster v1.3.2 and with any version of Zepto except v1.2.0, ImageMapster is unlikely to work as expected. In the early versions of ImageMapster, Zepto support was maintained, however due to changes in Zepto, as of v1.2.5 of ImageMapster, support for Zepto compatability was not maintained as it required too much effort and pushing ImageMapster forward with jQuery was the priority.

:warning: **_Given that Zepto is no longer actively developed and with plans in the ImageMapster Roadmap to convert to a Native JS Library, ImageMapster will be officially dropping support of Zepto as of ImageMapster v2.0.0._**

Expand All @@ -174,8 +176,8 @@ To use ImageMapster >= v1.3.2 < 2.0.0 with Zepto v.1.2.0, Zepto must contain the

:warning: **_As of ImageMapster v1.3.0, if targeting ES5 browers, you must include a Promise polyfill such as [es6-promise](https://www.npmjs.com/package/es6-promise). See [Issue 341](https://github.com/jamietre/ImageMapster/issues/341) for details._**

1. [jsDelivr](https://www.jsdelivr.com/package/npm/imagemapster?version=1.3.2) - https://www.jsdelivr.com/package/npm/imagemapster?version=1.3.2
2. [cdnjs](https://cdnjs.com/libraries/imagemapster/1.3.2) - https://cdnjs.com/libraries/imagemapster/1.3.2
1. [jsDelivr](https://www.jsdelivr.com/package/npm/imagemapster?version=1.4.0) - https://www.jsdelivr.com/package/npm/imagemapster?version=1.4.0
2. [cdnjs](https://cdnjs.com/libraries/imagemapster/1.4.0) - https://cdnjs.com/libraries/imagemapster/1.4.0

Use `jquery.imagemapster.zepto.min.js`

Expand All @@ -191,7 +193,7 @@ Use `jquery.imagemapster.zepto.min.js`
></script>
<script
language="text/javascript"
src="/path/to/cdn/for/v1.3.2/dist/jquery.imagemapster.zepto.min.js"
src="/path/to/cdn/for/v1.4.0/dist/jquery.imagemapster.zepto.min.js"
></script>
```

Expand All @@ -204,7 +206,7 @@ Using `webpack` and the `zepto-modules/_custom` module as an example:
#### Install from NPM

```sh
npm install zepto-modules imagemapster@1.3.2 --save
npm install zepto-modules imagemapster@1.4.0 --save
```

#### yourmodule.js
Expand Down
2 changes: 1 addition & 1 deletion bower.json
@@ -1,6 +1,6 @@
{
"name": "ImageMapster",
"version": "1.3.3-beta.0",
"version": "1.4.0",
"homepage": "https://github.com/jamietre/ImageMapster",
"description": "jQuery plugin that activates areas in HTML imagemaps with support for highlighting, selecting, tooltips, resizing and more",
"main": "dist/jquery.imagemapster.min.js",
Expand Down
4 changes: 2 additions & 2 deletions dist/jquery.imagemapster.js
@@ -1,5 +1,5 @@
/*!
* imagemapster - v1.3.3-beta.0 - 2021-01-23
* imagemapster - v1.4.0 - 2021-01-24
* https://github.com/jamietre/ImageMapster/
* Copyright (c) 2011 - 2021 James Treworgy
* License: MIT
Expand Down Expand Up @@ -107,7 +107,7 @@
(function ($) {
'use strict';

var mapster_version = '1.3.3-beta.0';
var mapster_version = '1.4.0';

// all public functions in $.mapster.impl are methods
$.fn.mapster = function (method) {
Expand Down
4 changes: 2 additions & 2 deletions dist/jquery.imagemapster.min.js

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/jquery.imagemapster.zepto.js
@@ -1,5 +1,5 @@
/*!
* imagemapster - v1.3.3-beta.0 - 2021-01-23
* imagemapster - v1.4.0 - 2021-01-24
* https://github.com/jamietre/ImageMapster/
* Copyright (c) 2011 - 2021 James Treworgy
* License: MIT
Expand Down Expand Up @@ -133,7 +133,7 @@
(function ($) {
'use strict';

var mapster_version = '1.3.3-beta.0';
var mapster_version = '1.4.0';

// all public functions in $.mapster.impl are methods
$.fn.mapster = function (method) {
Expand Down
4 changes: 2 additions & 2 deletions dist/jquery.imagemapster.zepto.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/jquery.imagemapster.zepto.min.js.map

Large diffs are not rendered by default.

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.

2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "imagemapster",
"version": "1.3.3-beta.0",
"version": "1.4.0",
"description": "jQuery plugin that activates areas in HTML imagemaps with support for highlighting, selecting, tooltips, resizing and more",
"main": "dist/jquery.imagemapster.min.js",
"files": [
Expand Down

0 comments on commit 07e5764

Please sign in to comment.