Skip to content

Commit

Permalink
Merge pull request #831 from ilyhalight/vot.js1.3.0
Browse files Browse the repository at this point in the history
Update to vot.js 1.3.0
  • Loading branch information
ilyhalight authored Sep 25, 2024
2 parents db1381a + 7182723 commit e3dd13e
Show file tree
Hide file tree
Showing 20 changed files with 7,671 additions and 9,856 deletions.
2 changes: 1 addition & 1 deletion README-EN.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ It's necessary to translate additional sites that use the `.m3u8` or `.mpd` vide
2. Install dependencies:

```bash
npm install --legacy-peer-deps
npm install
```

Bun:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@
NPM:

```bash
npm install --legacy-peer-deps
npm install
```

Bun:
Expand Down
Binary file modified bun.lockb
Binary file not shown.
6 changes: 6 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@
<!-- #600 aniboom (referer + useragent, mpd), sibnet (referer) "*://video.sibnet.ru/*", -->
<!-- Фикс vk mobile -->

# 1.7.1 [WIP]

- Включен обход Media CSP для player.vimeo.com
- Исправлена работа встраиваемого плеера Vimeo (player.vimeo.com), если видео залито в приватный доступ и доступно только через встраивание
- Добавлена поддержка субтитров от сайта для Vimeo

# 1.7.0

- Переработана логика обновления переводов для меню расширения
Expand Down
39 changes: 20 additions & 19 deletions dist/vot-min.user.js

Large diffs are not rendered by default.

704 changes: 478 additions & 226 deletions dist/vot.user.js

Large diffs are not rendered by default.

20 changes: 10 additions & 10 deletions eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import js from "@eslint/js";
import globals from "globals";
import oxlint from "eslint-plugin-oxlint";
import sonarjs from "eslint-plugin-sonarjs";
import github from "eslint-plugin-github";
// import github from "eslint-plugin-github";

export default [
{
Expand All @@ -11,9 +11,9 @@ export default [
js.configs.recommended,
sonarjs.configs.recommended,
{
plugins: {
github: github,
},
// plugins: {
// github: github,
// },
rules: {
"no-control-regex": 0,
"no-async-promise-executor": 0,
Expand All @@ -27,12 +27,12 @@ export default [
"sonarjs/slow-regex": 0,
// sonarjs/sonar-no-fallthrough crashed in 2.0.1
"sonarjs/sonar-no-fallthrough": 0,
"github/no-innerText": "error",
"github/no-inner-html": "error",
"github/no-useless-passive": "error",
"github/prefer-observers": "error",
"github/require-passive-events": "error",
// "github/unescaped-html-literal": "error",
// return after update github eslint plugin to full support eslint 9
// "github/no-innerText": "error",
// "github/no-inner-html": "error",
// "github/no-useless-passive": "error",
// "github/prefer-observers": "error",
// "github/require-passive-events": "error",
},
languageOptions: {
ecmaVersion: "latest",
Expand Down
Loading

0 comments on commit e3dd13e

Please sign in to comment.