material-icon-theme 4.23.1 → 4.25.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (108) hide show
  1. package/.eslintrc.json +51 -51
  2. package/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md +7 -0
  3. package/.github/workflows/build.yml +45 -45
  4. package/.github/workflows/color-check.yml +22 -22
  5. package/.github/workflows/release.yml +73 -73
  6. package/.vscodeignore +21 -21
  7. package/CHANGELOG.md +1325 -1292
  8. package/CONTRIBUTING.md +199 -29
  9. package/README.md +198 -199
  10. package/icons/bitbucket.svg +13 -1
  11. package/icons/bun.svg +2 -0
  12. package/icons/bun_light.svg +2 -0
  13. package/icons/craco.svg +45 -45
  14. package/icons/folder-changesets-open.svg +5 -5
  15. package/icons/folder-changesets.svg +2 -2
  16. package/icons/folder-decorators-open.svg +2 -2
  17. package/icons/folder-decorators.svg +5 -5
  18. package/icons/folder-gamemaker-open.svg +2 -0
  19. package/icons/folder-gamemaker.svg +2 -0
  20. package/icons/folder-supabase-open.svg +5 -5
  21. package/icons/folder-supabase.svg +2 -2
  22. package/icons/gamemaker.svg +4 -0
  23. package/icons/objective-c.svg +1 -0
  24. package/icons/objective-cpp.svg +1 -0
  25. package/icons/pascal.svg +6 -1
  26. package/icons/sonarcloud.svg +4 -4
  27. package/icons/stylable.svg +10 -10
  28. package/icons/supabase.svg +4 -4
  29. package/icons/tldraw.svg +4 -0
  30. package/icons/tldraw_light.svg +4 -0
  31. package/icons/vitest.svg +6 -6
  32. package/images/contributors.png +0 -0
  33. package/images/fileIcons.png +0 -0
  34. package/images/folderIcons.png +0 -0
  35. package/images/how-tos/folder-icon-parts.png +0 -0
  36. package/images/how-tos/pick-folder-colors.png +0 -0
  37. package/images/how-tos/pick-folder-colors.svg +301 -0
  38. package/images/how-tos/svg-folder-icon-with-correct-colors.png +0 -0
  39. package/images/how-tos/svg-folder-icon-with-wrong-colors.png +0 -0
  40. package/images/how-tos/svg-with-light-color.png +0 -0
  41. package/images/how-tos/svg-with-spacing.png +0 -0
  42. package/images/how-tos/svg-with-too-dark-color.png +0 -0
  43. package/images/how-tos/svg-with-wrong-color.png +0 -0
  44. package/images/how-tos/svg-without-spacing.png +0 -0
  45. package/package.json +252 -252
  46. package/package.nls.de.json +32 -32
  47. package/package.nls.es.json +29 -29
  48. package/package.nls.fr.json +29 -29
  49. package/package.nls.ja.json +32 -32
  50. package/package.nls.json +32 -32
  51. package/package.nls.nl.json +32 -32
  52. package/package.nls.pl.json +32 -32
  53. package/package.nls.pt-BR.json +29 -29
  54. package/package.nls.pt-PT.json +29 -29
  55. package/package.nls.ru.json +29 -29
  56. package/package.nls.zh-CN.json +29 -29
  57. package/package.nls.zh-TW.json +29 -29
  58. package/src/commands/activate.ts +28 -28
  59. package/src/commands/explorerArrows.ts +55 -55
  60. package/src/commands/folderColor.ts +96 -96
  61. package/src/commands/folders.ts +55 -55
  62. package/src/commands/grayscale.ts +55 -55
  63. package/src/commands/iconPacks.ts +64 -64
  64. package/src/commands/index.ts +30 -30
  65. package/src/commands/opacity.ts +46 -46
  66. package/src/commands/saturation.ts +46 -46
  67. package/src/extension.ts +37 -37
  68. package/src/helpers/customIcons.ts +8 -8
  69. package/src/helpers/index.ts +88 -88
  70. package/src/i18n/index.ts +78 -78
  71. package/src/i18n/lang-de.ts +43 -43
  72. package/src/i18n/lang-en.ts +43 -43
  73. package/src/i18n/lang-es.ts +43 -43
  74. package/src/i18n/lang-fr.ts +43 -43
  75. package/src/i18n/lang-ja.ts +43 -43
  76. package/src/i18n/lang-nl.ts +43 -43
  77. package/src/i18n/lang-pl.ts +43 -43
  78. package/src/i18n/lang-pt-br.ts +43 -43
  79. package/src/i18n/lang-pt-pt.ts +43 -43
  80. package/src/i18n/lang-ru.ts +43 -43
  81. package/src/i18n/lang-uk.ts +43 -43
  82. package/src/i18n/lang-zh-cn.ts +43 -43
  83. package/src/i18n/lang-zh-tw.ts +43 -43
  84. package/src/icons/fileIcons.ts +2240 -2197
  85. package/src/icons/folderIcons.ts +823 -806
  86. package/src/icons/generator/folderGenerator.ts +340 -340
  87. package/src/icons/generator/iconOpacity.ts +111 -111
  88. package/src/icons/generator/iconSaturation.ts +140 -140
  89. package/src/icons/generator/jsonGenerator.ts +191 -191
  90. package/src/icons/languageIcons.ts +144 -141
  91. package/src/models/i18n/translation.ts +41 -41
  92. package/src/models/iconConfiguration.ts +37 -37
  93. package/src/models/icons/iconJsonOptions.ts +21 -21
  94. package/src/models/index.ts +3 -3
  95. package/src/scripts/contributors/index.ts +138 -138
  96. package/src/scripts/helpers/screenshots.ts +32 -32
  97. package/src/scripts/icons/checks/checkIconAvailability.ts +215 -215
  98. package/src/scripts/icons/checks/checkIconConflicts.ts +152 -152
  99. package/src/scripts/icons/checks/checkIconUsage.ts +137 -137
  100. package/src/scripts/icons/checks/index.ts +7 -7
  101. package/src/scripts/preview/index.ts +40 -40
  102. package/src/scripts/preview/preview.ts +163 -163
  103. package/src/test/runTest.ts +26 -26
  104. package/src/test/spec/i18n/i18n.spec.ts +54 -54
  105. package/src/test/spec/icons/fileIcons.spec.ts +250 -250
  106. package/src/test/spec/icons/folderIcons.spec.ts +418 -418
  107. package/src/test/spec/icons/languageIcons.spec.ts +184 -184
  108. package/images/bloop.png +0 -0
package/package.json CHANGED
@@ -1,252 +1,252 @@
1
- {
2
- "name": "material-icon-theme",
3
- "displayName": "Material Icon Theme",
4
- "description": "Material Design Icons for Visual Studio Code",
5
- "version": "4.23.1",
6
- "scripts": {
7
- "build": "npm run compile:dev && npm run generateJson",
8
- "check": "ts-node ./src/scripts/icons/checks",
9
- "compile": "webpack --config ./build/webpack.config.js --mode production",
10
- "compile:dev": "webpack --config ./build/webpack.config.js --mode none",
11
- "compile:watch": "webpack --config ./build/webpack.config.js --mode none --watch",
12
- "compile-web": "webpack --config ./build/web-extension.webpack.config.js",
13
- "watch-web": "webpack --watch --config ./build/web-extension.webpack.config.js",
14
- "package-web": "webpack --mode production --devtool hidden-source-map --config ./build/web-extension.webpack.config.js",
15
- "contributors": "ts-node ./src/scripts/contributors/index.ts",
16
- "generateJson": "ts-node ./src/scripts/icons/generateJson.ts",
17
- "lint": "eslint -c .eslintrc.json --ext .ts ./src/**/*.ts",
18
- "postcompile": "npm run generateJson && npm run check",
19
- "pretest": "npm run build && tsc -p ./",
20
- "preview": "ts-node ./src/scripts/preview",
21
- "svgo": "svgo -i icons -o icons -q",
22
- "test": "node ./out/test/runTest.js",
23
- "changelog": "changelog-machine --config changelog.config.json",
24
- "preversion": "npm run contributors && git add images/contributors.png && npm run preview && git add images/fileIcons.png && git add images/folderIcons.png",
25
- "version": "npm run changelog && git add CHANGELOG.md",
26
- "vscode:prepublish": "npm run lint && npm run compile && npm run package-web"
27
- },
28
- "publisher": "PKief",
29
- "author": {
30
- "name": "Philipp Kief",
31
- "email": "philipp.kief@gmx.de",
32
- "url": "https://pkief.github.io"
33
- },
34
- "funding": "https://github.com/sponsors/PKief",
35
- "sponsor": {
36
- "url": "https://github.com/sponsors/PKief"
37
- },
38
- "engines": {
39
- "vscode": "^1.51.0"
40
- },
41
- "homepage": "https://github.com/PKief/vscode-material-icon-theme/blob/main/README.md",
42
- "repository": {
43
- "type": "git",
44
- "url": "https://github.com/PKief/vscode-material-icon-theme.git"
45
- },
46
- "bugs": {
47
- "url": "https://github.com/PKief/vscode-material-icon-theme/issues"
48
- },
49
- "icon": "logo.png",
50
- "galleryBanner": {
51
- "color": "#1e1e1e",
52
- "theme": "dark"
53
- },
54
- "categories": [
55
- "Themes"
56
- ],
57
- "keywords": [
58
- "icons",
59
- "theme",
60
- "material",
61
- "icon-theme",
62
- "customization"
63
- ],
64
- "extensionKind": [
65
- "ui",
66
- "workspace"
67
- ],
68
- "capabilities": {
69
- "untrustedWorkspaces": {
70
- "supported": true
71
- },
72
- "virtualWorkspaces": true
73
- },
74
- "activationEvents": [
75
- "onStartupFinished"
76
- ],
77
- "main": "./dist/extension",
78
- "browser": "./dist/web/extension.js",
79
- "sideEffects": false,
80
- "contributes": {
81
- "iconThemes": [
82
- {
83
- "id": "material-icon-theme",
84
- "label": "Material Icon Theme",
85
- "path": "./dist/material-icons.json",
86
- "_watch": true
87
- }
88
- ],
89
- "commands": [
90
- {
91
- "command": "material-icon-theme.activateIcons",
92
- "title": "%command.activateIcons%",
93
- "enablement": "!isWeb"
94
- },
95
- {
96
- "command": "material-icon-theme.toggleIconPacks",
97
- "title": "%command.toggleIconPacks%",
98
- "enablement": "!isWeb"
99
- },
100
- {
101
- "command": "material-icon-theme.changeFolderTheme",
102
- "title": "%command.changeFolderTheme%",
103
- "enablement": "!isWeb"
104
- },
105
- {
106
- "command": "material-icon-theme.changeFolderColor",
107
- "title": "%command.changeFolderColor%",
108
- "enablement": "!isWeb"
109
- },
110
- {
111
- "command": "material-icon-theme.restoreDefaultConfig",
112
- "title": "%command.restoreDefaultConfig%",
113
- "enablement": "!isWeb"
114
- },
115
- {
116
- "command": "material-icon-theme.toggleExplorerArrows",
117
- "title": "%command.toggleExplorerArrows%",
118
- "enablement": "!isWeb"
119
- },
120
- {
121
- "command": "material-icon-theme.changeOpacity",
122
- "title": "%command.changeOpacity%",
123
- "enablement": "!isWeb"
124
- },
125
- {
126
- "command": "material-icon-theme.toggleGrayscale",
127
- "title": "%command.toggleGrayscale%",
128
- "enablement": "!isWeb"
129
- },
130
- {
131
- "command": "material-icon-theme.changeSaturation",
132
- "title": "%command.changeSaturation%",
133
- "enablement": "!isWeb"
134
- }
135
- ],
136
- "configuration": {
137
- "type": "object",
138
- "title": "%configuration.title%",
139
- "properties": {
140
- "material-icon-theme.activeIconPack": {
141
- "type": "string",
142
- "default": "angular",
143
- "description": "%configuration.activeIconPack%",
144
- "enumDescriptions": [
145
- "%configuration.activeIconPack.angular%",
146
- "%configuration.activeIconPack.angular_ngrx%",
147
- "%configuration.activeIconPack.react%",
148
- "%configuration.activeIconPack.react_redux%",
149
- "%configuration.activeIconPack.vue%",
150
- "%configuration.activeIconPack.vue_vuex%",
151
- "%configuration.activeIconPack.nest%",
152
- "%configuration.activeIconPack.none%"
153
- ],
154
- "enum": [
155
- "angular",
156
- "angular_ngrx",
157
- "react",
158
- "react_redux",
159
- "vue",
160
- "vue_vuex",
161
- "nest",
162
- "none"
163
- ]
164
- },
165
- "material-icon-theme.files.associations": {
166
- "type": "object",
167
- "default": {},
168
- "description": "%configuration.files.associations%"
169
- },
170
- "material-icon-theme.folders.associations": {
171
- "type": "object",
172
- "default": {},
173
- "description": "%configuration.folders.associations%"
174
- },
175
- "material-icon-theme.languages.associations": {
176
- "type": "object",
177
- "default": {},
178
- "description": "%configuration.languages.associations%"
179
- },
180
- "material-icon-theme.folders.theme": {
181
- "type": "string",
182
- "default": "specific",
183
- "description": "%configuration.folders.theme%",
184
- "enumDescriptions": [
185
- "%configuration.folders.theme.specific%",
186
- "%configuration.folders.theme.classic%",
187
- "%configuration.folders.theme.none%"
188
- ],
189
- "enum": [
190
- "specific",
191
- "classic",
192
- "none"
193
- ]
194
- },
195
- "material-icon-theme.folders.color": {
196
- "type": "string",
197
- "default": "#90a4ae",
198
- "pattern": "^#([A-Fa-f0-9]{6}|[A-Fa-f0-9]{3})$",
199
- "description": "%configuration.folders.color%"
200
- },
201
- "material-icon-theme.opacity": {
202
- "type": "number",
203
- "default": 1,
204
- "minimum": 0,
205
- "maximum": 1,
206
- "description": "%configuration.opacity%"
207
- },
208
- "material-icon-theme.hidesExplorerArrows": {
209
- "type": "boolean",
210
- "default": false,
211
- "description": "%configuration.hidesExplorerArrows%"
212
- },
213
- "material-icon-theme.saturation": {
214
- "type": "number",
215
- "default": 1,
216
- "minimum": 0,
217
- "maximum": 1,
218
- "description": "%configuration.saturation%"
219
- }
220
- }
221
- }
222
- },
223
- "dependencies": {
224
- "lodash.merge": "4.6.2"
225
- },
226
- "devDependencies": {
227
- "@types/glob": "^7.2.0",
228
- "@types/lodash.merge": "^4.6.7",
229
- "@types/mocha": "^9.1.1",
230
- "@types/node": "^17.0.35",
231
- "@types/puppeteer": "^5.4.6",
232
- "@types/vscode": "~1.51.0",
233
- "@typescript-eslint/eslint-plugin": "^5.26.0",
234
- "@typescript-eslint/parser": "^5.26.0",
235
- "changelog-machine": "^1.0.2",
236
- "eslint": "^8.16.0",
237
- "eslint-config-prettier": "^8.5.0",
238
- "eslint-plugin-prettier": "^4.0.0",
239
- "glob": "^8.0.3",
240
- "mocha": "^10.0.0",
241
- "prettier": "^2.6.2",
242
- "puppeteer": "^14.1.1",
243
- "rimraf": "^3.0.2",
244
- "svgo": "^2.8.0",
245
- "ts-loader": "^9.3.0",
246
- "ts-node": "^10.8.0",
247
- "typescript": "^4.7.2",
248
- "vscode-test": "^1.6.1",
249
- "webpack": "^5.71.1",
250
- "webpack-cli": "^4.9.2"
251
- }
252
- }
1
+ {
2
+ "name": "material-icon-theme",
3
+ "displayName": "Material Icon Theme",
4
+ "description": "Material Design Icons for Visual Studio Code",
5
+ "version": "4.25.0",
6
+ "scripts": {
7
+ "build": "npm run compile:dev && npm run generateJson",
8
+ "check": "ts-node ./src/scripts/icons/checks",
9
+ "compile": "webpack --config ./build/webpack.config.js --mode production",
10
+ "compile:dev": "webpack --config ./build/webpack.config.js --mode none",
11
+ "compile:watch": "webpack --config ./build/webpack.config.js --mode none --watch",
12
+ "compile-web": "webpack --config ./build/web-extension.webpack.config.js",
13
+ "watch-web": "webpack --watch --config ./build/web-extension.webpack.config.js",
14
+ "package-web": "webpack --mode production --devtool hidden-source-map --config ./build/web-extension.webpack.config.js",
15
+ "contributors": "ts-node ./src/scripts/contributors/index.ts",
16
+ "generateJson": "ts-node ./src/scripts/icons/generateJson.ts",
17
+ "lint": "eslint -c .eslintrc.json --ext .ts ./src/**/*.ts",
18
+ "postcompile": "npm run generateJson && npm run check",
19
+ "pretest": "npm run build && tsc -p ./",
20
+ "preview": "ts-node ./src/scripts/preview",
21
+ "svgo": "svgo -i icons -o icons -q",
22
+ "test": "node ./out/test/runTest.js",
23
+ "changelog": "changelog-machine --config changelog.config.json",
24
+ "preversion": "npm run contributors && git add images/contributors.png && npm run preview && git add images/fileIcons.png && git add images/folderIcons.png",
25
+ "version": "npm run changelog && git add CHANGELOG.md",
26
+ "vscode:prepublish": "npm run lint && npm run compile && npm run package-web"
27
+ },
28
+ "publisher": "PKief",
29
+ "author": {
30
+ "name": "Philipp Kief",
31
+ "email": "philipp.kief@gmx.de",
32
+ "url": "https://pkief.github.io"
33
+ },
34
+ "funding": "https://github.com/sponsors/PKief",
35
+ "sponsor": {
36
+ "url": "https://github.com/sponsors/PKief"
37
+ },
38
+ "engines": {
39
+ "vscode": "^1.51.0"
40
+ },
41
+ "homepage": "https://github.com/PKief/vscode-material-icon-theme/blob/main/README.md",
42
+ "repository": {
43
+ "type": "git",
44
+ "url": "https://github.com/PKief/vscode-material-icon-theme.git"
45
+ },
46
+ "bugs": {
47
+ "url": "https://github.com/PKief/vscode-material-icon-theme/issues"
48
+ },
49
+ "icon": "logo.png",
50
+ "galleryBanner": {
51
+ "color": "#1e1e1e",
52
+ "theme": "dark"
53
+ },
54
+ "categories": [
55
+ "Themes"
56
+ ],
57
+ "keywords": [
58
+ "icons",
59
+ "theme",
60
+ "material",
61
+ "icon-theme",
62
+ "customization"
63
+ ],
64
+ "extensionKind": [
65
+ "ui",
66
+ "workspace"
67
+ ],
68
+ "capabilities": {
69
+ "untrustedWorkspaces": {
70
+ "supported": true
71
+ },
72
+ "virtualWorkspaces": true
73
+ },
74
+ "activationEvents": [
75
+ "onStartupFinished"
76
+ ],
77
+ "main": "./dist/extension",
78
+ "browser": "./dist/web/extension.js",
79
+ "sideEffects": false,
80
+ "contributes": {
81
+ "iconThemes": [
82
+ {
83
+ "id": "material-icon-theme",
84
+ "label": "Material Icon Theme",
85
+ "path": "./dist/material-icons.json",
86
+ "_watch": true
87
+ }
88
+ ],
89
+ "commands": [
90
+ {
91
+ "command": "material-icon-theme.activateIcons",
92
+ "title": "%command.activateIcons%",
93
+ "enablement": "!isWeb"
94
+ },
95
+ {
96
+ "command": "material-icon-theme.toggleIconPacks",
97
+ "title": "%command.toggleIconPacks%",
98
+ "enablement": "!isWeb"
99
+ },
100
+ {
101
+ "command": "material-icon-theme.changeFolderTheme",
102
+ "title": "%command.changeFolderTheme%",
103
+ "enablement": "!isWeb"
104
+ },
105
+ {
106
+ "command": "material-icon-theme.changeFolderColor",
107
+ "title": "%command.changeFolderColor%",
108
+ "enablement": "!isWeb"
109
+ },
110
+ {
111
+ "command": "material-icon-theme.restoreDefaultConfig",
112
+ "title": "%command.restoreDefaultConfig%",
113
+ "enablement": "!isWeb"
114
+ },
115
+ {
116
+ "command": "material-icon-theme.toggleExplorerArrows",
117
+ "title": "%command.toggleExplorerArrows%",
118
+ "enablement": "!isWeb"
119
+ },
120
+ {
121
+ "command": "material-icon-theme.changeOpacity",
122
+ "title": "%command.changeOpacity%",
123
+ "enablement": "!isWeb"
124
+ },
125
+ {
126
+ "command": "material-icon-theme.toggleGrayscale",
127
+ "title": "%command.toggleGrayscale%",
128
+ "enablement": "!isWeb"
129
+ },
130
+ {
131
+ "command": "material-icon-theme.changeSaturation",
132
+ "title": "%command.changeSaturation%",
133
+ "enablement": "!isWeb"
134
+ }
135
+ ],
136
+ "configuration": {
137
+ "type": "object",
138
+ "title": "%configuration.title%",
139
+ "properties": {
140
+ "material-icon-theme.activeIconPack": {
141
+ "type": "string",
142
+ "default": "angular",
143
+ "description": "%configuration.activeIconPack%",
144
+ "enumDescriptions": [
145
+ "%configuration.activeIconPack.angular%",
146
+ "%configuration.activeIconPack.angular_ngrx%",
147
+ "%configuration.activeIconPack.react%",
148
+ "%configuration.activeIconPack.react_redux%",
149
+ "%configuration.activeIconPack.vue%",
150
+ "%configuration.activeIconPack.vue_vuex%",
151
+ "%configuration.activeIconPack.nest%",
152
+ "%configuration.activeIconPack.none%"
153
+ ],
154
+ "enum": [
155
+ "angular",
156
+ "angular_ngrx",
157
+ "react",
158
+ "react_redux",
159
+ "vue",
160
+ "vue_vuex",
161
+ "nest",
162
+ "none"
163
+ ]
164
+ },
165
+ "material-icon-theme.files.associations": {
166
+ "type": "object",
167
+ "default": {},
168
+ "description": "%configuration.files.associations%"
169
+ },
170
+ "material-icon-theme.folders.associations": {
171
+ "type": "object",
172
+ "default": {},
173
+ "description": "%configuration.folders.associations%"
174
+ },
175
+ "material-icon-theme.languages.associations": {
176
+ "type": "object",
177
+ "default": {},
178
+ "description": "%configuration.languages.associations%"
179
+ },
180
+ "material-icon-theme.folders.theme": {
181
+ "type": "string",
182
+ "default": "specific",
183
+ "description": "%configuration.folders.theme%",
184
+ "enumDescriptions": [
185
+ "%configuration.folders.theme.specific%",
186
+ "%configuration.folders.theme.classic%",
187
+ "%configuration.folders.theme.none%"
188
+ ],
189
+ "enum": [
190
+ "specific",
191
+ "classic",
192
+ "none"
193
+ ]
194
+ },
195
+ "material-icon-theme.folders.color": {
196
+ "type": "string",
197
+ "default": "#90a4ae",
198
+ "pattern": "^#([A-Fa-f0-9]{6}|[A-Fa-f0-9]{3})$",
199
+ "description": "%configuration.folders.color%"
200
+ },
201
+ "material-icon-theme.opacity": {
202
+ "type": "number",
203
+ "default": 1,
204
+ "minimum": 0,
205
+ "maximum": 1,
206
+ "description": "%configuration.opacity%"
207
+ },
208
+ "material-icon-theme.hidesExplorerArrows": {
209
+ "type": "boolean",
210
+ "default": false,
211
+ "description": "%configuration.hidesExplorerArrows%"
212
+ },
213
+ "material-icon-theme.saturation": {
214
+ "type": "number",
215
+ "default": 1,
216
+ "minimum": 0,
217
+ "maximum": 1,
218
+ "description": "%configuration.saturation%"
219
+ }
220
+ }
221
+ }
222
+ },
223
+ "dependencies": {
224
+ "lodash.merge": "4.6.2"
225
+ },
226
+ "devDependencies": {
227
+ "@types/glob": "^7.2.0",
228
+ "@types/lodash.merge": "^4.6.7",
229
+ "@types/mocha": "^9.1.1",
230
+ "@types/node": "^17.0.35",
231
+ "@types/puppeteer": "^5.4.6",
232
+ "@types/vscode": "~1.51.0",
233
+ "@typescript-eslint/eslint-plugin": "^5.26.0",
234
+ "@typescript-eslint/parser": "^5.26.0",
235
+ "changelog-machine": "^1.0.2",
236
+ "eslint": "^8.16.0",
237
+ "eslint-config-prettier": "^8.5.0",
238
+ "eslint-plugin-prettier": "^4.0.0",
239
+ "glob": "^8.0.3",
240
+ "mocha": "^10.0.0",
241
+ "prettier": "^2.6.2",
242
+ "puppeteer": "^14.1.1",
243
+ "rimraf": "^3.0.2",
244
+ "svgo": "^2.8.0",
245
+ "ts-loader": "^9.3.0",
246
+ "ts-node": "^10.8.0",
247
+ "typescript": "^4.7.2",
248
+ "vscode-test": "^1.6.1",
249
+ "webpack": "^5.71.1",
250
+ "webpack-cli": "^4.9.2"
251
+ }
252
+ }
@@ -1,32 +1,32 @@
1
- {
2
- "command.activateIcons": "Material Icons: Icon Theme aktivieren",
3
- "command.toggleIconPacks": "Material Icons: Icon Packs konfigurieren",
4
- "command.changeFolderTheme": "Material Icons: Ordner Thema auswählen",
5
- "command.changeFolderColor": "Material Icons: Ordner Farbe ändern",
6
- "command.restoreDefaultConfig": "Material Icons: Standard Einstellungen wiederherstellen",
7
- "command.toggleExplorerArrows": "Material Icons: Explorer Pfeilsymbole umschalten",
8
- "command.changeOpacity": "Material Icons: Deckkraft verändern",
9
- "command.toggleGrayscale": "Material Icons: Graustufen umschalten",
10
- "command.changeSaturation": "Material Icons: Sättigung verändern",
11
- "configuration.title": "Material Icons",
12
- "configuration.files.associations": "Benutzerdefinierte Datei Icons konfigurieren.",
13
- "configuration.folders.associations": "Benutzerdefinierte Ordner Icons konfigurieren.",
14
- "configuration.languages.associations": "Benutzerdefinierte Language Icons konfigurieren.",
15
- "configuration.activeIconPack": "Icon-Pack auswählen, die bestimme Icons aktivieren.",
16
- "configuration.activeIconPack.angular": "Icons für Angular",
17
- "configuration.activeIconPack.angular_ngrx": "Icons für Angular und Ngrx",
18
- "configuration.activeIconPack.react": "Icons für React",
19
- "configuration.activeIconPack.react_redux": "Icons für React und Redux",
20
- "configuration.activeIconPack.vue": "Icons für Vue.",
21
- "configuration.activeIconPack.vue_vuex": "Icons für Vue und Vuex.",
22
- "configuration.activeIconPack.nest": "Icons für NestJS.",
23
- "configuration.activeIconPack.none": "Kein Icon-Pack aktiviert.",
24
- "configuration.folders.theme": "Art der Ordner Icons auswählen.",
25
- "configuration.folders.theme.specific": "Spezifische Ordner Icons auswählen.",
26
- "configuration.folders.theme.classic": "Klassische Ordner Icons auswählen.",
27
- "configuration.folders.theme.none": "Keine Ordner Icons.",
28
- "configuration.folders.color": "Farbe der Ordner Icons verändern.",
29
- "configuration.hidesExplorerArrows": "Pfeile vor den Ordnern deaktivieren.",
30
- "configuration.opacity": "Deckkraft der Icons anpassen.",
31
- "configuration.saturation": "Sättigung der Icons anpassen."
32
- }
1
+ {
2
+ "command.activateIcons": "Material Icons: Icon Theme aktivieren",
3
+ "command.toggleIconPacks": "Material Icons: Icon Packs konfigurieren",
4
+ "command.changeFolderTheme": "Material Icons: Ordner Thema auswählen",
5
+ "command.changeFolderColor": "Material Icons: Ordner Farbe ändern",
6
+ "command.restoreDefaultConfig": "Material Icons: Standard Einstellungen wiederherstellen",
7
+ "command.toggleExplorerArrows": "Material Icons: Explorer Pfeilsymbole umschalten",
8
+ "command.changeOpacity": "Material Icons: Deckkraft verändern",
9
+ "command.toggleGrayscale": "Material Icons: Graustufen umschalten",
10
+ "command.changeSaturation": "Material Icons: Sättigung verändern",
11
+ "configuration.title": "Material Icons",
12
+ "configuration.files.associations": "Benutzerdefinierte Datei Icons konfigurieren.",
13
+ "configuration.folders.associations": "Benutzerdefinierte Ordner Icons konfigurieren.",
14
+ "configuration.languages.associations": "Benutzerdefinierte Language Icons konfigurieren.",
15
+ "configuration.activeIconPack": "Icon-Pack auswählen, die bestimme Icons aktivieren.",
16
+ "configuration.activeIconPack.angular": "Icons für Angular",
17
+ "configuration.activeIconPack.angular_ngrx": "Icons für Angular und Ngrx",
18
+ "configuration.activeIconPack.react": "Icons für React",
19
+ "configuration.activeIconPack.react_redux": "Icons für React und Redux",
20
+ "configuration.activeIconPack.vue": "Icons für Vue.",
21
+ "configuration.activeIconPack.vue_vuex": "Icons für Vue und Vuex.",
22
+ "configuration.activeIconPack.nest": "Icons für NestJS.",
23
+ "configuration.activeIconPack.none": "Kein Icon-Pack aktiviert.",
24
+ "configuration.folders.theme": "Art der Ordner Icons auswählen.",
25
+ "configuration.folders.theme.specific": "Spezifische Ordner Icons auswählen.",
26
+ "configuration.folders.theme.classic": "Klassische Ordner Icons auswählen.",
27
+ "configuration.folders.theme.none": "Keine Ordner Icons.",
28
+ "configuration.folders.color": "Farbe der Ordner Icons verändern.",
29
+ "configuration.hidesExplorerArrows": "Pfeile vor den Ordnern deaktivieren.",
30
+ "configuration.opacity": "Deckkraft der Icons anpassen.",
31
+ "configuration.saturation": "Sättigung der Icons anpassen."
32
+ }
@@ -1,29 +1,29 @@
1
- {
2
- "command.activateIcons": "Material Icon Theme: Activar los iconos",
3
- "command.toggleIconPacks": "Material Icons: Configurar paquetes de iconos",
4
- "command.changeFolderTheme": "Material Icons: Personalizar iconos de carpetas",
5
- "command.changeFolderColor": "Material Icons: Cambiar color de carpeta",
6
- "command.restoreDefaultConfig": "Material Icons: Restaurar la configuración predeterminada",
7
- "command.toggleExplorerArrows": "Material Icons: Deshabilitar flechas delante de carpetas",
8
- "command.changeOpacity": "Material Icons: Cambiar la opacidad",
9
- "configuration.title": "Material Icons",
10
- "configuration.files.associations": "Configurar asociaciones personalizadas de iconos de archivos.",
11
- "configuration.folders.associations": "Configurar asociaciones personalizadas de iconos de carpetas.",
12
- "configuration.languages.associations": "Configurar asociaciones personalizadas de iconos de idioma.",
13
- "configuration.activeIconPack": "Seleccione un paquete de iconos que permita iconos específicos.",
14
- "configuration.activeIconPack.angular": "Iconos de Angular.",
15
- "configuration.activeIconPack.angular_ngrx": "Iconos de Angular y ngrx.",
16
- "configuration.activeIconPack.react": "Iconos de React.",
17
- "configuration.activeIconPack.react_redux": "Iconos de React y Redux.",
18
- "configuration.activeIconPack.vue": "Iconos de Vue.",
19
- "configuration.activeIconPack.vue_vuex": "Iconos de Vue y Vuex.",
20
- "configuration.activeIconPack.nest": "Iconos de NestJS.",
21
- "configuration.activeIconPack.none": "No hay ningún paquete de iconos activo.",
22
- "configuration.folders.theme": "Seleccione el tipo de iconos de carpeta.",
23
- "configuration.folders.theme.specific": "Seleccione iconos de carpeta específicos.",
24
- "configuration.folders.theme.classic": "Seleccione iconos de carpetas clásicas.",
25
- "configuration.folders.theme.none": "Sin iconos de carpeta.",
26
- "configuration.folders.color": "Cambia el color de las carpetas.",
27
- "configuration.hidesExplorerArrows": "Deshabilitar flechas delante de carpetas.",
28
- "configuration.opacity": "Cambia la opacidad de los iconos."
29
- }
1
+ {
2
+ "command.activateIcons": "Material Icon Theme: Activar los iconos",
3
+ "command.toggleIconPacks": "Material Icons: Configurar paquetes de iconos",
4
+ "command.changeFolderTheme": "Material Icons: Personalizar iconos de carpetas",
5
+ "command.changeFolderColor": "Material Icons: Cambiar color de carpeta",
6
+ "command.restoreDefaultConfig": "Material Icons: Restaurar la configuración predeterminada",
7
+ "command.toggleExplorerArrows": "Material Icons: Deshabilitar flechas delante de carpetas",
8
+ "command.changeOpacity": "Material Icons: Cambiar la opacidad",
9
+ "configuration.title": "Material Icons",
10
+ "configuration.files.associations": "Configurar asociaciones personalizadas de iconos de archivos.",
11
+ "configuration.folders.associations": "Configurar asociaciones personalizadas de iconos de carpetas.",
12
+ "configuration.languages.associations": "Configurar asociaciones personalizadas de iconos de idioma.",
13
+ "configuration.activeIconPack": "Seleccione un paquete de iconos que permita iconos específicos.",
14
+ "configuration.activeIconPack.angular": "Iconos de Angular.",
15
+ "configuration.activeIconPack.angular_ngrx": "Iconos de Angular y ngrx.",
16
+ "configuration.activeIconPack.react": "Iconos de React.",
17
+ "configuration.activeIconPack.react_redux": "Iconos de React y Redux.",
18
+ "configuration.activeIconPack.vue": "Iconos de Vue.",
19
+ "configuration.activeIconPack.vue_vuex": "Iconos de Vue y Vuex.",
20
+ "configuration.activeIconPack.nest": "Iconos de NestJS.",
21
+ "configuration.activeIconPack.none": "No hay ningún paquete de iconos activo.",
22
+ "configuration.folders.theme": "Seleccione el tipo de iconos de carpeta.",
23
+ "configuration.folders.theme.specific": "Seleccione iconos de carpeta específicos.",
24
+ "configuration.folders.theme.classic": "Seleccione iconos de carpetas clásicas.",
25
+ "configuration.folders.theme.none": "Sin iconos de carpeta.",
26
+ "configuration.folders.color": "Cambia el color de las carpetas.",
27
+ "configuration.hidesExplorerArrows": "Deshabilitar flechas delante de carpetas.",
28
+ "configuration.opacity": "Cambia la opacidad de los iconos."
29
+ }