Skip to content

Commit c379a7b

Browse files
committed
Updated dev dependencies and minor fixes
1 parent 676cbf4 commit c379a7b

12 files changed

Lines changed: 207 additions & 323 deletions

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,19 @@ This project adheres to [Semantic Versioning](https://semver.org) and follows th
66

77
---
88

9+
## [1.0.1] – 2025-08-07
10+
11+
### Fixed
12+
13+
- Removed dead code in DomSmith
14+
- Fixed docs in srtParser
15+
16+
### Changed
17+
18+
- Updated dev dependencies
19+
20+
---
21+
922
## [1.0.0] – 2025-07-06
1023

1124
### Added

lib/dom/DomSmith.js

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,6 @@ export default class DomSmith {
9595
* The root node definition or an array of node definitions.
9696
* @private
9797
* @type {module:lib/dom/DomSmith~NodeDefinition|module:lib/dom/DomSmith~NodeDefinition[]}
98-
* @author Frank
9998
*/
10099
this._dom = this.addNode(nodeDef, rootParent);
101100

@@ -419,13 +418,6 @@ export default class DomSmith {
419418
newNode._parent._ele.replaceChild(newNode._ele, oldNode._ele); // Replace the old node with the new node in the parent's DOM element
420419
newNode._parent._nodes[parentIndex] = newNode; // Update the parent's nodes array
421420

422-
// Update the reference to point to the new element
423-
/* if (oldNode._ref && newNode._ref) {
424-
debugger
425-
this[oldNode._ref] = newNode._ele;
426-
this._refs.set(newNode._ele, newNode);
427-
} */
428-
429421
}
430422

431423
/**

package-lock.json

Lines changed: 173 additions & 291 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@alphanull/visionplayer",
33
"license": "MIT",
4-
"version": "1.0.0",
4+
"version": "1.0.1",
55
"description": "VisionPlayer is a highly modular, lightweight, and feature-rich JavaScript video player for the modern web.",
66
"keywords": [
77
"media",
@@ -81,20 +81,20 @@
8181
"not op_mini all"
8282
],
8383
"devDependencies": {
84-
"@alphanull/jsdoc-plugin-esnext": "^1.0.0",
84+
"@alphanull/jsdoc-plugin-esnext": "^1.1.0",
8585
"@alphanull/jsdoc-vision-theme": "^1.0.0",
86-
"@stylistic/eslint-plugin": "^5.1.0",
87-
"@stylistic/stylelint-plugin": "^3.1.3",
86+
"@stylistic/eslint-plugin": "^5.2.2",
87+
"@stylistic/stylelint-plugin": "^4.0.0",
8888
"@vitejs/plugin-basic-ssl": "^2.1.0",
8989
"acorn": "^8.15.0",
9090
"autoprefixer": "^10.4.21",
9191
"browserslist": "^4.25.1",
92-
"cssnano": "^7.0.7",
92+
"cssnano": "^7.1.0",
9393
"dashjs": "^5.0.3",
94-
"eslint": "^9.30.1",
95-
"eslint-plugin-jsdoc": "^51.3.3",
94+
"eslint": "^9.32.0",
95+
"eslint-plugin-jsdoc": "^52.0.4",
9696
"globals": "^16.3.0",
97-
"hls.js": "^1.6.6",
97+
"hls.js": "^1.6.9",
9898
"jsdoc": "^4.0.4",
9999
"postcss": "^8.5.6",
100100
"postcss-combine-duplicated-selectors": "^10.0.3",
@@ -104,12 +104,12 @@
104104
"postcss-reporter": "^7.1.0",
105105
"postcss-scss": "^4.0.9",
106106
"rimraf": "^6.0.1",
107-
"sass": "^1.89.2",
108-
"stylelint": "^16.21.1",
107+
"sass": "^1.90.0",
108+
"stylelint": "^16.23.1",
109109
"stylelint-config-standard-scss": "^15.0.1",
110110
"stylelint-order": "^7.0.0",
111111
"stylelint-scss": "^6.12.1",
112-
"vite": "^7.0.1",
112+
"vite": "^7.1.0",
113113
"vite-plugin-css-injected-by-js": "^3.5.2",
114114
"vite-plugin-eslint": "^1.8.1",
115115
"vite-plugin-rate-limiter": "^1.0.1"

src/builds/VisionPlayer.basic.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
* @requires src/ui/Title
2323
* @requires src/ui/Time
2424
* @author Frank Kudermann - alphanull
25-
* @version 1.0.0
25+
* @version 1.0.1
2626
* @license MIT
2727
*/
2828

src/builds/VisionPlayer.dev.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* @requires src/visualizer/frequency/VisualizerFrequency
99
* @requires src/util/Debug
1010
* @author Frank Kudermann - alphanull
11-
* @version 1.0.0
11+
* @version 1.0.1
1212
* @license MIT
1313
*/
1414

src/builds/VisionPlayer.headless.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* @requires src/core/Data
99
* @requires src/core/Player
1010
* @author Frank Kudermann - alphanull
11-
* @version 1.0.0
11+
* @version 1.0.1
1212
* @license MIT
1313
*/
1414

src/builds/VisionPlayer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
* @requires src/visualizer/VisualizerAmbient
2929
* @requires src/visualizer/VisualizerBar
3030
* @author Frank Kudermann - alphanull
31-
* @version 1.0.0
31+
* @version 1.0.1
3232
* @license MIT
3333
*/
3434

src/builds/VisionPlayer.secure.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* - No subtitle HTML handling allowed, makes the player 100% XSS safe, since all text content is set via text nodes, including translations.
1111
* @exports module:src/builds/VisionPlayer-secure
1212
* @author Frank Kudermann - alphanull
13-
* @version 1.0.0
13+
* @version 1.0.1
1414
* @license MIT
1515
*/
1616

src/builds/VisionPlayer.streaming.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* @requires dashjs
1010
* @requires hls.js
1111
* @author Frank Kudermann - alphanull
12-
* @version 1.0.0
12+
* @version 1.0.1
1313
* @license MIT
1414
*/
1515

0 commit comments

Comments
 (0)