diff --git a/CHANGELOG.md b/CHANGELOG.md index e36293f..745488a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,8 +14,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed ### Security --> +## [0.3.0](https://github.com/VitalikLevin/steamyfish-theme/releases/tag/v0.3.0) +> Release Date: 2022-07-22 ### Added -- File Icon: Image +- File Icons: Font, Go (golang), Image and Office +- Icons for extensions: `sitemap` and `sln` +- Icons for filenames: `sitemap.xml` and `thirdparty[legal]notice[s].txt` +### Changed +- All light icons for filenames (for example, LICENSE.txt) ## [0.2.1](https://github.com/VitalikLevin/steamyfish-theme/releases/tag/v0.2.1) > Release Date: 2022-07-17 @@ -32,4 +38,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 > Release Date: 2022-07-07 ### Added - File Icons: Default and Ignore -- Folder Icons: VS Code, Visual Studio, GitHub and Root Folder \ No newline at end of file +- Folder Icons: GitHub, Root Folder, Visual Studio and VS Code \ No newline at end of file diff --git a/fileicons/steamyfish-icon-theme.json b/fileicons/steamyfish-icon-theme.json index de02e49..ad22ffe 100644 --- a/fileicons/steamyfish-icon-theme.json +++ b/fileicons/steamyfish-icon-theme.json @@ -95,6 +95,24 @@ }, "image-light": { "iconPath": "../icons/image-light.svg" + }, + "font-dark": { + "iconPath": "../icons/font-dark.svg" + }, + "font-light": { + "iconPath": "../icons/font-light.svg" + }, + "office-dark": { + "iconPath": "../icons/office-dark.svg" + }, + "office-light": { + "iconPath": "../icons/office-light.svg" + }, + "golang-dark": { + "iconPath": "../icons/golang-dark.svg" + }, + "golang-light": { + "iconPath": "../icons/golang-light.svg" } }, "file": "doc-dark", @@ -105,21 +123,36 @@ "fileExtensions": { "7z": "archive-dark", "bmp": "image-dark", + "doc": "office-dark", + "docx": "office-dark", + "eot": "font-dark", "gif": "image-dark", "gitattributes": "git-dark", "gitconfig": "git-dark", "gitignore": "ignore-dark", "gitmodules": "git-dark", + "go": "golang-dark", "gz": "archive-dark", "ico": "image-dark", "jpg": "image-dark", "jpeg": "image-dark", "npmignore": "ignore-dark", + "ooxml": "office-dark", + "otf": "font-dark", "png": "image-dark", + "ppt": "office-dark", + "pptx": "office-dark", "rar": "archive-dark", + "sitemap": "robots-dark", + "sln": "vs-dark", + "ttf": "font-dark", "vscodeignore": "ignore-dark", "vsix": "vs-dark", "webp": "image-dark", + "woff": "font-dark", + "woff2": "font-dark", + "xls": "office-dark", + "xlsx": "office-dark", "zip": "archive-dark" }, "fileNames": { @@ -132,7 +165,12 @@ "license": "license-dark", "license.md": "license-dark", "license.txt": "license-dark", - "robots.txt": "robots-dark" + "robots.txt": "robots-dark", + "sitemap.txt": "robots-dark", + "sitemap.xml": "robots-dark", + "thirdpartylegalnotices.txt": "license-dark", + "thirdpartynotice.txt": "license-dark", + "thirdpartynotices.txt": "license-dark" }, "folderNames": { ".git": "git-dark", @@ -159,33 +197,54 @@ "fileExtensions": { "7z": "archive-light", "bmp": "image-light", + "doc": "office-light", + "docx": "office-light", + "eot": "font-light", "gif": "image-light", "gitattributes": "git-light", "gitconfig": "git-light", "gitignore": "ignore-light", "gitmodules": "git-light", + "go": "golang-light", "gz": "archive-light", "ico": "image-light", "jpg": "image-light", "jpeg": "image-light", "npmignore": "ignore-light", + "ooxml": "office-light", + "otf": "font-light", + "png": "image-light", + "ppt": "office-light", + "pptx": "office-light", "rar": "archive-light", + "sitemap": "robots-light", + "sln": "vs-light", + "ttf": "font-light", "vscodeignore": "ignore-light", "vsix": "vs-light", "webp": "image-light", + "woff": "font-light", + "woff2": "font-light", + "xls": "office-light", + "xlsx": "office-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" + "copying": "license-light", + "copying.md": "license-light", + "copying.txt": "license-light", + "licence": "license-light", + "licence.md": "license-light", + "licence.txt": "license-light", + "license": "license-light", + "license.md": "license-light", + "license.txt": "license-light", + "robots.txt": "robots-light", + "sitemap.txt": "robots-light", + "sitemap.xml": "robots-light", + "thirdpartylegalnotices.txt": "license-light", + "thirdpartynotice.txt": "license-light", + "thirdpartynotices.txt": "license-light" }, "folderNames": { ".git": "git-light", diff --git a/icons/font-dark.svg b/icons/font-dark.svg new file mode 100644 index 0000000..b7f5f10 --- /dev/null +++ b/icons/font-dark.svg @@ -0,0 +1,6 @@ + + Font File (Dark) + + \ No newline at end of file diff --git a/icons/font-light.svg b/icons/font-light.svg new file mode 100644 index 0000000..80fdae8 --- /dev/null +++ b/icons/font-light.svg @@ -0,0 +1,6 @@ + + Font File (Light) + + \ No newline at end of file diff --git a/icons/golang-dark.svg b/icons/golang-dark.svg new file mode 100644 index 0000000..f21a4db --- /dev/null +++ b/icons/golang-dark.svg @@ -0,0 +1,7 @@ + + Go File (Dark) + + + \ No newline at end of file diff --git a/icons/golang-light.svg b/icons/golang-light.svg new file mode 100644 index 0000000..55120dd --- /dev/null +++ b/icons/golang-light.svg @@ -0,0 +1,7 @@ + + Go File (Light) + + + \ No newline at end of file diff --git a/icons/office-dark.svg b/icons/office-dark.svg new file mode 100644 index 0000000..c06b9be --- /dev/null +++ b/icons/office-dark.svg @@ -0,0 +1,6 @@ + + MS Office File (Dark) + + \ No newline at end of file diff --git a/icons/office-light.svg b/icons/office-light.svg new file mode 100644 index 0000000..4fdbfc8 --- /dev/null +++ b/icons/office-light.svg @@ -0,0 +1,6 @@ + + MS Office File (Light) + + \ No newline at end of file