Skip to content

Commit

Permalink
Release v1.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
techfg committed Dec 27, 2024
1 parent 245be46 commit 28e41dd
Show file tree
Hide file tree
Showing 10 changed files with 34 additions and 28 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@
- Zoom to Area
- Make callback data structures consistent

## Version 1.9.1 - 2024.12.27

- chore: improve eslint config & fix issues
- chore: fix broken links in docs
- chore: update dependencies

## Version 1.9.0 - 2024.12.24

- chore: update dependencies
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ImageMapster",
"version": "1.9.0",
"version": "1.9.1",
"homepage": "https://jamietre.github.io/ImageMapster",
"description": "jQuery plugin that activates areas in HTML image maps with support for highlighting, selecting, tooltips, resizing and more",
"main": "dist/jquery.imagemapster.min.js",
Expand Down
12 changes: 6 additions & 6 deletions dist/jquery.imagemapster.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* imagemapster - v1.9.0 - 2024-12-24
* imagemapster - v1.9.1 - 2024-12-27
* https://jamietre.github.io/ImageMapster
* Copyright (c) 2011 - 2024 James Treworgy
* License: MIT
Expand Down Expand Up @@ -51,7 +51,7 @@
});
window.addEventListener('testPassive.mapster', function () {}, opts);
window.removeEventListener('testPassive.mapster', function () {}, opts);
// eslint-disable-next-line no-unused-vars
// eslint-disable-next-line no-unused-vars -- intentionally ignoring
} catch (e) {
// intentionally ignored
}
Expand Down Expand Up @@ -114,7 +114,7 @@
*
* Requires: jQuery >= 1.2.3
*/
/* eslint-disable one-var */
/* eslint-disable one-var -- code directly from jquery source */
(function ($) {
'use strict';

Expand Down Expand Up @@ -223,7 +223,7 @@
(function ($) {
'use strict';

var mapster_version = '1.9.0';
var mapster_version = '1.9.1';

// all public functions in $.mapster.impl are methods
$.fn.mapster = function (method) {
Expand Down Expand Up @@ -323,7 +323,7 @@
when: {
all: function (deferredArray) {
// TODO: Promise breaks ES5 support
// eslint-disable-next-line no-undef
// eslint-disable-next-line no-undef -- requires polyfill per imagemapster docs
return Promise.all(deferredArray);
},
defer: function () {
Expand All @@ -333,7 +333,7 @@
// polyfill via native promise
var Deferred = function () {
// TODO: Promise breaks ES5 support
// eslint-disable-next-line no-undef
// eslint-disable-next-line no-undef -- requires polyfill per imagemapster docs
this.promise = new Promise(
function (resolve, reject) {
this.resolve = resolve;
Expand Down
4 changes: 2 additions & 2 deletions dist/jquery.imagemapster.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/jquery.imagemapster.min.mjs

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions dist/jquery.imagemapster.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* imagemapster - v1.9.0 - 2024-12-24
* imagemapster - v1.9.1 - 2024-12-27
* https://jamietre.github.io/ImageMapster
* Copyright (c) 2011 - 2024 James Treworgy
* License: MIT
Expand Down Expand Up @@ -27,7 +27,7 @@ function imagemapsterFactory(jQuery) {
});
window.addEventListener('testPassive.mapster', function () {}, opts);
window.removeEventListener('testPassive.mapster', function () {}, opts);
// eslint-disable-next-line no-unused-vars
// eslint-disable-next-line no-unused-vars -- intentionally ignoring
} catch (e) {
// intentionally ignored
}
Expand Down Expand Up @@ -90,7 +90,7 @@ function imagemapsterFactory(jQuery) {
*
* Requires: jQuery >= 1.2.3
*/
/* eslint-disable one-var */
/* eslint-disable one-var -- code directly from jquery source */
(function ($) {
'use strict';

Expand Down Expand Up @@ -199,7 +199,7 @@ function imagemapsterFactory(jQuery) {
(function ($) {
'use strict';

var mapster_version = '1.9.0';
var mapster_version = '1.9.1';

// all public functions in $.mapster.impl are methods
$.fn.mapster = function (method) {
Expand Down Expand Up @@ -299,7 +299,7 @@ function imagemapsterFactory(jQuery) {
when: {
all: function (deferredArray) {
// TODO: Promise breaks ES5 support
// eslint-disable-next-line no-undef
// eslint-disable-next-line no-undef -- requires polyfill per imagemapster docs
return Promise.all(deferredArray);
},
defer: function () {
Expand All @@ -309,7 +309,7 @@ function imagemapsterFactory(jQuery) {
// polyfill via native promise
var Deferred = function () {
// TODO: Promise breaks ES5 support
// eslint-disable-next-line no-undef
// eslint-disable-next-line no-undef -- requires polyfill per imagemapster docs
this.promise = new Promise(
function (resolve, reject) {
this.resolve = resolve;
Expand Down
12 changes: 6 additions & 6 deletions dist/jquery.imagemapster.zepto.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* imagemapster - v1.9.0 - 2024-12-24
* imagemapster - v1.9.1 - 2024-12-27
* https://jamietre.github.io/ImageMapster
* Copyright (c) 2011 - 2024 James Treworgy
* License: MIT
Expand Down Expand Up @@ -118,7 +118,7 @@
});
window.addEventListener('testPassive.mapster', function () {}, opts);
window.removeEventListener('testPassive.mapster', function () {}, opts);
// eslint-disable-next-line no-unused-vars
// eslint-disable-next-line no-unused-vars -- intentionally ignoring
} catch (e) {
// intentionally ignored
}
Expand Down Expand Up @@ -181,7 +181,7 @@
*
* Requires: jQuery >= 1.2.3
*/
/* eslint-disable one-var */
/* eslint-disable one-var -- code directly from jquery source */
(function ($) {
'use strict';

Expand Down Expand Up @@ -290,7 +290,7 @@
(function ($) {
'use strict';

var mapster_version = '1.9.0';
var mapster_version = '1.9.1';

// all public functions in $.mapster.impl are methods
$.fn.mapster = function (method) {
Expand Down Expand Up @@ -390,7 +390,7 @@
when: {
all: function (deferredArray) {
// TODO: Promise breaks ES5 support
// eslint-disable-next-line no-undef
// eslint-disable-next-line no-undef -- requires polyfill per imagemapster docs
return Promise.all(deferredArray);
},
defer: function () {
Expand All @@ -400,7 +400,7 @@
// polyfill via native promise
var Deferred = function () {
// TODO: Promise breaks ES5 support
// eslint-disable-next-line no-undef
// eslint-disable-next-line no-undef -- requires polyfill per imagemapster docs
this.promise = new Promise(
function (resolve, reject) {
this.resolve = resolve;
Expand Down
4 changes: 2 additions & 2 deletions dist/jquery.imagemapster.zepto.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions 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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "imagemapster",
"version": "1.9.0",
"version": "1.9.1",
"description": "jQuery plugin that activates areas in HTML image maps with support for highlighting, selecting, tooltips, resizing and more",
"main": "dist/jquery.imagemapster.min.js",
"module": "dist/jquery.imagemapster.min.mjs",
Expand Down

0 comments on commit 28e41dd

Please sign in to comment.