Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ coverage/
karma.conf.js
.eslintrc.js
tailwind.config.js
*.md
3 changes: 3 additions & 0 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@ autolabeler:
branch:
- "/^fix/"
- "/^bugfix/"
- "/^hotfix/"
title:
- "/^fix/i"
- "/^bugfix/i"
- "/^hotfix/i"
- label: "enhancement"
branch:
- "/^feature/"
Expand All @@ -21,6 +23,7 @@ categories:
- "fix"
- "bugfix"
- "bug"
- "hotfix"
exclude-labels:
- "skip-changelog"
category-template: "### $TITLE"
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ name: "Release"
run-name: "Release ${{ github.ref_name }}"
on:
push:
tags: "*"
tags:
- "[0-9]+.[0-9]+.[0-9]+"

jobs:
linting:
Expand Down
13 changes: 12 additions & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ dist
node_modules
assets
package-lock.json
*.md
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 2 additions & 3 deletions manifest-chrome.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -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/*"]
}
]
}
2 changes: 1 addition & 1 deletion manifest-firefox.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
Loading