Skip to content

Commit

Permalink
feat: add just dot icon theme (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
AnWeber committed Sep 8, 2024
1 parent f40c63d commit 44079a5
Show file tree
Hide file tree
Showing 13 changed files with 448 additions and 170 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,21 @@ on:
branches:
- main
schedule:
- cron: '0 0 * * 1'
- cron: "0 0 * * 1"
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
language: ['javascript']
language: ["javascript"]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install Node.js
uses: actions/setup-node@v2
with:
node-version: 16
node-version: 22
- run: npm install
- run: npm run compile
- run: npm run build
38 changes: 19 additions & 19 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,22 +6,22 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install Node.js
uses: actions/setup-node@v2
with:
node-version: 16
- run: npm install
- name: Publish to Open VSX Registry
uses: HaaLeo/publish-vscode-extension@v0
id: publishToOpenVSX
with:
pat: ${{ secrets.OVSX_TOKEN }}
- name: Publish to Visual Studio Marketplace
uses: HaaLeo/publish-vscode-extension@v0
with:
pat: ${{ secrets.VSCE_TOKEN }}
registryUrl: https://marketplace.visualstudio.com
extensionFile: ${{ steps.publishToOpenVSX.outputs.vsixPath }}
packagePath: ''
- name: Checkout
uses: actions/checkout@v2
- name: Install Node.js
uses: actions/setup-node@v2
with:
node-version: 22
- run: npm install
- name: Publish to Open VSX Registry
uses: HaaLeo/publish-vscode-extension@v0
id: publishToOpenVSX
with:
pat: ${{ secrets.OVSX_TOKEN }}
- name: Publish to Visual Studio Marketplace
uses: HaaLeo/publish-vscode-extension@v0
with:
pat: ${{ secrets.VSCE_TOKEN }}
registryUrl: https://marketplace.visualstudio.com
extensionFile: ${{ steps.publishToOpenVSX.outputs.vsixPath }}
packagePath: ""
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 0.6.0 (2024-09-08)

#### Feature

- new icons for files (just dots)

## 0.5.0 (2022-11-22)

#### Feature
Expand Down
70 changes: 41 additions & 29 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

44 changes: 37 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "dot-icons",
"displayName": "dot-icons",
"version": "0.5.0",
"version": "0.6.0",
"description": "Icons with a dot",
"publisher": "anweber",
"scripts": {
"start": "npm run compile",
"compile": "ts-node ./src/build.ts",
"prepublish": "npm run compile"
"start": "npm run build",
"build": "ts-node ./src/build.ts",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
Expand Down Expand Up @@ -67,6 +67,36 @@
"id": "dot_colored_gray",
"label": "dot colored (gray)",
"path": "dist/dot_colored_gray_config.json"
},
{
"id": "just_dot",
"label": "just dot",
"path": "dist/just_dot_config.json"
},
{
"id": "just_dot_root",
"label": "just dot (Colored Root)",
"path": "dist/just_dot_root_config.json"
},
{
"id": "just_dot_gray",
"label": "just dot (gray)",
"path": "dist/just_dot_gray_config.json"
},
{
"id": "just_dot_small",
"label": "just dot small",
"path": "dist/just_dot_small_config.json"
},
{
"id": "just_dot_small_root",
"label": "just dot small (Colored Root)",
"path": "dist/just_dot_small_root_config.json"
},
{
"id": "just_dot_small_gray",
"label": "just dot small (gray)",
"path": "dist/just_dot_small_gray_config.json"
}
]
},
Expand All @@ -77,8 +107,8 @@
},
"homepage": "https://github.com/anweber/dot-icons#readme",
"devDependencies": {
"@types/node": "^18.11.9",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
"@types/node": "^22.5.4",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
}
}
Loading

0 comments on commit 44079a5

Please sign in to comment.