videojs-mobile-ui 1.1.2 → 1.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/lang/de.js +1 -3
- package/dist/lang/en.js +1 -3
- package/dist/lang/it.js +1 -3
- package/dist/videojs-mobile-ui.cjs.js +2 -2
- package/dist/videojs-mobile-ui.css +98 -2
- package/dist/videojs-mobile-ui.es.js +2 -2
- package/dist/videojs-mobile-ui.js +2 -2
- package/dist/videojs-mobile-ui.min.js +2 -2
- package/package.json +15 -7
- package/scripts/lang.js +24 -0
- package/scripts/postcss.config.js +29 -5
- package/test/plugin.test.js +93 -3
- package/CHANGELOG.md +0 -333
package/dist/lang/de.js
CHANGED
package/dist/lang/en.js
CHANGED
package/dist/lang/it.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @name videojs-mobile-ui @version 1.1.
|
|
1
|
+
/*! @name videojs-mobile-ui @version 1.1.4 @license MIT */
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
4
|
var videojs = require('video.js');
|
|
@@ -9,7 +9,7 @@ function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'defau
|
|
|
9
9
|
var videojs__default = /*#__PURE__*/_interopDefaultLegacy(videojs);
|
|
10
10
|
var window__default = /*#__PURE__*/_interopDefaultLegacy(window);
|
|
11
11
|
|
|
12
|
-
var version = "1.1.
|
|
12
|
+
var version = "1.1.4";
|
|
13
13
|
|
|
14
14
|
/**
|
|
15
15
|
* @file touchOverlay.js
|
|
@@ -1,2 +1,98 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
/**
|
|
2
|
+
* css for videojs-mobile-ui
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
@keyframes fadeAndScale {
|
|
6
|
+
0% {
|
|
7
|
+
opacity: 0
|
|
8
|
+
}
|
|
9
|
+
25% {
|
|
10
|
+
opacity: 1;
|
|
11
|
+
}
|
|
12
|
+
100% {
|
|
13
|
+
opacity: 0;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.video-js.vjs-mobile-ui {
|
|
18
|
+
|
|
19
|
+
&.vjs-has-started:not(.vjs-ad-playing) .vjs-touch-overlay {
|
|
20
|
+
position: absolute;
|
|
21
|
+
pointer-events: auto;
|
|
22
|
+
top: 0;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.vjs-touch-overlay {
|
|
26
|
+
display: block;
|
|
27
|
+
width: 100%;
|
|
28
|
+
height: 100%;
|
|
29
|
+
pointer-events: none;
|
|
30
|
+
|
|
31
|
+
&.skip {
|
|
32
|
+
opacity: 0;
|
|
33
|
+
animation: fadeAndScale 0.8s linear;
|
|
34
|
+
background-repeat: no-repeat;
|
|
35
|
+
background-position: 80% center;
|
|
36
|
+
background-size: 10%;
|
|
37
|
+
background-image: url('data:image/svg+xml;utf8,<svg fill="%23FFFFFF" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M4 18l8.5-6L4 6v12zm9-12v12l8.5-6L13 6z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
|
|
38
|
+
|
|
39
|
+
&:after {
|
|
40
|
+
content: attr(data-skip-text);
|
|
41
|
+
position: absolute;
|
|
42
|
+
top: 60%;
|
|
43
|
+
left: 70%;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
&.skip.reverse {
|
|
48
|
+
background-position: 20% center;
|
|
49
|
+
background-image: url('data:image/svg+xml;utf8,<svg fill="%23FFFFFF" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M11 18V6l-8.5 6 8.5 6zm.5-6l8.5 6V6l-8.5 6z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
|
|
50
|
+
|
|
51
|
+
&:after {
|
|
52
|
+
right: 70%;
|
|
53
|
+
left: unset;
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.vjs-play-control {
|
|
58
|
+
top: 50%;
|
|
59
|
+
left: 50%;
|
|
60
|
+
transform: translate(-50%, -50%);
|
|
61
|
+
position: absolute;
|
|
62
|
+
width: 30%;
|
|
63
|
+
height: 80%;
|
|
64
|
+
pointer-events: none;
|
|
65
|
+
opacity: 0;
|
|
66
|
+
transition: opacity 0.3s ease;
|
|
67
|
+
|
|
68
|
+
.vjs-icon-placeholder::before {
|
|
69
|
+
content: '';
|
|
70
|
+
background-size: 60%;
|
|
71
|
+
background-position: center center;
|
|
72
|
+
background-repeat: no-repeat;
|
|
73
|
+
background-image: url('data:image/svg+xml;utf8,<svg fill="%23FFFFFF" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M6 19h4V5H6v14zm8-14v14h4V5h-4z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
&.vjs-paused .vjs-icon-placeholder::before {
|
|
77
|
+
content: '';
|
|
78
|
+
background-image: url('data:image/svg+xml;utf8,<svg fill="%23FFFFFF" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M8 5v14l11-7z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
&.vjs-ended .vjs-icon-placeholder::before {
|
|
82
|
+
content: '';
|
|
83
|
+
background-image: url('data:image/svg+xml;utf8,<svg fill="%23FFFFFF" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0z" fill="none"/><path d="M12 5V1L7 6l5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6H4c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8z"/></svg>');
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
&.show-play-toggle .vjs-play-control {
|
|
88
|
+
opacity: 1;
|
|
89
|
+
pointer-events: auto;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
&.vjs-mobile-ui-disable-end.vjs-ended .vjs-touch-overlay {
|
|
95
|
+
display: none;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
/*! @name videojs-mobile-ui @version 1.1.
|
|
1
|
+
/*! @name videojs-mobile-ui @version 1.1.4 @license MIT */
|
|
2
2
|
import videojs from 'video.js';
|
|
3
3
|
import window from 'global/window';
|
|
4
4
|
|
|
5
|
-
var version = "1.1.
|
|
5
|
+
var version = "1.1.4";
|
|
6
6
|
|
|
7
7
|
/**
|
|
8
8
|
* @file touchOverlay.js
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @name videojs-mobile-ui @version 1.1.
|
|
1
|
+
/*! @name videojs-mobile-ui @version 1.1.4 @license MIT */
|
|
2
2
|
(function (global, factory) {
|
|
3
3
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('video.js')) :
|
|
4
4
|
typeof define === 'function' && define.amd ? define(['video.js'], factory) :
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
|
|
10
10
|
var videojs__default = /*#__PURE__*/_interopDefaultLegacy(videojs);
|
|
11
11
|
|
|
12
|
-
var version = "1.1.
|
|
12
|
+
var version = "1.1.4";
|
|
13
13
|
|
|
14
14
|
/**
|
|
15
15
|
* @file touchOverlay.js
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
/*! @name videojs-mobile-ui @version 1.1.
|
|
2
|
-
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t(require("video.js")):"function"==typeof define&&define.amd?define(["video.js"],t):(e="undefined"!=typeof globalThis?globalThis:e||self).videojsMobileUi=t(e.videojs)}(this,
|
|
1
|
+
/*! @name videojs-mobile-ui @version 1.1.4 @license MIT */
|
|
2
|
+
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t(require("video.js")):"function"==typeof define&&define.amd?define(["video.js"],t):(e="undefined"!=typeof globalThis?globalThis:e||self).videojsMobileUi=t(e.videojs)}(this,function(e){"use strict";function t(e){return e&&"object"==typeof e&&"default"in e?e:{default:e}}var n=t(e);const o=n.default.getComponent("Component"),i=n.default.dom||n.default;o.registerComponent("TouchOverlay",class extends o{constructor(e,t){super(e,t),this.seekSeconds=t.seekSeconds,this.tapTimeout=t.tapTimeout,this.taps=0,this.addChild("playToggle",{}),e.on(["playing","userinactive"],e=>{this.removeClass("show-play-toggle")}),0===this.player_.options_.inactivityTimeout&&(this.player_.options_.inactivityTimeout=5e3),this.handleTaps_=n.default.fn.debounce(e=>{const t=(this.taps-1)*this.seekSeconds;if(this.taps=0,t<1)return;const n=this.el_.getBoundingClientRect(),o=e.changedTouches[0].clientX-n.left;if(o<.4*n.width)this.player_.currentTime(Math.max(0,this.player_.currentTime()-t)),this.addClass("reverse");else{if(!(o>n.width-.4*n.width))return;this.player_.currentTime(Math.min(this.player_.duration(),this.player_.currentTime()+t)),this.removeClass("reverse")}this.removeClass("show-play-toggle"),this.setAttribute("data-skip-text",`${t} ${this.localize("seconds")}`),this.removeClass("skip"),window.requestAnimationFrame(()=>{this.addClass("skip")})},this.tapTimeout),this.enable()}createEl(){return i.createEl("div",{className:"vjs-touch-overlay",tabIndex:-1})}handleTap(e){e.target===this.el_&&(e.preventDefault(),this.taps+=1,1===this.taps&&(this.removeClass("skip"),this.toggleClass("show-play-toggle")),this.handleTaps_(e))}enable(){this.firstTapCaptured=!1,this.on("touchend",this.handleTap)}disable(){this.off("touchend",this.handleTap)}});const s={fullscreen:{enterOnRotate:!0,exitOnRotate:!0,lockOnRotate:!0,lockToLandscapeOnEnter:!1,disabled:!1},touchControls:{seekSeconds:10,tapTimeout:300,disableOnEnd:!1,disabled:!1}},a=window.screen,r=()=>{if(a){const e=((a.orientation||{}).type||a.mozOrientation||a.msOrientation||"").split("-")[0];if("landscape"===e||"portrait"===e)return e}return"number"==typeof window.orientation?0===window.orientation||180===window.orientation?"portrait":"landscape":"portrait"},l=function(e={}){(e.forceForTesting||n.default.browser.IS_ANDROID||n.default.browser.IS_IOS)&&this.ready(()=>{((e,t)=>{if(e.addClass("vjs-mobile-ui"),!t.touchControls.disabled){(t.touchControls.disableOnEnd||"function"==typeof e.endscreen)&&e.addClass("vjs-mobile-ui-disable-end");const n=e.children_.indexOf(e.getChild("ControlBar"));e.touchOverlay=e.addChild("TouchOverlay",t.touchControls,n)}if(t.fullscreen.disabled)return;let o=!1;const i=()=>{const i=r();"landscape"===i&&t.fullscreen.enterOnRotate?!1===e.paused()&&(e.requestFullscreen(),(t.fullscreen.lockOnRotate||t.fullscreen.lockToLandscapeOnEnter)&&a.orientation&&a.orientation.lock&&a.orientation.lock("landscape").then(()=>{o=!0}).catch(e=>{n.default.log("Browser refused orientation lock:",e)})):"portrait"===i&&t.fullscreen.exitOnRotate&&!o&&e.isFullscreen()&&e.exitFullscreen()};(t.fullscreen.enterOnRotate||t.fullscreen.exitOnRotate)&&(n.default.browser.IS_IOS?(window.addEventListener("orientationchange",i),e.on("dispose",()=>{window.removeEventListener("orientationchange",i)})):a.orientation&&(a.orientation.onchange=i,e.on("dispose",()=>{a.orientation.onchange=null}))),e.on("fullscreenchange",i=>{e.isFullscreen()&&t.fullscreen.lockToLandscapeOnEnter&&"portrait"===r()?a.orientation.lock("landscape").then(()=>{o=!0}).catch(e=>{n.default.log("Browser refused orientation lock:",e)}):!e.isFullscreen()&&o&&(a.orientation.unlock(),o=!1)}),e.on("ended",e=>{!0===o&&(a.orientation.unlock(),o=!1)})})(this,n.default.obj.merge(s,e))})};return n.default.registerPlugin("mobileUi",l),l.VERSION="1.1.4",l});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "videojs-mobile-ui",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.4",
|
|
4
4
|
"description": "Mobile tap controls and fullscreen on rotate for Video.js",
|
|
5
5
|
"main": "dist/videojs-mobile-ui.cjs.js",
|
|
6
6
|
"module": "dist/videojs-mobile-ui.es.js",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"build-test": "cross-env-shell TEST_BUNDLE_ONLY=1 'npm run build'",
|
|
16
16
|
"build:css": "postcss -o dist/videojs-mobile-ui.css --config scripts/postcss.config.js src/plugin.css",
|
|
17
17
|
"build:js": "rollup -c scripts/rollup.config.js",
|
|
18
|
-
"build:lang": "
|
|
18
|
+
"build:lang": "node ./scripts/lang.js",
|
|
19
19
|
"clean": "shx rm -rf ./dist ./test/dist ./cjs ./es && shx mkdir -p ./dist ./test/dist ./cjs ./es",
|
|
20
20
|
"docs": "npm-run-all docs:*",
|
|
21
21
|
"docs:api": "jsdoc src -r -d docs/api",
|
|
@@ -76,19 +76,27 @@
|
|
|
76
76
|
"devDependencies": {
|
|
77
77
|
"@babel/runtime": "^7.14.0",
|
|
78
78
|
"@videojs/generator-helpers": "~3.2.0",
|
|
79
|
-
"
|
|
79
|
+
"autoprefixer": "^10.4.23",
|
|
80
|
+
"husky": "^9.1.7",
|
|
80
81
|
"jsdoc": "^4.0.0",
|
|
81
82
|
"karma": "^6.3.2",
|
|
82
83
|
"postcss": "^8.2.13",
|
|
83
|
-
"postcss-cli": "^
|
|
84
|
+
"postcss-cli": "^11.0.1",
|
|
85
|
+
"postcss-csso": "^6.0.1",
|
|
86
|
+
"postcss-import": "^16.1.1",
|
|
87
|
+
"postcss-nested": "^7.0.2",
|
|
88
|
+
"postcss-progress": "^2.0.0",
|
|
84
89
|
"rollup": "^2.46.0",
|
|
85
90
|
"sinon": "^21.0.0",
|
|
86
91
|
"video.js": "^8.0.0",
|
|
87
|
-
"videojs-generate-karma-config": "
|
|
88
|
-
"videojs-generate-postcss-config": "~3.0.0",
|
|
92
|
+
"videojs-generate-karma-config": "^8.1.0",
|
|
89
93
|
"videojs-generate-rollup-config": "^7.0.0",
|
|
90
94
|
"videojs-generator-verify": "^4.1.0",
|
|
91
|
-
"videojs-languages": "^2.0.0",
|
|
92
95
|
"videojs-standard": "^9.0.1"
|
|
96
|
+
},
|
|
97
|
+
"overrides": {
|
|
98
|
+
"nomnom": {
|
|
99
|
+
"underscore": "^1.13.0"
|
|
100
|
+
}
|
|
93
101
|
}
|
|
94
102
|
}
|
package/scripts/lang.js
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
const fs = require('fs');
|
|
2
|
+
const path = require('path');
|
|
3
|
+
|
|
4
|
+
const source = './lang';
|
|
5
|
+
const dest = './dist/lang';
|
|
6
|
+
|
|
7
|
+
if (!fs.existsSync(dest)) {
|
|
8
|
+
fs.mkdirSync(dest);
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
fs.readdirSync(source)
|
|
12
|
+
.filter(file => file.endsWith('.json'))
|
|
13
|
+
.forEach(file => {
|
|
14
|
+
const jsonPath = path.join(source, file);
|
|
15
|
+
const jsonData = JSON.parse(fs.readFileSync(jsonPath, 'utf8'));
|
|
16
|
+
const langName = path.basename(jsonPath, '.json');
|
|
17
|
+
const jsPath = path.join(dest, langName + '.js');
|
|
18
|
+
|
|
19
|
+
const jsContent = `videojs.addLanguage('${langName}', ${
|
|
20
|
+
JSON.stringify(jsonData)
|
|
21
|
+
});\n`;
|
|
22
|
+
|
|
23
|
+
fs.writeFileSync(jsPath, jsContent);
|
|
24
|
+
});
|
|
@@ -1,9 +1,33 @@
|
|
|
1
|
-
const generate = require('videojs-generate-postcss-config');
|
|
2
|
-
|
|
3
1
|
module.exports = function(context) {
|
|
4
|
-
const result =
|
|
5
|
-
|
|
6
|
-
|
|
2
|
+
const result = {
|
|
3
|
+
plugins: [
|
|
4
|
+
{
|
|
5
|
+
postcssPlugin: 'postcss-progress-start'
|
|
6
|
+
},
|
|
7
|
+
{
|
|
8
|
+
postcssPlugin: 'postcss-import'
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
postcssPlugin: 'postcss-nested'
|
|
12
|
+
},
|
|
13
|
+
null,
|
|
14
|
+
null,
|
|
15
|
+
null,
|
|
16
|
+
{
|
|
17
|
+
browsers: [
|
|
18
|
+
'defaults'
|
|
19
|
+
],
|
|
20
|
+
options: {},
|
|
21
|
+
postcssPlugin: 'autoprefixer'
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
postcssPlugin: 'postcss-csso'
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
postcssPlugin: 'postcss-progress-stop'
|
|
28
|
+
}
|
|
29
|
+
]
|
|
30
|
+
};
|
|
7
31
|
|
|
8
32
|
return result;
|
|
9
33
|
};
|
package/test/plugin.test.js
CHANGED
|
@@ -84,7 +84,7 @@ QUnit.test('iOS event listeners', function(assert) {
|
|
|
84
84
|
|
|
85
85
|
const oldBrowser = videojs.browser;
|
|
86
86
|
|
|
87
|
-
videojs.browser = videojs.
|
|
87
|
+
videojs.browser = videojs.obj.merge(videojs.browser, {
|
|
88
88
|
IS_IOS: true,
|
|
89
89
|
IS_ANDROID: false
|
|
90
90
|
});
|
|
@@ -124,7 +124,7 @@ QUnit[testOrSkip]('Android event listeners', function(assert) {
|
|
|
124
124
|
|
|
125
125
|
const oldBrowser = videojs.browser;
|
|
126
126
|
|
|
127
|
-
videojs.browser = videojs.
|
|
127
|
+
videojs.browser = videojs.obj.merge(videojs.browser, {
|
|
128
128
|
IS_IOS: false,
|
|
129
129
|
IS_ANDROID: true
|
|
130
130
|
});
|
|
@@ -156,7 +156,7 @@ QUnit[testOrSkip]('Android event listeners skipped if disabled', function(assert
|
|
|
156
156
|
|
|
157
157
|
const oldBrowser = videojs.browser;
|
|
158
158
|
|
|
159
|
-
videojs.browser = videojs.
|
|
159
|
+
videojs.browser = videojs.obj.merge(videojs.browser, {
|
|
160
160
|
IS_IOS: false,
|
|
161
161
|
IS_ANDROID: true
|
|
162
162
|
});
|
|
@@ -178,3 +178,93 @@ QUnit[testOrSkip]('Android event listeners skipped if disabled', function(assert
|
|
|
178
178
|
|
|
179
179
|
videojs.browser = oldBrowser;
|
|
180
180
|
});
|
|
181
|
+
|
|
182
|
+
QUnit.test('TouchOverlay: double tap right seeks forward', function(assert) {
|
|
183
|
+
// Setup
|
|
184
|
+
this.player.mobileUi({ forceForTesting: true });
|
|
185
|
+
this.clock.tick(1);
|
|
186
|
+
|
|
187
|
+
const touchOverlay = this.player.getChild('TouchOverlay');
|
|
188
|
+
const touchEl = touchOverlay.el_;
|
|
189
|
+
let currentTimeCache = 0;
|
|
190
|
+
|
|
191
|
+
// Mock bounding rect so clicks have a defined "right" side
|
|
192
|
+
// Width is 100, so > 60 is right side
|
|
193
|
+
sinon.stub(touchEl, 'getBoundingClientRect').returns({
|
|
194
|
+
left: 0,
|
|
195
|
+
width: 100
|
|
196
|
+
});
|
|
197
|
+
|
|
198
|
+
this.player.currentTime = (time) => {
|
|
199
|
+
if (time === undefined) {
|
|
200
|
+
return currentTimeCache;
|
|
201
|
+
}
|
|
202
|
+
currentTimeCache = time;
|
|
203
|
+
return currentTimeCache;
|
|
204
|
+
};
|
|
205
|
+
|
|
206
|
+
this.player.duration(60);
|
|
207
|
+
this.player.currentTime(10);
|
|
208
|
+
|
|
209
|
+
// Trigger first tap
|
|
210
|
+
touchOverlay.handleTap({
|
|
211
|
+
target: touchEl,
|
|
212
|
+
preventDefault: () => {},
|
|
213
|
+
changedTouches: [{ clientX: 90 }]
|
|
214
|
+
});
|
|
215
|
+
|
|
216
|
+
// Trigger second tap (double tap)
|
|
217
|
+
touchOverlay.handleTap({
|
|
218
|
+
target: touchEl,
|
|
219
|
+
preventDefault: () => {},
|
|
220
|
+
changedTouches: [{ clientX: 90 }]
|
|
221
|
+
});
|
|
222
|
+
|
|
223
|
+
// Fast forward debounce timer (default tapTimeout is 300ms)
|
|
224
|
+
this.clock.tick(310);
|
|
225
|
+
assert.equal(this.player.currentTime(), 20, 'Seeked forward 10 seconds (default)');
|
|
226
|
+
|
|
227
|
+
// Advance enough for requestAnimationFrame to trigger
|
|
228
|
+
this.clock.tick(50);
|
|
229
|
+
assert.ok(touchOverlay.hasClass('skip'), 'Skip animation class added');
|
|
230
|
+
});
|
|
231
|
+
|
|
232
|
+
QUnit.test('TouchOverlay: single tap toggles play/pause visibility', function(assert) {
|
|
233
|
+
this.player.mobileUi({ forceForTesting: true });
|
|
234
|
+
this.clock.tick(1);
|
|
235
|
+
|
|
236
|
+
const touchOverlay = this.player.getChild('TouchOverlay');
|
|
237
|
+
|
|
238
|
+
// Trigger single tap
|
|
239
|
+
touchOverlay.handleTap({
|
|
240
|
+
target: touchOverlay.el_,
|
|
241
|
+
preventDefault: () => {},
|
|
242
|
+
changedTouches: [{ clientX: 50 }]
|
|
243
|
+
});
|
|
244
|
+
|
|
245
|
+
assert.ok(touchOverlay.hasClass('show-play-toggle'), 'Play toggle is visible after single tap');
|
|
246
|
+
});
|
|
247
|
+
|
|
248
|
+
QUnit.test('Adds disable-end class if disableOnEnd option is true', function(assert) {
|
|
249
|
+
this.player.mobileUi({
|
|
250
|
+
forceForTesting: true,
|
|
251
|
+
touchControls: { disableOnEnd: true }
|
|
252
|
+
});
|
|
253
|
+
|
|
254
|
+
this.clock.tick(1);
|
|
255
|
+
|
|
256
|
+
assert.ok(this.player.hasClass('vjs-mobile-ui-disable-end'), 'Class added via option');
|
|
257
|
+
});
|
|
258
|
+
|
|
259
|
+
QUnit.test('Adds disable-end class if endscreen plugin is present', function(assert) {
|
|
260
|
+
this.player.endscreen = () => {};
|
|
261
|
+
|
|
262
|
+
this.player.mobileUi({
|
|
263
|
+
forceForTesting: true,
|
|
264
|
+
touchControls: { disableOnEnd: false }
|
|
265
|
+
});
|
|
266
|
+
|
|
267
|
+
this.clock.tick(1);
|
|
268
|
+
|
|
269
|
+
assert.ok(this.player.hasClass('vjs-mobile-ui-disable-end'), 'Class added via endscreen detection');
|
|
270
|
+
});
|
package/CHANGELOG.md
DELETED
|
@@ -1,333 +0,0 @@
|
|
|
1
|
-
<a name="1.1.2"></a>
|
|
2
|
-
## 1.1.2 (2025-12-19)
|
|
3
|
-
|
|
4
|
-
### Features
|
|
5
|
-
|
|
6
|
-
* Add disable options (#33) ([59e5f89](https://github.com/mister-ben/videojs-mobile-ui/commit/59e5f89)), closes [#33](https://github.com/mister-ben/videojs-mobile-ui/issues/33)
|
|
7
|
-
* Add option to lock to landscape when entering fullscreen (#49) ([26c58d4](https://github.com/mister-ben/videojs-mobile-ui/commit/26c58d4)), closes [#49](https://github.com/mister-ben/videojs-mobile-ui/issues/49)
|
|
8
|
-
* Increase CSS specificity (#130) ([9e07684](https://github.com/mister-ben/videojs-mobile-ui/commit/9e07684)), closes [#130](https://github.com/mister-ben/videojs-mobile-ui/issues/130)
|
|
9
|
-
|
|
10
|
-
### Bug Fixes
|
|
11
|
-
|
|
12
|
-
* **deps:** bump body-parser from 1.19.2 to 1.20.3 (#190) ([aacd881](https://github.com/mister-ben/videojs-mobile-ui/commit/aacd881)), closes [#190](https://github.com/mister-ben/videojs-mobile-ui/issues/190)
|
|
13
|
-
* **deps:** bump decode-uri-component from 0.2.0 to 0.2.2 (#95) ([10ad7b2](https://github.com/mister-ben/videojs-mobile-ui/commit/10ad7b2)), closes [#95](https://github.com/mister-ben/videojs-mobile-ui/issues/95)
|
|
14
|
-
* **deps:** bump engine.io and socket.io (#119) ([07d0eef](https://github.com/mister-ben/videojs-mobile-ui/commit/07d0eef)), closes [#119](https://github.com/mister-ben/videojs-mobile-ui/issues/119)
|
|
15
|
-
* **deps:** bump engine.io from 6.2.0 to 6.2.1 (#83) ([f9c4e89](https://github.com/mister-ben/videojs-mobile-ui/commit/f9c4e89)), closes [#83](https://github.com/mister-ben/videojs-mobile-ui/issues/83)
|
|
16
|
-
* **deps:** bump follow-redirects from 1.14.9 to 1.15.11 (#188) ([39570a6](https://github.com/mister-ben/videojs-mobile-ui/commit/39570a6)), closes [#188](https://github.com/mister-ben/videojs-mobile-ui/issues/188)
|
|
17
|
-
* **deps:** bump js-yaml from 3.14.0 to 3.14.2 (#200) ([3746471](https://github.com/mister-ben/videojs-mobile-ui/commit/3746471)), closes [#200](https://github.com/mister-ben/videojs-mobile-ui/issues/200)
|
|
18
|
-
* **deps:** bump json5 from 2.2.1 to 2.2.3 (#102) ([529d294](https://github.com/mister-ben/videojs-mobile-ui/commit/529d294)), closes [#102](https://github.com/mister-ben/videojs-mobile-ui/issues/102)
|
|
19
|
-
* **deps:** bump min-document from 2.19.0 to 2.19.2 (#201) ([47999c3](https://github.com/mister-ben/videojs-mobile-ui/commit/47999c3)), closes [#201](https://github.com/mister-ben/videojs-mobile-ui/issues/201)
|
|
20
|
-
* **deps:** bump minimatch from 3.0.4 to 3.1.2 (#81) ([d799f20](https://github.com/mister-ben/videojs-mobile-ui/commit/d799f20)), closes [#81](https://github.com/mister-ben/videojs-mobile-ui/issues/81)
|
|
21
|
-
* **deps:** bump socket.io from 4.6.1 to 4.8.1 (#196) ([25098ee](https://github.com/mister-ben/videojs-mobile-ui/commit/25098ee)), closes [#196](https://github.com/mister-ben/videojs-mobile-ui/issues/196)
|
|
22
|
-
* **deps:** bump socket.io-parser from 4.2.1 to 4.2.4 (#124) ([e30fb2f](https://github.com/mister-ben/videojs-mobile-ui/commit/e30fb2f)), closes [#124](https://github.com/mister-ben/videojs-mobile-ui/issues/124)
|
|
23
|
-
* **deps:** bump tmp from 0.2.1 to 0.2.5 (#193) ([7b5e3a4](https://github.com/mister-ben/videojs-mobile-ui/commit/7b5e3a4)), closes [#193](https://github.com/mister-ben/videojs-mobile-ui/issues/193)
|
|
24
|
-
* **deps:** bump trim and videojs-standard (#64) ([581dce1](https://github.com/mister-ben/videojs-mobile-ui/commit/581dce1)), closes [#64](https://github.com/mister-ben/videojs-mobile-ui/issues/64)
|
|
25
|
-
* **deps:** bump ua-parser-js from 0.7.31 to 0.7.33 (#106) ([a3e2487](https://github.com/mister-ben/videojs-mobile-ui/commit/a3e2487)), closes [#106](https://github.com/mister-ben/videojs-mobile-ui/issues/106)
|
|
26
|
-
* Detect angle correctly where no window.orientation (#17) ([c85ac35](https://github.com/mister-ben/videojs-mobile-ui/commit/c85ac35)), closes [#17](https://github.com/mister-ben/videojs-mobile-ui/issues/17)
|
|
27
|
-
* Fix fullscreen on rotate (#14) ([33093e4](https://github.com/mister-ben/videojs-mobile-ui/commit/33093e4)), closes [#14](https://github.com/mister-ben/videojs-mobile-ui/issues/14)
|
|
28
|
-
* Fix typo in iOS orientation (#27) ([7e05afb](https://github.com/mister-ben/videojs-mobile-ui/commit/7e05afb)), closes [#27](https://github.com/mister-ben/videojs-mobile-ui/issues/27)
|
|
29
|
-
* Hide overlay during ad playback (#151) ([5b1aa34](https://github.com/mister-ben/videojs-mobile-ui/commit/5b1aa34)), closes [#151](https://github.com/mister-ben/videojs-mobile-ui/issues/151)
|
|
30
|
-
* orientation string (#37) ([177f326](https://github.com/mister-ben/videojs-mobile-ui/commit/177f326)), closes [#37](https://github.com/mister-ben/videojs-mobile-ui/issues/37)
|
|
31
|
-
* Remove event listeners on player dispose (#21) ([25c8fb1](https://github.com/mister-ben/videojs-mobile-ui/commit/25c8fb1)), closes [#21](https://github.com/mister-ben/videojs-mobile-ui/issues/21)
|
|
32
|
-
* Split orientation string ([0eebd64](https://github.com/mister-ben/videojs-mobile-ui/commit/0eebd64))
|
|
33
|
-
|
|
34
|
-
### Chores
|
|
35
|
-
|
|
36
|
-
* align package-lock with node ([1ae9398](https://github.com/mister-ben/videojs-mobile-ui/commit/1ae9398))
|
|
37
|
-
* **deps-dev:** bump [@babel](https://github.com/babel)/runtime from 7.14.0 to 7.19.4 (#66) ([c9c06af](https://github.com/mister-ben/videojs-mobile-ui/commit/c9c06af)), closes [#66](https://github.com/mister-ben/videojs-mobile-ui/issues/66)
|
|
38
|
-
* **deps-dev:** bump [@babel](https://github.com/babel)/runtime from 7.19.4 to 7.20.1 (#76) ([1ec5b0c](https://github.com/mister-ben/videojs-mobile-ui/commit/1ec5b0c)), closes [#76](https://github.com/mister-ben/videojs-mobile-ui/issues/76)
|
|
39
|
-
* **deps-dev:** bump [@babel](https://github.com/babel)/runtime from 7.19.4 to 7.20.1 (#90) ([21738b6](https://github.com/mister-ben/videojs-mobile-ui/commit/21738b6)), closes [#90](https://github.com/mister-ben/videojs-mobile-ui/issues/90)
|
|
40
|
-
* **deps-dev:** bump [@babel](https://github.com/babel)/runtime from 7.20.1 to 7.20.6 (#93) ([8665941](https://github.com/mister-ben/videojs-mobile-ui/commit/8665941)), closes [#93](https://github.com/mister-ben/videojs-mobile-ui/issues/93)
|
|
41
|
-
* **deps-dev:** bump [@babel](https://github.com/babel)/runtime from 7.20.13 to 7.22.3 (#123) ([298df4d](https://github.com/mister-ben/videojs-mobile-ui/commit/298df4d)), closes [#123](https://github.com/mister-ben/videojs-mobile-ui/issues/123)
|
|
42
|
-
* **deps-dev:** bump [@babel](https://github.com/babel)/runtime from 7.20.6 to 7.20.7 (#98) ([35078a1](https://github.com/mister-ben/videojs-mobile-ui/commit/35078a1)), closes [#98](https://github.com/mister-ben/videojs-mobile-ui/issues/98)
|
|
43
|
-
* **deps-dev:** bump [@babel](https://github.com/babel)/runtime from 7.20.7 to 7.20.13 (#105) ([c955038](https://github.com/mister-ben/videojs-mobile-ui/commit/c955038)), closes [#105](https://github.com/mister-ben/videojs-mobile-ui/issues/105)
|
|
44
|
-
* **deps-dev:** bump [@babel](https://github.com/babel)/runtime from 7.22.15 to 7.23.1 (#153) ([a32934e](https://github.com/mister-ben/videojs-mobile-ui/commit/a32934e)), closes [#153](https://github.com/mister-ben/videojs-mobile-ui/issues/153)
|
|
45
|
-
* **deps-dev:** bump [@babel](https://github.com/babel)/runtime from 7.22.3 to 7.22.5 (#127) ([db4efbe](https://github.com/mister-ben/videojs-mobile-ui/commit/db4efbe)), closes [#127](https://github.com/mister-ben/videojs-mobile-ui/issues/127)
|
|
46
|
-
* **deps-dev:** bump [@babel](https://github.com/babel)/runtime from 7.22.5 to 7.22.6 (#132) ([59eb889](https://github.com/mister-ben/videojs-mobile-ui/commit/59eb889)), closes [#132](https://github.com/mister-ben/videojs-mobile-ui/issues/132)
|
|
47
|
-
* **deps-dev:** bump [@babel](https://github.com/babel)/runtime from 7.22.6 to 7.22.15 (#148) ([610f985](https://github.com/mister-ben/videojs-mobile-ui/commit/610f985)), closes [#148](https://github.com/mister-ben/videojs-mobile-ui/issues/148)
|
|
48
|
-
* **deps-dev:** bump [@babel](https://github.com/babel)/runtime from 7.23.1 to 7.24.0 (#178) ([c458d9e](https://github.com/mister-ben/videojs-mobile-ui/commit/c458d9e)), closes [#178](https://github.com/mister-ben/videojs-mobile-ui/issues/178)
|
|
49
|
-
* **deps-dev:** bump [@babel](https://github.com/babel)/traverse from 7.21.4 to 7.23.2 (#159) ([edd1981](https://github.com/mister-ben/videojs-mobile-ui/commit/edd1981)), closes [#159](https://github.com/mister-ben/videojs-mobile-ui/issues/159)
|
|
50
|
-
* **deps-dev:** bump husky from 6.0.0 to 8.0.1 (#67) ([2876f35](https://github.com/mister-ben/videojs-mobile-ui/commit/2876f35)), closes [#67](https://github.com/mister-ben/videojs-mobile-ui/issues/67)
|
|
51
|
-
* **deps-dev:** bump husky from 8.0.1 to 8.0.2 (#79) ([4d90713](https://github.com/mister-ben/videojs-mobile-ui/commit/4d90713)), closes [#79](https://github.com/mister-ben/videojs-mobile-ui/issues/79)
|
|
52
|
-
* **deps-dev:** bump husky from 8.0.1 to 8.0.2 (#89) ([ddfe61f](https://github.com/mister-ben/videojs-mobile-ui/commit/ddfe61f)), closes [#89](https://github.com/mister-ben/videojs-mobile-ui/issues/89)
|
|
53
|
-
* **deps-dev:** bump husky from 8.0.2 to 8.0.3 (#101) ([0588b77](https://github.com/mister-ben/videojs-mobile-ui/commit/0588b77)), closes [#101](https://github.com/mister-ben/videojs-mobile-ui/issues/101)
|
|
54
|
-
* **deps-dev:** bump jsdoc from 3.6.11 to 4.0.0 (#78) ([ac4b4b4](https://github.com/mister-ben/videojs-mobile-ui/commit/ac4b4b4)), closes [#78](https://github.com/mister-ben/videojs-mobile-ui/issues/78)
|
|
55
|
-
* **deps-dev:** bump jsdoc from 4.0.0 to 4.0.2 (#109) ([1be4215](https://github.com/mister-ben/videojs-mobile-ui/commit/1be4215)), closes [#109](https://github.com/mister-ben/videojs-mobile-ui/issues/109)
|
|
56
|
-
* **deps-dev:** bump karma from 6.3.14 to 6.3.16 (#46) ([7bd42f1](https://github.com/mister-ben/videojs-mobile-ui/commit/7bd42f1)), closes [#46](https://github.com/mister-ben/videojs-mobile-ui/issues/46)
|
|
57
|
-
* **deps-dev:** bump karma from 6.3.16 to 6.4.1 (#71) ([147dea6](https://github.com/mister-ben/videojs-mobile-ui/commit/147dea6)), closes [#71](https://github.com/mister-ben/videojs-mobile-ui/issues/71)
|
|
58
|
-
* **deps-dev:** bump karma from 6.3.16 to 6.4.1 (#88) ([3f94ac8](https://github.com/mister-ben/videojs-mobile-ui/commit/3f94ac8)), closes [#88](https://github.com/mister-ben/videojs-mobile-ui/issues/88)
|
|
59
|
-
* **deps-dev:** bump karma from 6.3.2 to 6.3.14 (#44) ([ddff196](https://github.com/mister-ben/videojs-mobile-ui/commit/ddff196)), closes [#44](https://github.com/mister-ben/videojs-mobile-ui/issues/44)
|
|
60
|
-
* **deps-dev:** bump karma from 6.4.1 to 6.4.2 (#116) ([516a58a](https://github.com/mister-ben/videojs-mobile-ui/commit/516a58a)), closes [#116](https://github.com/mister-ben/videojs-mobile-ui/issues/116)
|
|
61
|
-
* **deps-dev:** bump postcss from 8.2.13 to 8.4.18 (#65) ([62fdd71](https://github.com/mister-ben/videojs-mobile-ui/commit/62fdd71)), closes [#65](https://github.com/mister-ben/videojs-mobile-ui/issues/65)
|
|
62
|
-
* **deps-dev:** bump postcss from 8.4.18 to 8.4.19 (#80) ([e759ac4](https://github.com/mister-ben/videojs-mobile-ui/commit/e759ac4)), closes [#80](https://github.com/mister-ben/videojs-mobile-ui/issues/80)
|
|
63
|
-
* **deps-dev:** bump postcss from 8.4.18 to 8.4.19 (#91) ([7bce777](https://github.com/mister-ben/videojs-mobile-ui/commit/7bce777)), closes [#91](https://github.com/mister-ben/videojs-mobile-ui/issues/91)
|
|
64
|
-
* **deps-dev:** bump postcss from 8.4.19 to 8.4.20 (#96) ([500a0e5](https://github.com/mister-ben/videojs-mobile-ui/commit/500a0e5)), closes [#96](https://github.com/mister-ben/videojs-mobile-ui/issues/96)
|
|
65
|
-
* **deps-dev:** bump postcss from 8.4.20 to 8.4.21 (#104) ([a9d9263](https://github.com/mister-ben/videojs-mobile-ui/commit/a9d9263)), closes [#104](https://github.com/mister-ben/videojs-mobile-ui/issues/104)
|
|
66
|
-
* **deps-dev:** bump postcss from 8.4.21 to 8.4.23 (#115) ([1f7cdcf](https://github.com/mister-ben/videojs-mobile-ui/commit/1f7cdcf)), closes [#115](https://github.com/mister-ben/videojs-mobile-ui/issues/115)
|
|
67
|
-
* **deps-dev:** bump postcss from 8.4.23 to 8.4.24 (#125) ([1e22f74](https://github.com/mister-ben/videojs-mobile-ui/commit/1e22f74)), closes [#125](https://github.com/mister-ben/videojs-mobile-ui/issues/125)
|
|
68
|
-
* **deps-dev:** bump postcss from 8.4.24 to 8.4.27 (#138) ([adcaa50](https://github.com/mister-ben/videojs-mobile-ui/commit/adcaa50)), closes [#138](https://github.com/mister-ben/videojs-mobile-ui/issues/138)
|
|
69
|
-
* **deps-dev:** bump postcss from 8.4.27 to 8.4.30 (#149) ([e288c69](https://github.com/mister-ben/videojs-mobile-ui/commit/e288c69)), closes [#149](https://github.com/mister-ben/videojs-mobile-ui/issues/149)
|
|
70
|
-
* **deps-dev:** bump postcss from 8.4.30 to 8.5.6 (#198) ([e863f41](https://github.com/mister-ben/videojs-mobile-ui/commit/e863f41)), closes [#198](https://github.com/mister-ben/videojs-mobile-ui/issues/198)
|
|
71
|
-
* **deps-dev:** bump rollup from 2.46.0 to 2.79.1 (#73) ([46a80cd](https://github.com/mister-ben/videojs-mobile-ui/commit/46a80cd)), closes [#73](https://github.com/mister-ben/videojs-mobile-ui/issues/73)
|
|
72
|
-
* **deps-dev:** bump rollup from 2.46.0 to 2.79.1 (#86) ([af0499e](https://github.com/mister-ben/videojs-mobile-ui/commit/af0499e)), closes [#86](https://github.com/mister-ben/videojs-mobile-ui/issues/86)
|
|
73
|
-
* **deps-dev:** bump rollup from 2.79.1 to 2.79.2 (#194) ([17da94f](https://github.com/mister-ben/videojs-mobile-ui/commit/17da94f)), closes [#194](https://github.com/mister-ben/videojs-mobile-ui/issues/194)
|
|
74
|
-
* **deps-dev:** bump serve-static from 1.15.0 to 1.16.2 (#192) ([b6e9a8c](https://github.com/mister-ben/videojs-mobile-ui/commit/b6e9a8c)), closes [#192](https://github.com/mister-ben/videojs-mobile-ui/issues/192)
|
|
75
|
-
* **deps-dev:** bump sinon from 14.0.1 to 14.0.2 (#77) ([9afd1a8](https://github.com/mister-ben/videojs-mobile-ui/commit/9afd1a8)), closes [#77](https://github.com/mister-ben/videojs-mobile-ui/issues/77)
|
|
76
|
-
* **deps-dev:** bump sinon from 14.0.2 to 15.0.0 (#94) ([19e1c6e](https://github.com/mister-ben/videojs-mobile-ui/commit/19e1c6e)), closes [#94](https://github.com/mister-ben/videojs-mobile-ui/issues/94)
|
|
77
|
-
* **deps-dev:** bump sinon from 15.0.0 to 15.0.1 (#97) ([8933ffb](https://github.com/mister-ben/videojs-mobile-ui/commit/8933ffb)), closes [#97](https://github.com/mister-ben/videojs-mobile-ui/issues/97)
|
|
78
|
-
* **deps-dev:** bump sinon from 15.0.1 to 15.0.4 (#113) ([1d1ff27](https://github.com/mister-ben/videojs-mobile-ui/commit/1d1ff27)), closes [#113](https://github.com/mister-ben/videojs-mobile-ui/issues/113)
|
|
79
|
-
* **deps-dev:** bump sinon from 15.0.4 to 15.1.0 (#120) ([662907b](https://github.com/mister-ben/videojs-mobile-ui/commit/662907b)), closes [#120](https://github.com/mister-ben/videojs-mobile-ui/issues/120)
|
|
80
|
-
* **deps-dev:** bump sinon from 15.1.0 to 15.1.2 (#129) ([c0ea3b1](https://github.com/mister-ben/videojs-mobile-ui/commit/c0ea3b1)), closes [#129](https://github.com/mister-ben/videojs-mobile-ui/issues/129)
|
|
81
|
-
* **deps-dev:** bump sinon from 15.1.2 to 15.2.0 (#131) ([3a17cc0](https://github.com/mister-ben/videojs-mobile-ui/commit/3a17cc0)), closes [#131](https://github.com/mister-ben/videojs-mobile-ui/issues/131)
|
|
82
|
-
* **deps-dev:** bump sinon from 15.2.0 to 16.0.0 (#152) ([475a141](https://github.com/mister-ben/videojs-mobile-ui/commit/475a141)), closes [#152](https://github.com/mister-ben/videojs-mobile-ui/issues/152)
|
|
83
|
-
* **deps-dev:** bump sinon from 16.0.0 to 21.0.0 (#199) ([8be1453](https://github.com/mister-ben/videojs-mobile-ui/commit/8be1453)), closes [#199](https://github.com/mister-ben/videojs-mobile-ui/issues/199)
|
|
84
|
-
* **deps-dev:** bump sinon from 9.2.4 to 14.0.1 (#72) ([993b688](https://github.com/mister-ben/videojs-mobile-ui/commit/993b688)), closes [#72](https://github.com/mister-ben/videojs-mobile-ui/issues/72)
|
|
85
|
-
* **deps-dev:** bump video.js from 7.18.1 to 7.20.3 (#68) ([9addd31](https://github.com/mister-ben/videojs-mobile-ui/commit/9addd31)), closes [#68](https://github.com/mister-ben/videojs-mobile-ui/issues/68)
|
|
86
|
-
* **deps-dev:** bump video.js from 8.0.0 to 8.0.1 (#87) ([e4309d4](https://github.com/mister-ben/videojs-mobile-ui/commit/e4309d4)), closes [#87](https://github.com/mister-ben/videojs-mobile-ui/issues/87)
|
|
87
|
-
* **deps-dev:** bump video.js from 8.0.1 to 8.0.2 (#92) ([1b74370](https://github.com/mister-ben/videojs-mobile-ui/commit/1b74370)), closes [#92](https://github.com/mister-ben/videojs-mobile-ui/issues/92)
|
|
88
|
-
* **deps-dev:** bump video.js from 8.0.2 to 8.0.3 (#103) ([3328f40](https://github.com/mister-ben/videojs-mobile-ui/commit/3328f40)), closes [#103](https://github.com/mister-ben/videojs-mobile-ui/issues/103)
|
|
89
|
-
* **deps-dev:** bump video.js from 8.0.3 to 8.0.4 (#107) ([5dbc197](https://github.com/mister-ben/videojs-mobile-ui/commit/5dbc197)), closes [#107](https://github.com/mister-ben/videojs-mobile-ui/issues/107)
|
|
90
|
-
* **deps-dev:** bump video.js from 8.0.4 to 8.3.0 (#117) ([e91aaee](https://github.com/mister-ben/videojs-mobile-ui/commit/e91aaee)), closes [#117](https://github.com/mister-ben/videojs-mobile-ui/issues/117)
|
|
91
|
-
* **deps-dev:** bump video.js from 8.3.0 to 8.5.2 (#143) ([98fd09d](https://github.com/mister-ben/videojs-mobile-ui/commit/98fd09d)), closes [#143](https://github.com/mister-ben/videojs-mobile-ui/issues/143)
|
|
92
|
-
* **deps-dev:** bump video.js from 8.5.2 to 8.6.1 (#162) ([cd9c73d](https://github.com/mister-ben/videojs-mobile-ui/commit/cd9c73d)), closes [#162](https://github.com/mister-ben/videojs-mobile-ui/issues/162)
|
|
93
|
-
* **deps-dev:** bump videojs-generate-karma-config from 8.0.0 to 8.0.1 (#69) ([a78e527](https://github.com/mister-ben/videojs-mobile-ui/commit/a78e527)), closes [#69](https://github.com/mister-ben/videojs-mobile-ui/issues/69)
|
|
94
|
-
* **deps-dev:** bump videojs-generate-postcss-config (#168) ([6f92224](https://github.com/mister-ben/videojs-mobile-ui/commit/6f92224)), closes [#168](https://github.com/mister-ben/videojs-mobile-ui/issues/168)
|
|
95
|
-
* **deps-dev:** bump videojs-generate-rollup-config from 6.2.0 to 7.0.0 (#70) ([2c3e43d](https://github.com/mister-ben/videojs-mobile-ui/commit/2c3e43d)), closes [#70](https://github.com/mister-ben/videojs-mobile-ui/issues/70)
|
|
96
|
-
* **deps-dev:** bump videojs-generate-rollup-config from 7.0.0 to 7.0.1 (#114) ([cd7b101](https://github.com/mister-ben/videojs-mobile-ui/commit/cd7b101)), closes [#114](https://github.com/mister-ben/videojs-mobile-ui/issues/114)
|
|
97
|
-
* **deps-dev:** bump videojs-generate-rollup-config from 7.0.1 to 7.0.2 (#144) ([69cc17b](https://github.com/mister-ben/videojs-mobile-ui/commit/69cc17b)), closes [#144](https://github.com/mister-ben/videojs-mobile-ui/issues/144)
|
|
98
|
-
* **deps-dev:** bump videojs-generator-verify from 4.1.0 to 4.1.1 (#139) ([7986622](https://github.com/mister-ben/videojs-mobile-ui/commit/7986622)), closes [#139](https://github.com/mister-ben/videojs-mobile-ui/issues/139)
|
|
99
|
-
* **deps-dev:** bump videojs-generator-verify from 4.1.1 to 4.1.2 (#146) ([d320237](https://github.com/mister-ben/videojs-mobile-ui/commit/d320237)), closes [#146](https://github.com/mister-ben/videojs-mobile-ui/issues/146)
|
|
100
|
-
* **deps-dev:** bump videojs-generator-verify from 4.1.2 to 4.1.3 (#154) ([64a006f](https://github.com/mister-ben/videojs-mobile-ui/commit/64a006f)), closes [#154](https://github.com/mister-ben/videojs-mobile-ui/issues/154)
|
|
101
|
-
* **deps-dev:** bump word-wrap from 1.2.3 to 1.2.5 (#140) ([4230c45](https://github.com/mister-ben/videojs-mobile-ui/commit/4230c45)), closes [#140](https://github.com/mister-ben/videojs-mobile-ui/issues/140)
|
|
102
|
-
* **deps:** bump [@xmldom](https://github.com/xmldom)/xmldom from 0.7.5 to 0.7.6 (#56) ([22d4e22](https://github.com/mister-ben/videojs-mobile-ui/commit/22d4e22)), closes [#56](https://github.com/mister-ben/videojs-mobile-ui/issues/56)
|
|
103
|
-
* **deps:** bump ansi-regex and ansi-regex (#57) ([46f4326](https://github.com/mister-ben/videojs-mobile-ui/commit/46f4326)), closes [#57](https://github.com/mister-ben/videojs-mobile-ui/issues/57)
|
|
104
|
-
* **deps:** bump engine.io from 4.1.1 to 4.1.2 (#39) ([5031c93](https://github.com/mister-ben/videojs-mobile-ui/commit/5031c93)), closes [#39](https://github.com/mister-ben/videojs-mobile-ui/issues/39)
|
|
105
|
-
* **deps:** bump follow-redirects from 1.14.0 to 1.14.7 (#41) ([6fcbb49](https://github.com/mister-ben/videojs-mobile-ui/commit/6fcbb49)), closes [#41](https://github.com/mister-ben/videojs-mobile-ui/issues/41)
|
|
106
|
-
* **deps:** bump follow-redirects from 1.14.7 to 1.14.8 (#45) ([cf20418](https://github.com/mister-ben/videojs-mobile-ui/commit/cf20418)), closes [#45](https://github.com/mister-ben/videojs-mobile-ui/issues/45)
|
|
107
|
-
* **deps:** bump log4js from 6.3.0 to 6.4.0 (#42) ([f9c69ff](https://github.com/mister-ben/videojs-mobile-ui/commit/f9c69ff)), closes [#42](https://github.com/mister-ben/videojs-mobile-ui/issues/42)
|
|
108
|
-
* **deps:** bump marked from 2.0.5 to 4.1.1 (#58) ([e7a2353](https://github.com/mister-ben/videojs-mobile-ui/commit/e7a2353)), closes [#58](https://github.com/mister-ben/videojs-mobile-ui/issues/58)
|
|
109
|
-
* **deps:** bump minimist from 1.2.5 to 1.2.6 (#50) ([6faea79](https://github.com/mister-ben/videojs-mobile-ui/commit/6faea79)), closes [#50](https://github.com/mister-ben/videojs-mobile-ui/issues/50)
|
|
110
|
-
* **deps:** bump nanoid from 3.1.22 to 3.2.0 (#43) ([70e3440](https://github.com/mister-ben/videojs-mobile-ui/commit/70e3440)), closes [#43](https://github.com/mister-ben/videojs-mobile-ui/issues/43)
|
|
111
|
-
* **deps:** bump semver-regex from 3.1.3 to 3.1.4 (#52) ([33f2b4a](https://github.com/mister-ben/videojs-mobile-ui/commit/33f2b4a)), closes [#52](https://github.com/mister-ben/videojs-mobile-ui/issues/52)
|
|
112
|
-
* **deps:** bump shell-quote from 1.7.2 to 1.7.3 (#53) ([4e77fdc](https://github.com/mister-ben/videojs-mobile-ui/commit/4e77fdc)), closes [#53](https://github.com/mister-ben/videojs-mobile-ui/issues/53)
|
|
113
|
-
* **deps:** bump shelljs from 0.8.4 to 0.8.5 (#40) ([bf57915](https://github.com/mister-ben/videojs-mobile-ui/commit/bf57915)), closes [#40](https://github.com/mister-ben/videojs-mobile-ui/issues/40)
|
|
114
|
-
* **deps:** bump terser from 5.7.0 to 5.14.2 (#54) ([47528c0](https://github.com/mister-ben/videojs-mobile-ui/commit/47528c0)), closes [#54](https://github.com/mister-ben/videojs-mobile-ui/issues/54)
|
|
115
|
-
* **deps:** bump trim-newlines and meow (#59) ([5944580](https://github.com/mister-ben/videojs-mobile-ui/commit/5944580)), closes [#59](https://github.com/mister-ben/videojs-mobile-ui/issues/59)
|
|
116
|
-
* **deps:** bump underscore and [@videojs](https://github.com/videojs)/generator-helpers (#60) ([66fb160](https://github.com/mister-ben/videojs-mobile-ui/commit/66fb160)), closes [#60](https://github.com/mister-ben/videojs-mobile-ui/issues/60)
|
|
117
|
-
* make video.js a peer dependency (#51) ([1e1ae5d](https://github.com/mister-ben/videojs-mobile-ui/commit/1e1ae5d)), closes [#51](https://github.com/mister-ben/videojs-mobile-ui/issues/51)
|
|
118
|
-
* Miscellaneous cleanups (#126) ([dcc9d89](https://github.com/mister-ben/videojs-mobile-ui/commit/dcc9d89)), closes [#126](https://github.com/mister-ben/videojs-mobile-ui/issues/126)
|
|
119
|
-
* update dependencies ([6fb5a7b](https://github.com/mister-ben/videojs-mobile-ui/commit/6fb5a7b))
|
|
120
|
-
* Update deps for release version of v8 and merge into next (#84) ([ccf2f4f](https://github.com/mister-ben/videojs-mobile-ui/commit/ccf2f4f)), closes [#84](https://github.com/mister-ben/videojs-mobile-ui/issues/84) [#74](https://github.com/mister-ben/videojs-mobile-ui/issues/74) [#82](https://github.com/mister-ben/videojs-mobile-ui/issues/82)
|
|
121
|
-
* update github workflow for deprecations (#195) ([5e6a458](https://github.com/mister-ben/videojs-mobile-ui/commit/5e6a458)), closes [#195](https://github.com/mister-ben/videojs-mobile-ui/issues/195)
|
|
122
|
-
* Update to Node 14 / Generator 8 (#16) ([660dc86](https://github.com/mister-ben/videojs-mobile-ui/commit/660dc86)), closes [#16](https://github.com/mister-ben/videojs-mobile-ui/issues/16)
|
|
123
|
-
* Updated package-lock ([1846941](https://github.com/mister-ben/videojs-mobile-ui/commit/1846941))
|
|
124
|
-
* Use conventional commit prefixes with dependabot (#63) ([018fa7e](https://github.com/mister-ben/videojs-mobile-ui/commit/018fa7e)), closes [#63](https://github.com/mister-ben/videojs-mobile-ui/issues/63)
|
|
125
|
-
|
|
126
|
-
### Documentation
|
|
127
|
-
|
|
128
|
-
* add npm tag for v7 compatible version to README ([43bf4e9](https://github.com/mister-ben/videojs-mobile-ui/commit/43bf4e9))
|
|
129
|
-
|
|
130
|
-
<a name="1.1.1"></a>
|
|
131
|
-
## [1.1.1](https://github.com/mister-ben/videojs-mobile-ui/compare/v1.1.0...v1.1.1) (2023-09-22)
|
|
132
|
-
|
|
133
|
-
### Bug Fixes
|
|
134
|
-
|
|
135
|
-
* Hide overlay during ad playback (#151) ([5b1aa34](https://github.com/mister-ben/videojs-mobile-ui/commit/5b1aa34)), closes [#151](https://github.com/mister-ben/videojs-mobile-ui/issues/151)
|
|
136
|
-
|
|
137
|
-
### Chores
|
|
138
|
-
|
|
139
|
-
* **deps-dev:** bump [@babel](https://github.com/babel)/runtime from 7.22.6 to 7.22.15 (#148) ([610f985](https://github.com/mister-ben/videojs-mobile-ui/commit/610f985)), closes [#148](https://github.com/mister-ben/videojs-mobile-ui/issues/148)
|
|
140
|
-
* **deps-dev:** bump postcss from 8.4.24 to 8.4.27 (#138) ([adcaa50](https://github.com/mister-ben/videojs-mobile-ui/commit/adcaa50)), closes [#138](https://github.com/mister-ben/videojs-mobile-ui/issues/138)
|
|
141
|
-
* **deps-dev:** bump postcss from 8.4.27 to 8.4.30 (#149) ([e288c69](https://github.com/mister-ben/videojs-mobile-ui/commit/e288c69)), closes [#149](https://github.com/mister-ben/videojs-mobile-ui/issues/149)
|
|
142
|
-
* **deps-dev:** bump video.js from 8.3.0 to 8.5.2 (#143) ([98fd09d](https://github.com/mister-ben/videojs-mobile-ui/commit/98fd09d)), closes [#143](https://github.com/mister-ben/videojs-mobile-ui/issues/143)
|
|
143
|
-
* **deps-dev:** bump videojs-generate-rollup-config from 7.0.1 to 7.0.2 (#144) ([69cc17b](https://github.com/mister-ben/videojs-mobile-ui/commit/69cc17b)), closes [#144](https://github.com/mister-ben/videojs-mobile-ui/issues/144)
|
|
144
|
-
* **deps-dev:** bump videojs-generator-verify from 4.1.0 to 4.1.1 (#139) ([7986622](https://github.com/mister-ben/videojs-mobile-ui/commit/7986622)), closes [#139](https://github.com/mister-ben/videojs-mobile-ui/issues/139)
|
|
145
|
-
* **deps-dev:** bump videojs-generator-verify from 4.1.1 to 4.1.2 (#146) ([d320237](https://github.com/mister-ben/videojs-mobile-ui/commit/d320237)), closes [#146](https://github.com/mister-ben/videojs-mobile-ui/issues/146)
|
|
146
|
-
* **deps-dev:** bump word-wrap from 1.2.3 to 1.2.5 (#140) ([4230c45](https://github.com/mister-ben/videojs-mobile-ui/commit/4230c45)), closes [#140](https://github.com/mister-ben/videojs-mobile-ui/issues/140)
|
|
147
|
-
|
|
148
|
-
<a name="1.1.0"></a>
|
|
149
|
-
# [1.1.0](https://github.com/mister-ben/videojs-mobile-ui/compare/v1.0.1...v1.1.0) (2023-07-04)
|
|
150
|
-
|
|
151
|
-
### Features
|
|
152
|
-
|
|
153
|
-
* Increase CSS specificity (#130) ([9e07684](https://github.com/mister-ben/videojs-mobile-ui/commit/9e07684)), closes [#130](https://github.com/mister-ben/videojs-mobile-ui/issues/130)
|
|
154
|
-
|
|
155
|
-
### Bug Fixes
|
|
156
|
-
|
|
157
|
-
* **deps:** bump engine.io and socket.io (#119) ([07d0eef](https://github.com/mister-ben/videojs-mobile-ui/commit/07d0eef)), closes [#119](https://github.com/mister-ben/videojs-mobile-ui/issues/119)
|
|
158
|
-
* **deps:** bump socket.io-parser from 4.2.1 to 4.2.4 (#124) ([e30fb2f](https://github.com/mister-ben/videojs-mobile-ui/commit/e30fb2f)), closes [#124](https://github.com/mister-ben/videojs-mobile-ui/issues/124)
|
|
159
|
-
* **deps:** bump ua-parser-js from 0.7.31 to 0.7.33 (#106) ([a3e2487](https://github.com/mister-ben/videojs-mobile-ui/commit/a3e2487)), closes [#106](https://github.com/mister-ben/videojs-mobile-ui/issues/106)
|
|
160
|
-
|
|
161
|
-
### Chores
|
|
162
|
-
|
|
163
|
-
* **deps-dev:** bump [@babel](https://github.com/babel)/runtime from 7.20.13 to 7.22.3 (#123) ([298df4d](https://github.com/mister-ben/videojs-mobile-ui/commit/298df4d)), closes [#123](https://github.com/mister-ben/videojs-mobile-ui/issues/123)
|
|
164
|
-
* **deps-dev:** bump [@babel](https://github.com/babel)/runtime from 7.20.7 to 7.20.13 (#105) ([c955038](https://github.com/mister-ben/videojs-mobile-ui/commit/c955038)), closes [#105](https://github.com/mister-ben/videojs-mobile-ui/issues/105)
|
|
165
|
-
* **deps-dev:** bump [@babel](https://github.com/babel)/runtime from 7.22.3 to 7.22.5 (#127) ([db4efbe](https://github.com/mister-ben/videojs-mobile-ui/commit/db4efbe)), closes [#127](https://github.com/mister-ben/videojs-mobile-ui/issues/127)
|
|
166
|
-
* **deps-dev:** bump [@babel](https://github.com/babel)/runtime from 7.22.5 to 7.22.6 (#132) ([59eb889](https://github.com/mister-ben/videojs-mobile-ui/commit/59eb889)), closes [#132](https://github.com/mister-ben/videojs-mobile-ui/issues/132)
|
|
167
|
-
* **deps-dev:** bump jsdoc from 4.0.0 to 4.0.2 (#109) ([1be4215](https://github.com/mister-ben/videojs-mobile-ui/commit/1be4215)), closes [#109](https://github.com/mister-ben/videojs-mobile-ui/issues/109)
|
|
168
|
-
* **deps-dev:** bump karma from 6.4.1 to 6.4.2 (#116) ([516a58a](https://github.com/mister-ben/videojs-mobile-ui/commit/516a58a)), closes [#116](https://github.com/mister-ben/videojs-mobile-ui/issues/116)
|
|
169
|
-
* **deps-dev:** bump postcss from 8.4.21 to 8.4.23 (#115) ([1f7cdcf](https://github.com/mister-ben/videojs-mobile-ui/commit/1f7cdcf)), closes [#115](https://github.com/mister-ben/videojs-mobile-ui/issues/115)
|
|
170
|
-
* **deps-dev:** bump postcss from 8.4.23 to 8.4.24 (#125) ([1e22f74](https://github.com/mister-ben/videojs-mobile-ui/commit/1e22f74)), closes [#125](https://github.com/mister-ben/videojs-mobile-ui/issues/125)
|
|
171
|
-
* **deps-dev:** bump sinon from 15.0.1 to 15.0.4 (#113) ([1d1ff27](https://github.com/mister-ben/videojs-mobile-ui/commit/1d1ff27)), closes [#113](https://github.com/mister-ben/videojs-mobile-ui/issues/113)
|
|
172
|
-
* **deps-dev:** bump sinon from 15.0.4 to 15.1.0 (#120) ([662907b](https://github.com/mister-ben/videojs-mobile-ui/commit/662907b)), closes [#120](https://github.com/mister-ben/videojs-mobile-ui/issues/120)
|
|
173
|
-
* **deps-dev:** bump sinon from 15.1.0 to 15.1.2 (#129) ([c0ea3b1](https://github.com/mister-ben/videojs-mobile-ui/commit/c0ea3b1)), closes [#129](https://github.com/mister-ben/videojs-mobile-ui/issues/129)
|
|
174
|
-
* **deps-dev:** bump sinon from 15.1.2 to 15.2.0 (#131) ([3a17cc0](https://github.com/mister-ben/videojs-mobile-ui/commit/3a17cc0)), closes [#131](https://github.com/mister-ben/videojs-mobile-ui/issues/131)
|
|
175
|
-
* **deps-dev:** bump video.js from 8.0.3 to 8.0.4 (#107) ([5dbc197](https://github.com/mister-ben/videojs-mobile-ui/commit/5dbc197)), closes [#107](https://github.com/mister-ben/videojs-mobile-ui/issues/107)
|
|
176
|
-
* **deps-dev:** bump video.js from 8.0.4 to 8.3.0 (#117) ([e91aaee](https://github.com/mister-ben/videojs-mobile-ui/commit/e91aaee)), closes [#117](https://github.com/mister-ben/videojs-mobile-ui/issues/117)
|
|
177
|
-
* **deps-dev:** bump videojs-generate-rollup-config from 7.0.0 to 7.0.1 (#114) ([cd7b101](https://github.com/mister-ben/videojs-mobile-ui/commit/cd7b101)), closes [#114](https://github.com/mister-ben/videojs-mobile-ui/issues/114)
|
|
178
|
-
* Miscellaneous cleanups (#126) ([dcc9d89](https://github.com/mister-ben/videojs-mobile-ui/commit/dcc9d89)), closes [#126](https://github.com/mister-ben/videojs-mobile-ui/issues/126)
|
|
179
|
-
|
|
180
|
-
### Documentation
|
|
181
|
-
|
|
182
|
-
* add npm tag for v7 compatible version to README ([43bf4e9](https://github.com/mister-ben/videojs-mobile-ui/commit/43bf4e9))
|
|
183
|
-
|
|
184
|
-
<a name="1.0.1"></a>
|
|
185
|
-
## [1.0.1](https://github.com/mister-ben/videojs-mobile-ui/compare/v1.0.0...v1.0.1) (2023-01-17)
|
|
186
|
-
|
|
187
|
-
### Bug Fixes
|
|
188
|
-
|
|
189
|
-
* **deps:** bump decode-uri-component from 0.2.0 to 0.2.2 (#95) ([10ad7b2](https://github.com/mister-ben/videojs-mobile-ui/commit/10ad7b2)), closes [#95](https://github.com/mister-ben/videojs-mobile-ui/issues/95)
|
|
190
|
-
* **deps:** bump json5 from 2.2.1 to 2.2.3 (#102) ([529d294](https://github.com/mister-ben/videojs-mobile-ui/commit/529d294)), closes [#102](https://github.com/mister-ben/videojs-mobile-ui/issues/102)
|
|
191
|
-
|
|
192
|
-
### Chores
|
|
193
|
-
|
|
194
|
-
* **deps-dev:** bump [@babel](https://github.com/babel)/runtime from 7.19.4 to 7.20.1 (#90) ([21738b6](https://github.com/mister-ben/videojs-mobile-ui/commit/21738b6)), closes [#90](https://github.com/mister-ben/videojs-mobile-ui/issues/90)
|
|
195
|
-
* **deps-dev:** bump [@babel](https://github.com/babel)/runtime from 7.20.1 to 7.20.6 (#93) ([8665941](https://github.com/mister-ben/videojs-mobile-ui/commit/8665941)), closes [#93](https://github.com/mister-ben/videojs-mobile-ui/issues/93)
|
|
196
|
-
* **deps-dev:** bump [@babel](https://github.com/babel)/runtime from 7.20.6 to 7.20.7 (#98) ([35078a1](https://github.com/mister-ben/videojs-mobile-ui/commit/35078a1)), closes [#98](https://github.com/mister-ben/videojs-mobile-ui/issues/98)
|
|
197
|
-
* **deps-dev:** bump husky from 8.0.1 to 8.0.2 (#89) ([ddfe61f](https://github.com/mister-ben/videojs-mobile-ui/commit/ddfe61f)), closes [#89](https://github.com/mister-ben/videojs-mobile-ui/issues/89)
|
|
198
|
-
* **deps-dev:** bump husky from 8.0.2 to 8.0.3 (#101) ([0588b77](https://github.com/mister-ben/videojs-mobile-ui/commit/0588b77)), closes [#101](https://github.com/mister-ben/videojs-mobile-ui/issues/101)
|
|
199
|
-
* **deps-dev:** bump karma from 6.3.16 to 6.4.1 (#88) ([3f94ac8](https://github.com/mister-ben/videojs-mobile-ui/commit/3f94ac8)), closes [#88](https://github.com/mister-ben/videojs-mobile-ui/issues/88)
|
|
200
|
-
* **deps-dev:** bump postcss from 8.4.18 to 8.4.19 (#91) ([7bce777](https://github.com/mister-ben/videojs-mobile-ui/commit/7bce777)), closes [#91](https://github.com/mister-ben/videojs-mobile-ui/issues/91)
|
|
201
|
-
* **deps-dev:** bump postcss from 8.4.19 to 8.4.20 (#96) ([500a0e5](https://github.com/mister-ben/videojs-mobile-ui/commit/500a0e5)), closes [#96](https://github.com/mister-ben/videojs-mobile-ui/issues/96)
|
|
202
|
-
* **deps-dev:** bump postcss from 8.4.20 to 8.4.21 (#104) ([a9d9263](https://github.com/mister-ben/videojs-mobile-ui/commit/a9d9263)), closes [#104](https://github.com/mister-ben/videojs-mobile-ui/issues/104)
|
|
203
|
-
* **deps-dev:** bump rollup from 2.46.0 to 2.79.1 (#86) ([af0499e](https://github.com/mister-ben/videojs-mobile-ui/commit/af0499e)), closes [#86](https://github.com/mister-ben/videojs-mobile-ui/issues/86)
|
|
204
|
-
* **deps-dev:** bump sinon from 14.0.2 to 15.0.0 (#94) ([19e1c6e](https://github.com/mister-ben/videojs-mobile-ui/commit/19e1c6e)), closes [#94](https://github.com/mister-ben/videojs-mobile-ui/issues/94)
|
|
205
|
-
* **deps-dev:** bump sinon from 15.0.0 to 15.0.1 (#97) ([8933ffb](https://github.com/mister-ben/videojs-mobile-ui/commit/8933ffb)), closes [#97](https://github.com/mister-ben/videojs-mobile-ui/issues/97)
|
|
206
|
-
* **deps-dev:** bump video.js from 8.0.0 to 8.0.1 (#87) ([e4309d4](https://github.com/mister-ben/videojs-mobile-ui/commit/e4309d4)), closes [#87](https://github.com/mister-ben/videojs-mobile-ui/issues/87)
|
|
207
|
-
* **deps-dev:** bump video.js from 8.0.1 to 8.0.2 (#92) ([1b74370](https://github.com/mister-ben/videojs-mobile-ui/commit/1b74370)), closes [#92](https://github.com/mister-ben/videojs-mobile-ui/issues/92)
|
|
208
|
-
* **deps-dev:** bump video.js from 8.0.2 to 8.0.3 (#103) ([3328f40](https://github.com/mister-ben/videojs-mobile-ui/commit/3328f40)), closes [#103](https://github.com/mister-ben/videojs-mobile-ui/issues/103)
|
|
209
|
-
|
|
210
|
-
<a name="1.0.0"></a>
|
|
211
|
-
# 1.0.0 (2022-11-23)
|
|
212
|
-
|
|
213
|
-
### Features
|
|
214
|
-
|
|
215
|
-
* Add disable options (#33) ([59e5f89](https://github.com/mister-ben/videojs-mobile-ui/commit/59e5f89)), closes [#33](https://github.com/mister-ben/videojs-mobile-ui/issues/33)
|
|
216
|
-
* Add option to lock to landscape when entering fullscreen (#49) ([26c58d4](https://github.com/mister-ben/videojs-mobile-ui/commit/26c58d4)), closes [#49](https://github.com/mister-ben/videojs-mobile-ui/issues/49)
|
|
217
|
-
|
|
218
|
-
### Bug Fixes
|
|
219
|
-
|
|
220
|
-
* **deps:** bump engine.io from 6.2.0 to 6.2.1 (#83) ([f9c4e89](https://github.com/mister-ben/videojs-mobile-ui/commit/f9c4e89)), closes [#83](https://github.com/mister-ben/videojs-mobile-ui/issues/83)
|
|
221
|
-
* **deps:** bump minimatch from 3.0.4 to 3.1.2 (#81) ([d799f20](https://github.com/mister-ben/videojs-mobile-ui/commit/d799f20)), closes [#81](https://github.com/mister-ben/videojs-mobile-ui/issues/81)
|
|
222
|
-
* **deps:** bump trim and videojs-standard (#64) ([581dce1](https://github.com/mister-ben/videojs-mobile-ui/commit/581dce1)), closes [#64](https://github.com/mister-ben/videojs-mobile-ui/issues/64)
|
|
223
|
-
* Detect angle correctly where no window.orientation (#17) ([c85ac35](https://github.com/mister-ben/videojs-mobile-ui/commit/c85ac35)), closes [#17](https://github.com/mister-ben/videojs-mobile-ui/issues/17)
|
|
224
|
-
* Fix fullscreen on rotate (#14) ([33093e4](https://github.com/mister-ben/videojs-mobile-ui/commit/33093e4)), closes [#14](https://github.com/mister-ben/videojs-mobile-ui/issues/14)
|
|
225
|
-
* Fix typo in iOS orientation (#27) ([7e05afb](https://github.com/mister-ben/videojs-mobile-ui/commit/7e05afb)), closes [#27](https://github.com/mister-ben/videojs-mobile-ui/issues/27)
|
|
226
|
-
* orientation string (#37) ([177f326](https://github.com/mister-ben/videojs-mobile-ui/commit/177f326)), closes [#37](https://github.com/mister-ben/videojs-mobile-ui/issues/37)
|
|
227
|
-
* Remove event listeners on player dispose (#21) ([25c8fb1](https://github.com/mister-ben/videojs-mobile-ui/commit/25c8fb1)), closes [#21](https://github.com/mister-ben/videojs-mobile-ui/issues/21)
|
|
228
|
-
* Split orientation string ([0eebd64](https://github.com/mister-ben/videojs-mobile-ui/commit/0eebd64))
|
|
229
|
-
|
|
230
|
-
### Chores
|
|
231
|
-
|
|
232
|
-
* **deps-dev:** bump [@babel](https://github.com/babel)/runtime from 7.14.0 to 7.19.4 (#66) ([c9c06af](https://github.com/mister-ben/videojs-mobile-ui/commit/c9c06af)), closes [#66](https://github.com/mister-ben/videojs-mobile-ui/issues/66)
|
|
233
|
-
* **deps-dev:** bump [@babel](https://github.com/babel)/runtime from 7.19.4 to 7.20.1 (#76) ([1ec5b0c](https://github.com/mister-ben/videojs-mobile-ui/commit/1ec5b0c)), closes [#76](https://github.com/mister-ben/videojs-mobile-ui/issues/76)
|
|
234
|
-
* **deps-dev:** bump husky from 6.0.0 to 8.0.1 (#67) ([2876f35](https://github.com/mister-ben/videojs-mobile-ui/commit/2876f35)), closes [#67](https://github.com/mister-ben/videojs-mobile-ui/issues/67)
|
|
235
|
-
* **deps-dev:** bump husky from 8.0.1 to 8.0.2 (#79) ([4d90713](https://github.com/mister-ben/videojs-mobile-ui/commit/4d90713)), closes [#79](https://github.com/mister-ben/videojs-mobile-ui/issues/79)
|
|
236
|
-
* **deps-dev:** bump jsdoc from 3.6.11 to 4.0.0 (#78) ([ac4b4b4](https://github.com/mister-ben/videojs-mobile-ui/commit/ac4b4b4)), closes [#78](https://github.com/mister-ben/videojs-mobile-ui/issues/78)
|
|
237
|
-
* **deps-dev:** bump karma from 6.3.14 to 6.3.16 (#46) ([7bd42f1](https://github.com/mister-ben/videojs-mobile-ui/commit/7bd42f1)), closes [#46](https://github.com/mister-ben/videojs-mobile-ui/issues/46)
|
|
238
|
-
* **deps-dev:** bump karma from 6.3.16 to 6.4.1 (#71) ([147dea6](https://github.com/mister-ben/videojs-mobile-ui/commit/147dea6)), closes [#71](https://github.com/mister-ben/videojs-mobile-ui/issues/71)
|
|
239
|
-
* **deps-dev:** bump karma from 6.3.2 to 6.3.14 (#44) ([ddff196](https://github.com/mister-ben/videojs-mobile-ui/commit/ddff196)), closes [#44](https://github.com/mister-ben/videojs-mobile-ui/issues/44)
|
|
240
|
-
* **deps-dev:** bump postcss from 8.2.13 to 8.4.18 (#65) ([62fdd71](https://github.com/mister-ben/videojs-mobile-ui/commit/62fdd71)), closes [#65](https://github.com/mister-ben/videojs-mobile-ui/issues/65)
|
|
241
|
-
* **deps-dev:** bump postcss from 8.4.18 to 8.4.19 (#80) ([e759ac4](https://github.com/mister-ben/videojs-mobile-ui/commit/e759ac4)), closes [#80](https://github.com/mister-ben/videojs-mobile-ui/issues/80)
|
|
242
|
-
* **deps-dev:** bump rollup from 2.46.0 to 2.79.1 (#73) ([46a80cd](https://github.com/mister-ben/videojs-mobile-ui/commit/46a80cd)), closes [#73](https://github.com/mister-ben/videojs-mobile-ui/issues/73)
|
|
243
|
-
* **deps-dev:** bump sinon from 14.0.1 to 14.0.2 (#77) ([9afd1a8](https://github.com/mister-ben/videojs-mobile-ui/commit/9afd1a8)), closes [#77](https://github.com/mister-ben/videojs-mobile-ui/issues/77)
|
|
244
|
-
* **deps-dev:** bump sinon from 9.2.4 to 14.0.1 (#72) ([993b688](https://github.com/mister-ben/videojs-mobile-ui/commit/993b688)), closes [#72](https://github.com/mister-ben/videojs-mobile-ui/issues/72)
|
|
245
|
-
* **deps-dev:** bump video.js from 7.18.1 to 7.20.3 (#68) ([9addd31](https://github.com/mister-ben/videojs-mobile-ui/commit/9addd31)), closes [#68](https://github.com/mister-ben/videojs-mobile-ui/issues/68)
|
|
246
|
-
* **deps-dev:** bump videojs-generate-karma-config from 8.0.0 to 8.0.1 (#69) ([a78e527](https://github.com/mister-ben/videojs-mobile-ui/commit/a78e527)), closes [#69](https://github.com/mister-ben/videojs-mobile-ui/issues/69)
|
|
247
|
-
* **deps-dev:** bump videojs-generate-rollup-config from 6.2.0 to 7.0.0 (#70) ([2c3e43d](https://github.com/mister-ben/videojs-mobile-ui/commit/2c3e43d)), closes [#70](https://github.com/mister-ben/videojs-mobile-ui/issues/70)
|
|
248
|
-
* **deps:** bump [@xmldom](https://github.com/xmldom)/xmldom from 0.7.5 to 0.7.6 (#56) ([22d4e22](https://github.com/mister-ben/videojs-mobile-ui/commit/22d4e22)), closes [#56](https://github.com/mister-ben/videojs-mobile-ui/issues/56)
|
|
249
|
-
* **deps:** bump ansi-regex and ansi-regex (#57) ([46f4326](https://github.com/mister-ben/videojs-mobile-ui/commit/46f4326)), closes [#57](https://github.com/mister-ben/videojs-mobile-ui/issues/57)
|
|
250
|
-
* **deps:** bump engine.io from 4.1.1 to 4.1.2 (#39) ([5031c93](https://github.com/mister-ben/videojs-mobile-ui/commit/5031c93)), closes [#39](https://github.com/mister-ben/videojs-mobile-ui/issues/39)
|
|
251
|
-
* **deps:** bump follow-redirects from 1.14.0 to 1.14.7 (#41) ([6fcbb49](https://github.com/mister-ben/videojs-mobile-ui/commit/6fcbb49)), closes [#41](https://github.com/mister-ben/videojs-mobile-ui/issues/41)
|
|
252
|
-
* **deps:** bump follow-redirects from 1.14.7 to 1.14.8 (#45) ([cf20418](https://github.com/mister-ben/videojs-mobile-ui/commit/cf20418)), closes [#45](https://github.com/mister-ben/videojs-mobile-ui/issues/45)
|
|
253
|
-
* **deps:** bump log4js from 6.3.0 to 6.4.0 (#42) ([f9c69ff](https://github.com/mister-ben/videojs-mobile-ui/commit/f9c69ff)), closes [#42](https://github.com/mister-ben/videojs-mobile-ui/issues/42)
|
|
254
|
-
* **deps:** bump marked from 2.0.5 to 4.1.1 (#58) ([e7a2353](https://github.com/mister-ben/videojs-mobile-ui/commit/e7a2353)), closes [#58](https://github.com/mister-ben/videojs-mobile-ui/issues/58)
|
|
255
|
-
* **deps:** bump minimist from 1.2.5 to 1.2.6 (#50) ([6faea79](https://github.com/mister-ben/videojs-mobile-ui/commit/6faea79)), closes [#50](https://github.com/mister-ben/videojs-mobile-ui/issues/50)
|
|
256
|
-
* **deps:** bump nanoid from 3.1.22 to 3.2.0 (#43) ([70e3440](https://github.com/mister-ben/videojs-mobile-ui/commit/70e3440)), closes [#43](https://github.com/mister-ben/videojs-mobile-ui/issues/43)
|
|
257
|
-
* **deps:** bump semver-regex from 3.1.3 to 3.1.4 (#52) ([33f2b4a](https://github.com/mister-ben/videojs-mobile-ui/commit/33f2b4a)), closes [#52](https://github.com/mister-ben/videojs-mobile-ui/issues/52)
|
|
258
|
-
* **deps:** bump shell-quote from 1.7.2 to 1.7.3 (#53) ([4e77fdc](https://github.com/mister-ben/videojs-mobile-ui/commit/4e77fdc)), closes [#53](https://github.com/mister-ben/videojs-mobile-ui/issues/53)
|
|
259
|
-
* **deps:** bump shelljs from 0.8.4 to 0.8.5 (#40) ([bf57915](https://github.com/mister-ben/videojs-mobile-ui/commit/bf57915)), closes [#40](https://github.com/mister-ben/videojs-mobile-ui/issues/40)
|
|
260
|
-
* **deps:** bump terser from 5.7.0 to 5.14.2 (#54) ([47528c0](https://github.com/mister-ben/videojs-mobile-ui/commit/47528c0)), closes [#54](https://github.com/mister-ben/videojs-mobile-ui/issues/54)
|
|
261
|
-
* **deps:** bump trim-newlines and meow (#59) ([5944580](https://github.com/mister-ben/videojs-mobile-ui/commit/5944580)), closes [#59](https://github.com/mister-ben/videojs-mobile-ui/issues/59)
|
|
262
|
-
* **deps:** bump underscore and [@videojs](https://github.com/videojs)/generator-helpers (#60) ([66fb160](https://github.com/mister-ben/videojs-mobile-ui/commit/66fb160)), closes [#60](https://github.com/mister-ben/videojs-mobile-ui/issues/60)
|
|
263
|
-
* make video.js a peer dependency (#51) ([1e1ae5d](https://github.com/mister-ben/videojs-mobile-ui/commit/1e1ae5d)), closes [#51](https://github.com/mister-ben/videojs-mobile-ui/issues/51)
|
|
264
|
-
* update dependencies ([6fb5a7b](https://github.com/mister-ben/videojs-mobile-ui/commit/6fb5a7b))
|
|
265
|
-
* Update deps for release version of v8 and merge into next (#84) ([ccf2f4f](https://github.com/mister-ben/videojs-mobile-ui/commit/ccf2f4f)), closes [#84](https://github.com/mister-ben/videojs-mobile-ui/issues/84) [#74](https://github.com/mister-ben/videojs-mobile-ui/issues/74) [#82](https://github.com/mister-ben/videojs-mobile-ui/issues/82)
|
|
266
|
-
* Update to Node 14 / Generator 8 (#16) ([660dc86](https://github.com/mister-ben/videojs-mobile-ui/commit/660dc86)), closes [#16](https://github.com/mister-ben/videojs-mobile-ui/issues/16)
|
|
267
|
-
* Updated package-lock ([1846941](https://github.com/mister-ben/videojs-mobile-ui/commit/1846941))
|
|
268
|
-
* Use conventional commit prefixes with dependabot (#63) ([018fa7e](https://github.com/mister-ben/videojs-mobile-ui/commit/018fa7e)), closes [#63](https://github.com/mister-ben/videojs-mobile-ui/issues/63)
|
|
269
|
-
|
|
270
|
-
<a name="0.7.0"></a>
|
|
271
|
-
# [0.7.0](https://github.com/mister-ben/videojs-mobile-ui/compare/v0.6.1...v0.7.0) (2021-11-09)
|
|
272
|
-
|
|
273
|
-
### Features
|
|
274
|
-
|
|
275
|
-
* Add disable options (#33) ([59e5f89](https://github.com/mister-ben/videojs-mobile-ui/commit/59e5f89)), closes [#33](https://github.com/mister-ben/videojs-mobile-ui/issues/33)
|
|
276
|
-
|
|
277
|
-
### Bug Fixes
|
|
278
|
-
|
|
279
|
-
* orientation string (#37) ([177f326](https://github.com/mister-ben/videojs-mobile-ui/commit/177f326)), closes [#37](https://github.com/mister-ben/videojs-mobile-ui/issues/37)
|
|
280
|
-
|
|
281
|
-
### Chores
|
|
282
|
-
|
|
283
|
-
* update dependencies ([6fb5a7b](https://github.com/mister-ben/videojs-mobile-ui/commit/6fb5a7b))
|
|
284
|
-
|
|
285
|
-
<a name="0.6.1"></a>
|
|
286
|
-
## [0.6.1](https://github.com/mister-ben/videojs-mobile-ui/compare/v0.6.0...v0.6.1) (2021-08-27)
|
|
287
|
-
|
|
288
|
-
### Bug Fixes
|
|
289
|
-
|
|
290
|
-
* Split orientation string ([0eebd64](https://github.com/mister-ben/videojs-mobile-ui/commit/0eebd64))
|
|
291
|
-
|
|
292
|
-
<a name="0.6.0"></a>
|
|
293
|
-
# 0.6.0 (2021-08-27)
|
|
294
|
-
|
|
295
|
-
### Bug Fixes
|
|
296
|
-
|
|
297
|
-
* Detect angle correctly where no window.orientation (#17) ([c85ac35](https://github.com/mister-ben/videojs-mobile-ui/commit/c85ac35)), closes [#17](https://github.com/mister-ben/videojs-mobile-ui/issues/17)
|
|
298
|
-
* Fix fullscreen on rotate (#14) ([33093e4](https://github.com/mister-ben/videojs-mobile-ui/commit/33093e4)), closes [#14](https://github.com/mister-ben/videojs-mobile-ui/issues/14)
|
|
299
|
-
* Fix typo in iOS orientation (#27) ([7e05afb](https://github.com/mister-ben/videojs-mobile-ui/commit/7e05afb)), closes [#27](https://github.com/mister-ben/videojs-mobile-ui/issues/27)
|
|
300
|
-
* Remove event listeners on player dispose (#21) ([25c8fb1](https://github.com/mister-ben/videojs-mobile-ui/commit/25c8fb1)), closes [#21](https://github.com/mister-ben/videojs-mobile-ui/issues/21)
|
|
301
|
-
|
|
302
|
-
### Chores
|
|
303
|
-
|
|
304
|
-
* Update to Node 14 / Generator 8 (#16) ([660dc86](https://github.com/mister-ben/videojs-mobile-ui/commit/660dc86)), closes [#16](https://github.com/mister-ben/videojs-mobile-ui/issues/16)
|
|
305
|
-
|
|
306
|
-
<a name="0.5.3"></a>
|
|
307
|
-
## [0.5.3](https://github.com/mister-ben/videojs-mobile-ui/compare/v0.5.2...v0.5.3) (2021-05-25)
|
|
308
|
-
|
|
309
|
-
### Bug Fixes
|
|
310
|
-
|
|
311
|
-
* Fix fullscreen on rotate (#14) ([33093e4](https://github.com/mister-ben/videojs-mobile-ui/commit/33093e4)), closes [#14](https://github.com/mister-ben/videojs-mobile-ui/issues/14)
|
|
312
|
-
|
|
313
|
-
<a name="0.5.2"></a>
|
|
314
|
-
## [0.5.2](https://github.com/mister-ben/videojs-mobile-ui/compare/v0.5.1...v0.5.2) (2021-01-29)
|
|
315
|
-
|
|
316
|
-
<a name="0.5.1"></a>
|
|
317
|
-
## [0.5.1](https://github.com/mister-ben/videojs-mobile-ui/compare/v0.5.0...v0.5.1) (2021-01-29)
|
|
318
|
-
|
|
319
|
-
<a name="0.5.0"></a>
|
|
320
|
-
# 0.5.0 (2021-01-16)
|
|
321
|
-
|
|
322
|
-
<a name="0.4.1"></a>
|
|
323
|
-
## [0.4.1](https://github.com/mister-ben/videojs-mobile-ui/compare/v0.4.0...v0.4.1) (2018-04-30)
|
|
324
|
-
|
|
325
|
-
<a name="0.4.0"></a>
|
|
326
|
-
# [0.4.0](https://github.com/mister-ben/videojs-mobile-ui/compare/v0.3.0...v0.4.0) (2018-04-30)
|
|
327
|
-
|
|
328
|
-
<a name="0.3.0"></a>
|
|
329
|
-
# [0.3.0](https://github.com/mister-ben/videojs-mobile-ui/compare/v0.2.0...v0.3.0) (2018-04-28)
|
|
330
|
-
|
|
331
|
-
<a name="0.2.0"></a>
|
|
332
|
-
# 0.2.0 (2018-04-28)
|
|
333
|
-
|