Skip to content

Commit

Permalink
v0.2.0
Browse files Browse the repository at this point in the history
You can read about this release in Changelog.
  • Loading branch information
VitalikLevin committed Jul 10, 2022
1 parent 3b6f40f commit 4e5dc14
Show file tree
Hide file tree
Showing 17 changed files with 250 additions and 36 deletions.
16 changes: 0 additions & 16 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,18 +1,2 @@
# Build results
[Dd]ebug/
[Dd]ebugPublic/
[Rr]elease/
[Rr]eleases/
x64/
x86/
[Ww][Ii][Nn]32/
[Aa][Rr][Mm]/
[Aa][Rr][Mm]64/
bld/
[Bb]in/
[Oo]bj/
[Ll]og/
[Ll]ogs/

# Visual Studio cache/options directory
.vs/
32 changes: 32 additions & 0 deletions .vscode/svg.code-snippets
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"SVG Element": {
"scope": "xml",
"prefix": ["svg11", "doctype", "svg1.1"],
"body": [
"<svg version='1.1'",
"\tviewbox='0 0 ${1:16} ${2:16}'",
"\txmlns='http://www.w3.org/2000/svg'>",
"\t<title>${3:${TM_FILENAME_BASE/[\\-]/ /g}}</title>",
"</svg>"
],
"description": "Doctype for .svg files"
},
"Fill Property": {
"scope": "xml",
"prefix": ["fill", "svgfill"],
"body": "fill='${1|none,#121212,#f4f4f4|}'",
"description": "Fill Property for a part of a image"
},
"Stroke Property": {
"scope": "xml",
"prefix": ["stroke", "svgstroke"],
"body": "stroke='${1|#121212,#f4f4f4|}'",
"description": "Stroke Property for an element"
},
"Stroke Width": {
"scope": "xml",
"prefix": [""],
"body": "stroke-width='${1:1}'",
"description": "Stroke-Width Property for a figure"
}
}
12 changes: 9 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
### Security
-->
## [0.2.0](https://github.com/VitalikLevin/steamyfish-theme/releases/tag/v0.2.0)
> Release Date: 2022-07-10
### Added
- File Icons: Archive, Git, License and robots.txt
- Folder Icons: Git, IntelliJ IDEA and Node.js

## [0.1.0](https://github.com/VitalikLevin/steamyfish-theme/releases/tag/v0.1.0) - 2022-07-07
## [0.1.0](https://github.com/VitalikLevin/steamyfish-theme/releases/tag/v0.1.0)
> Release Date: 2022-07-07
### Added
- Folder Icons: VS Code, Visual Studio, GitHub and Root Folder
- File Icons: Default and Ignore
- File Icons: Default and Ignore
- Folder Icons: VS Code, Visual Studio, GitHub and Root Folder
114 changes: 98 additions & 16 deletions fileicons/steamyfish-icon-theme.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,46 +53,128 @@
},
"ignore-light": {
"iconPath": "../icons/ignore-light.svg"
},
"archive-dark": {
"iconPath": "../icons/archive-dark.svg"
},
"archive-light": {
"iconPath": "../icons/archive-light.svg"
},
"git-dark": {
"iconPath": "../icons/git-dark.svg"
},
"git-light": {
"iconPath": "../icons/git-light.svg"
},
"license-dark": {
"iconPath": "../icons/license-dark.svg"
},
"license-light": {
"iconPath": "../icons/license-light.svg"
},
"nodejs-dark": {
"iconPath": "../icons/nodejs-dark.svg"
},
"nodejs-light": {
"iconPath": "../icons/nodejs-light.svg"
},
"idea-dark": {
"iconPath": "../icons/idea-dark.svg"
},
"idea-light": {
"iconPath": "../icons/idea-light.svg"
},
"robots-dark": {
"iconPath": "../icons/robots-dark.svg"
},
"robots-light": {
"iconPath": "../icons/robots-light.svg"
}
},
"file": "doc-dark",
"folder": "folder-dark",
"folderExpanded": "folder-open-dark",
"rootFolder": "root-dark",
"rootFolderExpanded": "root-open-dark",
"fileExtensions": {
"7z": "archive-dark",
"gitattributes": "git-dark",
"gitignore": "ignore-dark",
"gz": "archive-dark",
"rar": "archive-dark",
"vscodeignore": "ignore-dark",
"zip": "archive-dark"
},
"fileNames": {
"copying": "license-dark",
"copying.md": "license-dark",
"copying.txt": "license-dark",
"licence": "license-dark",
"licence.md": "license-dark",
"licence.txt": "license-dark",
"license": "license-dark",
"license.md": "license-dark",
"license.txt": "license-dark",
"robots.txt": "robots-dark"
},
"folderNames": {
".git": "git-dark",
".github": "gh-dark",
".idea": "idea-dark",
"node_modules": "nodejs-dark",
".vs": "vs-dark",
".vscode": "vscode-dark",
".github": "gh-dark"
".vscode": "vscode-dark"
},
"folderNamesExpanded": {
".git": "git-dark",
".github": "gh-dark",
".idea": "idea-dark",
"node_modules": "nodejs-dark",
".vs": "vs-dark",
".vscode": "vscode-dark",
".github": "gh-dark"
},
"fileExtensions": {
"gitignore": "ignore-dark",
"vscodeignore": "ignore-dark"
".vscode": "vscode-dark"
},
"light": {
"file": "doc-light",
"folder": "folder-light",
"folderExpanded": "folder-open-light",
"rootFolder": "root-light",
"rootFolderExpanded": "root-open-light",
"fileExtensions": {
"7z": "archive-light",
"gitattributes": "git-light",
"gitignore": "ignore-light",
"gz": "archive-light",
"rar": "archive-light",
"vscodeignore": "ignore-light",
"zip": "archive-light"
},
"fileNames": {
"copying": "license-dark",
"copying.md": "license-dark",
"copying.txt": "license-dark",
"licence": "license-dark",
"licence.md": "license-dark",
"licence.txt": "license-dark",
"license": "license-dark",
"license.md": "license-dark",
"license.txt": "license-dark",
"robots.txt": "robots-light"
},
"folderNames": {
".git": "git-light",
".github": "gh-light",
".idea": "idea-light",
"node_modules": "nodejs-light",
".vs": "vs-light",
".vscode": "vscode-light",
".github": "gh-light"
".vscode": "vscode-light"
},
"folderNamesExpanded": {
".git": "git-light",
".github": "gh-light",
".idea": "idea-light",
"node_modules": "nodejs-light",
".vs": "vs-light",
".vscode": "vscode-light",
".github": "gh-light"
},
"fileExtensions": {
"gitignore": "ignore-light",
"vscodeignore": "ignore-light"
".vscode": "vscode-light"
}
},
"highContrast": {},
Expand Down
8 changes: 8 additions & 0 deletions icons/archive-dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions icons/archive-light.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 13 additions & 0 deletions icons/git-dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 13 additions & 0 deletions icons/git-light.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions icons/idea-dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions icons/idea-light.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions icons/license-dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions icons/license-light.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions icons/nodejs-dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions icons/nodejs-light.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions icons/robots-dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions icons/robots-light.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"email": "network_worms@mail.ru",
"url": "https://vitaliklevin.github.io/"
},
"version": "0.1.0",
"version": "0.2.0",
"license": "MIT",
"categories": ["Themes", "Other"],
"icon": "assets/icon-white.png",
Expand Down

0 comments on commit 4e5dc14

Please sign in to comment.