Skip to content

Commit 0c02551

Browse files
authored
Merge pull request #51 from woodfishhhh/main
Add Gradient Bearded Theme Arc Woodfishhhh
2 parents 021cb70 + 4c11c4e commit 0c02551

11 files changed

Lines changed: 1801 additions & 111 deletions

File tree

.vscode/launch.json

Lines changed: 28 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,30 @@
1-
// A launch configuration that launches the extension inside a new window
2-
// Use IntelliSense to learn about possible attributes.
3-
// Hover to view descriptions of existing attributes.
4-
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
51
{
6-
"version": "0.2.0",
7-
"configurations": [
8-
{
9-
"name": "Extension",
10-
"type": "extensionHost",
11-
"request": "launch",
12-
"runtimeExecutable": "${execPath}",
13-
"args": [
14-
"--extensionDevelopmentPath=${workspaceFolder}"
15-
]
16-
}
17-
]
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": "Extension",
6+
"type": "extensionHost",
7+
"request": "launch",
8+
"runtimeExecutable": "${execPath}",
9+
"args": [
10+
"--extensionDevelopmentPath=${workspaceFolder}"
11+
],
12+
"stopOnEntry": false,
13+
"sourceMaps": true,
14+
"outFiles": ["${workspaceFolder}/dist/**/*.js"]
15+
},
16+
{
17+
"name": "Extension Tests",
18+
"type": "extensionHost",
19+
"request": "launch",
20+
"runtimeExecutable": "${execPath}",
21+
"args": [
22+
"--extensionDevelopmentPath=${workspaceFolder}",
23+
"--extensionTestsPath=${workspaceFolder}/out/test"
24+
],
25+
"stopOnEntry": false,
26+
"sourceMaps": true,
27+
"outFiles": ["${workspaceFolder}/dist/**/*.js"]
28+
}
29+
]
1830
}

.vscode/mcp.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"servers": {
3+
"cloudbase": {
4+
"command": "npx",
5+
"args": [
6+
"--cache",
7+
".",
8+
"@cloudbase/cloudbase-mcp@latest"
9+
]
10+
}
11+
}
12+
}

.vscode/settings.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,8 @@
22
"cSpell.words": [
33
"monokai",
44
"shaobeichen"
5-
]
5+
],
6+
"files.associations": {
7+
"*.json": "jsonc"
8+
}
69
}

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
### Features
55

66
* handle theme entry ([0d33193](https://github.com/shaobeichen/gradient-theme/commit/0d331930449271d6f1f6f372b7856b1d0efb9e66))
7+
* add Gradient Bearded Theme Arc Woodfishhhh with enhanced visual effects ([commit-hash](https://github.com/shaobeichen/gradient-theme/commit/commit-hash))
78

89
# [1.16.0](https://github.com/shaobeichen/gradient-theme/compare/v1.15.3...v1.16.0) (2025-06-06)
910

dist/index.html

Lines changed: 244 additions & 88 deletions
Large diffs are not rendered by default.

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,11 @@
3939
"uiTheme": "vs-dark",
4040
"path": "./themes/gradient-bearded-theme-arc.json"
4141
},
42+
{
43+
"label": "Gradient Bearded Theme Arc Woodfishhhh",
44+
"uiTheme": "vs-dark",
45+
"path": "./themes/gradient-bearded-theme-arc-woodfishhhh.json"
46+
},
4247
{
4348
"label": "Gradient Monokai Pro Classic",
4449
"uiTheme": "vs-dark",

scripts/build.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const config = {
1515
}
1616

1717
config.themes = packageJson.contributes.themes.map((item) =>
18-
item.path.replace('./themes/', '').replace('.json', '').replace('/', '-'),
18+
item.path.replace('./themes/', '').replace('.json', '').replace(/\//g, '-'),
1919
)
2020

2121
const folderPath = path.join(__dirname, '../dist')

0 commit comments

Comments
 (0)