Skip to content

Commit 1cb5b8f

Browse files
committed
v0.6.0
Read more about `v0.6.0` in CHANGELOG.md.
1 parent efa0355 commit 1cb5b8f

12 files changed

+93
-13
lines changed

.vscode/svg.code-snippets

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,24 +9,24 @@
99
"\t<title>${3:${TM_FILENAME_BASE/[\\-]/ /g}}</title>",
1010
"</svg>"
1111
],
12-
"description": "Doctype for .svg files"
12+
"description": "Doctype for `.svg` files"
1313
},
1414
"Fill Property": {
1515
"scope": "xml",
1616
"prefix": ["fill", "svgfill"],
1717
"body": "fill=\"${1|none,#121212,#f4f4f4|}\"",
18-
"description": "Fill Property for a part of a image"
18+
"description": "`fill` Property for a part of a image"
1919
},
2020
"Stroke Property": {
2121
"scope": "xml",
2222
"prefix": ["stroke", "svgstroke"],
23-
"body": "stroke=\"${1|#121212,#f4f4f4|}\"",
24-
"description": "Stroke Property for an element"
23+
"body": "stroke=\"${1|none,#121212,#f4f4f4|}\"",
24+
"description": "`stroke` Property for an element"
2525
},
2626
"Stroke Width": {
2727
"scope": "xml",
2828
"prefix": ["strkwidth", "strokewidth"],
2929
"body": "stroke-width=\"${1:1}\"",
30-
"description": "Stroke-Width Property for a figure"
30+
"description": "`stroke-width` Property for a figure"
3131
}
3232
}

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1414
### Fixed
1515
### Security
1616
-->
17+
## [0.6.0](https://github.com/VitalikLevin/steamyfish-theme/releases/tag/v0.6.0)
18+
> Release Date: 2023-02-17
1719
### Added
18-
- File Icons: Batch, Visual Basic and XML
20+
- File Icons: Batch, HTML, Ruby, SVG, Visual Basic and XML
1921
- Icon for extension: `rtf`
2022
- Icons for languages: `git-commit` and `git-rebase`
2123

fileicons/steamyfish-icon-theme.json

Lines changed: 26 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,24 @@
143143
},
144144
"xml-light": {
145145
"iconPath": "../icons/xml-light.svg"
146+
},
147+
"ruby-dark": {
148+
"iconPath": "../icons/ruby-dark.svg"
149+
},
150+
"ruby-light": {
151+
"iconPath": "../icons/ruby-light.svg"
152+
},
153+
"html-dark": {
154+
"iconPath": "../icons/html-dark.svg"
155+
},
156+
"html-light": {
157+
"iconPath": "../icons/html-light.svg"
158+
},
159+
"svg-dark": {
160+
"iconPath": "../icons/svg-dark.svg"
161+
},
162+
"svg-light": {
163+
"iconPath": "../icons/svg-light.svg"
146164
}
147165
},
148166
"file": "doc-dark",
@@ -176,6 +194,7 @@
176194
"rtf": "office-dark",
177195
"sitemap": "robots-dark",
178196
"sln": "vs-dark",
197+
"svg": "svg-dark",
179198
"tmp": "trashcan-dark",
180199
"ttf": "font-dark",
181200
"vsix": "vs-dark",
@@ -238,9 +257,11 @@
238257
"git-commit": "git-dark",
239258
"git-rebase": "git-dark",
240259
"go": "golang-dark",
260+
"html": "html-dark",
241261
"ignore": "ignore-dark",
242262
"ini": "config-dark",
243263
"markdown": "md-dark",
264+
"ruby": "ruby-dark",
244265
"vb": "squares-dark",
245266
"xml": "xml-dark"
246267
},
@@ -276,6 +297,7 @@
276297
"rtf": "office-light",
277298
"sitemap": "robots-light",
278299
"sln": "vs-light",
300+
"svg": "svg-light",
279301
"tmp": "trashcan-light",
280302
"ttf": "font-light",
281303
"vsix": "vs-light",
@@ -335,12 +357,14 @@
335357
},
336358
"languageIds": {
337359
"batch": "squares-light",
338-
"git-commit": "git-dark",
339-
"git-rebase": "git-dark",
360+
"git-commit": "git-light",
361+
"git-rebase": "git-light",
340362
"go": "golang-light",
363+
"html": "html-light",
341364
"ignore": "ignore-light",
342365
"ini": "config-light",
343366
"markdown": "md-light",
367+
"ruby": "ruby-light",
344368
"vb": "squares-light",
345369
"xml": "xml-light"
346370
}

icons/html-dark.svg

Lines changed: 11 additions & 0 deletions
Loading

icons/html-light.svg

Lines changed: 11 additions & 0 deletions
Loading

icons/ruby-dark.svg

Lines changed: 6 additions & 0 deletions
Loading

icons/ruby-light.svg

Lines changed: 6 additions & 0 deletions
Loading

icons/svg-dark.svg

Lines changed: 8 additions & 0 deletions
Loading

icons/svg-light.svg

Lines changed: 8 additions & 0 deletions
Loading

icons/xml-dark.svg

Lines changed: 4 additions & 2 deletions
Loading

0 commit comments

Comments
 (0)