diff --git a/.eslintignore b/.eslintignore index b300eca..d564613 100644 --- a/.eslintignore +++ b/.eslintignore @@ -4,3 +4,4 @@ coverage/ karma.conf.js .eslintrc.js tailwind.config.js +*.md \ No newline at end of file diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml index dab9c81..141b166 100644 --- a/.github/release-drafter.yml +++ b/.github/release-drafter.yml @@ -3,9 +3,11 @@ autolabeler: branch: - "/^fix/" - "/^bugfix/" + - "/^hotfix/" title: - "/^fix/i" - "/^bugfix/i" + - "/^hotfix/i" - label: "enhancement" branch: - "/^feature/" @@ -21,6 +23,7 @@ categories: - "fix" - "bugfix" - "bug" + - "hotfix" exclude-labels: - "skip-changelog" category-template: "### $TITLE" diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index eddd900..869a7d6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -2,7 +2,8 @@ name: "Release" run-name: "Release ${{ github.ref_name }}" on: push: - tags: "*" + tags: + - "[0-9]+.[0-9]+.[0-9]+" jobs: linting: diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 7d95621..c670572 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -15,12 +15,23 @@ repos: exclude_types: - svg - pofile - exclude: "(^LICENSE$)" + - markdown + - json + exclude: | + (?x)^( + LICENSE| + \.eslintignore| + \.eslintrc.js| + \.parcelrc| + \.prettierignore| + )$ - id: mixed-line-ending args: - "--fix=lf" - id: trailing-whitespace exclude_types: - svg + - markdown + - json - id: check-case-conflict - id: detect-private-key diff --git a/.prettierignore b/.prettierignore index d28e550..1336a74 100644 --- a/.prettierignore +++ b/.prettierignore @@ -3,3 +3,4 @@ dist node_modules assets package-lock.json +*.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 483d520..678086a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,13 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +## [1.1.2] + +### Fixed + +Icon resources are not loaded and displayed in Chrome versions 130+ due to +`use_dynamic_urls` being functionally implemented. + ## [1.1.1] ### Added diff --git a/manifest-chrome.json b/manifest-chrome.json index d2d3785..5eeea36 100644 --- a/manifest-chrome.json +++ b/manifest-chrome.json @@ -1,7 +1,7 @@ { "manifest_version": 3, "name": "YT Quick Actions", - "version": "1.1.1", + "version": "1.1.2", "description": "Provide quick access to hidden YouTube actions.", "icons": { "16": "assets/extension-icons/chrome/icon16.png", @@ -30,8 +30,7 @@ "web_accessible_resources": [ { "resources": ["/assets/fontawesome/webfonts/*"], - "matches": ["https://www.youtube.com/*"], - "use_dynamic_url": true + "matches": ["https://www.youtube.com/*"] } ] } diff --git a/manifest-firefox.json b/manifest-firefox.json index 853aeb4..d088790 100644 --- a/manifest-firefox.json +++ b/manifest-firefox.json @@ -1,7 +1,7 @@ { "manifest_version": 2, "name": "YT Quick Actions", - "version": "1.1.1", + "version": "1.1.2", "description": "Provide quick access to hidden YouTube actions.", "icons": { "48": "assets/extension-icons/firefox/icon.svg",