Skip to content

Commit 33ed186

Browse files
update 2.2.6
1 parent 60fd712 commit 33ed186

File tree

13 files changed

+324
-315
lines changed

13 files changed

+324
-315
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
build/

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "icons/emojis"]
2+
path = icons/emojis
3+
url = https://github.com/microsoft/fluentui-emoji

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,13 @@
88

99
---
1010

11+
### 2.2.6
12+
- Added icons to Yellowed Icons
13+
14+
### 2.2.5
15+
- Added Yellowed Icons
16+
- Better Haxe support
17+
1118
### 2.2.2 - 2.2.4
1219
- Better support for embeded string in Php and Dart
1320

README.md

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,18 @@
1414
</a>
1515
</div>
1616

17-
<!-- > [!NOTE] -->
18-
> 🗒️
17+
<!-- > 🗒️ -->
18+
> [!NOTE]
1919
> Yellowed is a simple material dark theme wich focus his syntax color on the golden yellow. Its syntax is inspired by the [gruber-darker](https://github.com/rexim/gruber-darker-theme) theme for emacs, but changed a bit.
2020
21-
<!-- > [!IMPORTANT] -->
22-
>
21+
<!-- > -->
22+
> [!IMPORTANT]
2323
> If you find any weird syntax highlighting, try disabling semantic highlighting. If it doesn't work then please report it [here](https://github.com/Gael-Lopes-Da-Silva/YellowedVSCode/issues/new/choose). This would help me a lot since I can't cover all the languages.
2424
25+
<!-- > ❗ -->
26+
> [!IMPORTANT]
27+
> If you want to help me add more icons, you can suggest it to me [here](https://github.com/Gael-Lopes-Da-Silva/YellowedVSCode/issues/new/choose).
28+
2529
## 🖼️ Screenshots
2630
<details> <summary>Yellowed Reborn</summary>
2731

@@ -39,7 +43,7 @@
3943

4044

4145
## 🧱 How to build ?
42-
If you want a build of Yellowed you can find it in the [build](./build/) folder. Else use `vsce package` in the project folder.
46+
If you want a build of Yellowed you can find it in the release section. Else use `vsce package` in the project folder.
4347

4448
## ❓ How to install ?
4549
To install, open visual studio code and go to the extention menu. Click on the three dots and click on `Install from VSIX` and choose the `yellowed-X.X.X.vsix` file. Or just install it on the market place.
@@ -68,6 +72,6 @@ keywords = "#FFD900"
6872
function = "#9B9B9B"
6973
~~~
7074

71-
<!-- > [!NOTE] -->
72-
> 🗒️
75+
<!-- > 🗒️ -->
76+
> [!NOTE]
7377
> You can find my Visual Studio Code configuraton [here](https://github.com/Gael-Lopes-Da-Silva/MyVscodeConfig).

TODO.md

Lines changed: 0 additions & 15 deletions
This file was deleted.

build/yellowed-2.2.3.vsix

-1.39 MB
Binary file not shown.

build/yellowed-2.2.4.vsix

-1.39 MB
Binary file not shown.

icons/emojis

Submodule emojis added at 14053d2

icons/yellowed_icons.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -280,6 +280,7 @@
280280
"import": "import",
281281
"gitignore": "git",
282282
"gitattributes": "git",
283+
"gitmodules": "git",
283284
"gitkeep": "git",
284285
"vscodeignore": "vscodeignore"
285286
},

package.json

Lines changed: 61 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -1,55 +1,62 @@
11
{
2-
"name": "yellowed",
3-
"displayName": "Yellowed",
4-
"version": "2.2.4",
5-
"description": "A lemon like theme for vscode.",
6-
"publisher": "gael-lopes-da-silva",
7-
"icon": "resources/icon.png",
8-
"license": "LICENSE.md",
9-
"homepage": "https://raw.githubusercontent.com/Gael-Lopes-Da-Silva/YellowedVSCode/main/README.md",
10-
"markdown": "github",
11-
"engines": {
12-
"vscode": "^1.81.1"
13-
},
14-
"categories": [
15-
"Themes"
16-
],
17-
"scripts": {
18-
"publish": "vsce publish",
19-
"package": "vsce package -o build"
20-
},
21-
"contributes": {
22-
"themes": [
23-
{
24-
"label": "Yellowed",
25-
"uiTheme": "vs-dark",
26-
"path": "./theme/yellowed.json"
27-
},
28-
{
29-
"label": "Yellowed Reborn",
30-
"uiTheme": "vs-dark",
31-
"path": "./theme/yellowed_reborn.json"
32-
}
33-
]
34-
},
35-
"repository": {
36-
"type": "git",
37-
"url": "https://github.com/Gael-Lopes-Da-Silva/YellowedVSCode"
38-
},
39-
"galleryBanner": {
40-
"color": "#ffd900",
41-
"theme": "dark"
42-
},
43-
"keywords": [
44-
"yellowed",
45-
"yellow",
46-
"dark",
47-
"material",
48-
"minimalist",
49-
"minimal",
50-
"gruber",
51-
"jaune",
52-
"golden",
53-
"gold"
54-
]
55-
}
2+
"name": "yellowed",
3+
"displayName": "Yellowed",
4+
"version": "2.2.6",
5+
"description": "A lemon like theme for vscode.",
6+
"publisher": "gael-lopes-da-silva",
7+
"icon": "resources/icon.png",
8+
"license": "LICENSE.md",
9+
"homepage": "https://raw.githubusercontent.com/Gael-Lopes-Da-Silva/YellowedVSCode/main/README.md",
10+
"markdown": "github",
11+
"engines": {
12+
"vscode": "^1.81.1"
13+
},
14+
"categories": [
15+
"Themes"
16+
],
17+
"scripts": {
18+
"publish": "vsce publish",
19+
"package": "vsce package -o build"
20+
},
21+
"contributes": {
22+
"themes": [
23+
{
24+
"label": "Yellowed",
25+
"uiTheme": "vs-dark",
26+
"path": "./themes/yellowed.json"
27+
},
28+
{
29+
"label": "Yellowed Reborn",
30+
"uiTheme": "vs-dark",
31+
"path": "./themes/yellowed_reborn.json"
32+
}
33+
],
34+
"iconThemes": [
35+
{
36+
"label": "Yellowed Icons",
37+
"id": "yellowed_icons",
38+
"path": "./icons/yellowed_icons.json"
39+
}
40+
]
41+
},
42+
"repository": {
43+
"type": "git",
44+
"url": "https://github.com/Gael-Lopes-Da-Silva/YellowedVSCode"
45+
},
46+
"galleryBanner": {
47+
"color": "#ffd900",
48+
"theme": "dark"
49+
},
50+
"keywords": [
51+
"yellowed",
52+
"yellow",
53+
"dark",
54+
"material",
55+
"minimalist",
56+
"minimal",
57+
"gruber",
58+
"jaune",
59+
"golden",
60+
"gold"
61+
]
62+
}

0 commit comments

Comments
 (0)