Skip to content

Commit c975894

Browse files
chore(release): v1.10.6
1 parent a14b7d7 commit c975894

File tree

5 files changed

+44
-15
lines changed

5 files changed

+44
-15
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# Changelog
22

3+
## v1.10.6
4+
5+
[compare changes](https://github.com/material-extensions/material-icons-browser-extension/compare/v1.10.5...v1.10.6)
6+
7+
### 🩹 Fixes
8+
9+
- Missing icons on Github Actions and Workflows ([#125](https://github.com/material-extensions/material-icons-browser-extension/pull/125))
10+
- Update contributor link in changelog ([37f4215](https://github.com/material-extensions/material-icons-browser-extension/commit/37f4215))
11+
- Add missing icon for file-diff in GitHub provider ([#127](https://github.com/material-extensions/material-icons-browser-extension/pull/127))
12+
13+
### 🏡 Chore
14+
15+
- Update dependencies ([a14b7d7](https://github.com/material-extensions/material-icons-browser-extension/commit/a14b7d7))
16+
17+
### ❤️ Contributors
18+
19+
- Philipp Kief ([@PKief](https://github.com/PKief))
20+
- Yen Cheng Lin
21+
322
## v1.10.5
423

524
[compare changes](https://github.com/material-extensions/material-icons-browser-extension/compare/v1.10.4...v1.10.5)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
---
1616

17-
<a href="https://github.com/material-extensions/vscode-material-icon-theme"><img src="https://img.shields.io/badge/last_built_with_vscode_theme-v5.24.0-blue" /></a>
17+
<a href="https://github.com/material-extensions/vscode-material-icon-theme"><img src="https://img.shields.io/badge/last_built_with_vscode_theme-v5.25.0-blue" /></a>
1818

1919
<img valign="middle" src="https://img.shields.io/chrome-web-store/v/bggfcpfjbdkhfhfmkjpbhnkhnpjjeomc?label=Version%20Available%20in%20Chrome%20Store">
2020

package-lock.json

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

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "material-icons-browser-extension",
3-
"version": "1.10.5",
3+
"version": "1.10.6",
44
"description": "Browser Addon that enhances file browsers of version controls with material icons.",
55
"main": "src/main.ts",
66
"author": {
@@ -22,7 +22,7 @@
2222
"@emotion/styled": "11.14.1",
2323
"@mui/icons-material": "7.2.0",
2424
"@mui/material": "7.2.0",
25-
"material-icon-theme": "5.24.0",
25+
"material-icon-theme": "5.25.0",
2626
"react": "19.1.0",
2727
"react-dom": "19.1.0",
2828
"selector-observer": "2.1.6",

src/manifests/base.json

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Material Icons for GitHub",
3-
"version": "1.10.5",
3+
"version": "1.10.6",
44
"description": "Material icons for the file browser of popular websites like GitHub, Azure, Bitbucket etc.",
55
"homepage_url": "https://github.com/material-extensions/material-icons-browser-extension",
66
"icons": {
@@ -21,20 +21,30 @@
2121
"*://gitee.com/*",
2222
"*://sourceforge.net/*"
2323
],
24-
"js": ["./main.js"],
25-
"css": ["./injected-styles.css"],
24+
"js": [
25+
"./main.js"
26+
],
27+
"css": [
28+
"./injected-styles.css"
29+
],
2630
"run_at": "document_start"
2731
}
2832
],
2933
"options_ui": {
3034
"page": "options.html",
3135
"open_in_tab": true
3236
},
33-
"permissions": ["storage", "activeTab", "scripting"],
37+
"permissions": [
38+
"storage",
39+
"activeTab",
40+
"scripting"
41+
],
3442
"manifest_version": 3,
3543
"web_accessible_resources": [
3644
{
37-
"resources": ["*.svg"],
45+
"resources": [
46+
"*.svg"
47+
],
3848
"matches": [
3949
"*://github.com/*",
4050
"*://bitbucket.org/*",

0 commit comments

Comments
 (0)