Compare commits

..

No commits in common. "develop" and "1.1.0.0" have entirely different histories.

7 changed files with 4263 additions and 17626 deletions

View file

@ -1,15 +1,14 @@
name: auto-merge name: auto-merge
on: on:
pull_request_target: pull_request:
jobs: jobs:
auto-merge: auto-merge:
runs-on: ubuntu-latest runs-on: ubuntu-latest
if: github.actor == 'dependabot[bot]'
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- uses: ahmadnassri/action-dependabot-auto-merge@v2.3.1 - uses: ahmadnassri/action-dependabot-auto-merge@v2
with: with:
target: minor target: minor
github-token: ${{ secrets.PR_AUTO_MERGE }} github-token: ${{ secrets.PR_AUTO_MERGE }}

View file

@ -1,6 +1,6 @@
language: node_js language: node_js
node_js: node_js:
- "16" - "14"
dist: trusty dist: trusty
cache: cache:
npm: true npm: true

View file

@ -2,6 +2,7 @@
[![Travis (.org)](https://img.shields.io/travis/serraniel/aniwatchplus?style=flat-square)](https://travis-ci.org/github/Serraniel/AniwatchPlus) [![Travis (.org)](https://img.shields.io/travis/serraniel/aniwatchplus?style=flat-square)](https://travis-ci.org/github/Serraniel/AniwatchPlus)
[![Snyk Vulnerabilities for GitHub Repo](https://img.shields.io/snyk/vulnerabilities/github/serraniel/aniwatchplus?style=flat-square)](https://snyk.io/test/github/Serraniel/AniwatchPlus?targetFile=package.json) [![Snyk Vulnerabilities for GitHub Repo](https://img.shields.io/snyk/vulnerabilities/github/serraniel/aniwatchplus?style=flat-square)](https://snyk.io/test/github/Serraniel/AniwatchPlus?targetFile=package.json)
[![David](https://img.shields.io/david/serraniel/AniwatchPlus?style=flat-square)](https://david-dm.org/serraniel/aniwatchplus)
[![Scrutinizer code quality (GitHub/Bitbucket)](https://img.shields.io/scrutinizer/quality/g/serraniel/aniwatchplus?style=flat-square)](https://scrutinizer-ci.com/g/Serraniel/AniwatchPlus/) [![Scrutinizer code quality (GitHub/Bitbucket)](https://img.shields.io/scrutinizer/quality/g/serraniel/aniwatchplus?style=flat-square)](https://scrutinizer-ci.com/g/Serraniel/AniwatchPlus/)
[![GitHub issues](https://img.shields.io/github/issues/serraniel/aniwatchplus?style=flat-square)](https://github.com/Serraniel/AniwatchPlus/issues) [![GitHub issues](https://img.shields.io/github/issues/serraniel/aniwatchplus?style=flat-square)](https://github.com/Serraniel/AniwatchPlus/issues)
[![GitHub](https://img.shields.io/github/license/serraniel/aniwatchplus?style=flat-square)](https://github.com/Serraniel/AniwatchPlus/blob/develop/LICENSE) [![GitHub](https://img.shields.io/github/license/serraniel/aniwatchplus?style=flat-square)](https://github.com/Serraniel/AniwatchPlus/blob/develop/LICENSE)
@ -21,7 +22,7 @@
## Download ## Download
Click the badge for your browser to get to the download page: Click the badge for your browser to get to the download page:
[![Chrome Web Store](https://img.shields.io/chrome-web-store/v/hgniihpjiioldkafogebpkbaiflmpimb?label=Google%20Chrome&logo=Google%20Chrome&style=flat-square)](https://chrome.google.com/webstore/detail/aniwatch-plus/hgniihpjiioldkafogebpkbaiflmpimb) [![Chrome Web Store](https://img.shields.io/chrome-web-store/v/hgniihpjiioldkafogebpkbaiflmpimb?label=Google%20Chrome&logo=Google%20Chrome&style=flat-square)](https://chrome.google.com/webstore/detail/aniwatch-plus/hgniihpjiioldkafogebpkbaiflmpimb?hl=de)
[![Mozilla Add-on](https://img.shields.io/amo/v/aniwatch-plus?label=Mozilla%20Firefox&logo=Firefox&style=flat-square)](https://addons.mozilla.org/de/firefox/addon/aniwatch-plus/?utm_source=addons.mozilla.org&utm_medium=referral&utm_content=search) [![Mozilla Add-on](https://img.shields.io/amo/v/aniwatch-plus?label=Mozilla%20Firefox&logo=Firefox&style=flat-square)](https://addons.mozilla.org/de/firefox/addon/aniwatch-plus/?utm_source=addons.mozilla.org&utm_medium=referral&utm_content=search)
[![GitHub release tag for opera (latest by date including pre-releases)](https://img.shields.io/github/v/release/serraniel/aniwatchplus?include_prereleases&label=Opera&logo=Opera&logoColor=red&style=flat-square)](https://addons.opera.com/de/extensions/details/aniwatch-plus/) [![GitHub release tag for opera (latest by date including pre-releases)](https://img.shields.io/github/v/release/serraniel/aniwatchplus?include_prereleases&label=Opera&logo=Opera&logoColor=red&style=flat-square)](https://addons.opera.com/de/extensions/details/aniwatch-plus/)
[![GitHub release (latest by date including pre-releases)](https://img.shields.io/github/v/release/serraniel/aniwatchplus?include_prereleases&label=Download%20manually&logo=Github&style=flat-square)](https://github.com/Serraniel/AniwatchPlus/releases) [![GitHub release (latest by date including pre-releases)](https://img.shields.io/github/v/release/serraniel/aniwatchplus?include_prereleases&label=Download%20manually&logo=Github&style=flat-square)](https://github.com/Serraniel/AniwatchPlus/releases)

View file

@ -15,7 +15,7 @@ const { debug } = require('console');
const $ = gulpLoadPlugins() const $ = gulpLoadPlugins()
const sass = require('gulp-sass')(require('sass')); $.sass.compiler = require('sass');
/* ============================================================================ /* ============================================================================
Base consts Base consts
@ -82,11 +82,11 @@ gulp.task('styles', () => {
// sourcemap initialization // sourcemap initialization
.pipe($.if(isDev, $.sourcemaps.init())) .pipe($.if(isDev, $.sourcemaps.init()))
// sass compilation // sass compilation
.pipe(sass.sync({ .pipe($.sass.sync({
outputStyle: 'expanded', outputStyle: 'expanded',
precision: 7, precision: 7,
includePaths: ['.'], includePaths: ['.'],
}).on('error', sass.logError)) }).on('error', $.sass.logError))
// autoprefix // autoprefix
.pipe($.autoprefixer()) .pipe($.autoprefixer())
// out stream size // out stream size

21653
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -33,48 +33,48 @@
}, },
"homepage": "https://github.com/Serraniel/AniwatchPlus#readme", "homepage": "https://github.com/Serraniel/AniwatchPlus#readme",
"dependencies": { "dependencies": {
"color": "^3.2.1", "color": "^3.1.3",
"spacetime": "https://github.com/Serraniel/spacetime#bugfix/#255-typescript-constructor-options-missing", "spacetime": "github:Serraniel/spacetime#bugfix/#255-typescript-constructor-options-missing",
"uuid": "^8.3.2" "uuid": "^8.3.2"
}, },
"devDependencies": { "devDependencies": {
"@babel/compat-data": "^7.22.5", "@babel/compat-data": "^7.12.13",
"@babel/core": "^7.22.9", "@babel/core": "^7.12.17",
"@babel/helper-module-imports": "^7.22.5", "@babel/helper-module-imports": "^7.12.13",
"@babel/plugin-proposal-class-properties": "^7.17.12", "@babel/plugin-proposal-class-properties": "^7.12.13",
"@babel/plugin-proposal-private-methods": "^7.17.12", "@babel/plugin-proposal-private-methods": "^7.12.13",
"@babel/preset-env": "^7.22.9", "@babel/preset-env": "^7.12.17",
"@babel/register": "^7.22.5", "@babel/register": "^7.12.13",
"@types/chrome": "0.0.241", "@types/chrome": "0.0.132",
"babelify": "^10.0.0", "babelify": "^10.0.0",
"browserify": "^17.0.0", "browserify": "^17.0.0",
"cross-env": "^7.0.3", "cross-env": "^7.0.3",
"cssnano": "^5.1.15", "cssnano": "^4.1.10",
"del": "^6.1.1", "del": "^6.0.0",
"factor-bundle": "^2.5.0", "factor-bundle": "^2.5.0",
"gulp": "^4.0.2", "gulp": "^4.0.2",
"gulp-autoprefixer": "^8.0.0", "gulp-autoprefixer": "^7.0.1",
"gulp-babel": "^8.0.0", "gulp-babel": "^8.0.0",
"gulp-if": "^3.0.0", "gulp-if": "^3.0.0",
"gulp-imagemin": "^7.1.0", "gulp-imagemin": "^7.1.0",
"gulp-load-plugins": "^2.0.8", "gulp-load-plugins": "^2.0.6",
"gulp-merge": "^0.1.1", "gulp-merge": "^0.1.1",
"gulp-plumber": "^1.2.1", "gulp-plumber": "^1.2.1",
"gulp-postcss": "^9.0.1", "gulp-postcss": "^9.0.0",
"gulp-rename": "^2.0.0", "gulp-rename": "^2.0.0",
"gulp-replace": "^1.1.4", "gulp-replace": "^1.0.0",
"gulp-sass": "^5.1.0", "gulp-sass": "^4.1.0",
"gulp-size": "^4.0.1", "gulp-size": "^3.0.0",
"gulp-sourcemaps": "^3.0.0", "gulp-sourcemaps": "^3.0.0",
"gulp-terser": "^2.1.0", "gulp-terser": "^2.0.1",
"gulp-typescript": "^6.0.0-alpha.1", "gulp-typescript": "^6.0.0-alpha.1",
"gulp-zip": "^5.1.0", "gulp-zip": "^5.0.2",
"merge-stream": "^2.0.0", "merge-stream": "^2.0.0",
"postcss": "^8.4.27", "postcss": "^8.2.6",
"sass": "^1.64.1", "sass": "^1.32.8",
"terser": "^5.19.2", "terser": "^5.6.0",
"tsify": "^5.0.4", "tsify": "^5.0.2",
"typescript": "^4.9.5", "typescript": "^4.1.5",
"vinyl-buffer": "^1.0.1", "vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0", "vinyl-source-stream": "^2.0.0",
"web-ext-types": "^3.2.1" "web-ext-types": "^3.2.1"

View file

@ -43,7 +43,7 @@ export function findTextNodes(baseNode: Node): Array<Node> {
baseNode = document.documentElement; baseNode = document.documentElement;
} }
let walker = document.createTreeWalker(baseNode, NodeFilter.SHOW_TEXT, null); let walker = document.createTreeWalker(baseNode, NodeFilter.SHOW_TEXT, null, false);
let node; let node;
let results = []; let results = [];
while (node = walker.nextNode()) { while (node = walker.nextNode()) {