Skip to content
This repository was archived by the owner on Oct 20, 2025. It is now read-only.

Commit c4da505

Browse files
Update README, sync theme
1 parent 13ff74b commit c4da505

4 files changed

Lines changed: 60 additions & 10 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
### Version 0.0.2 (Jan 26, 2017)
2+
* Sync theme
3+
4+
### Version 0.0.1 (Nov 24, 2016)
5+
* Initial release

README.md

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,52 @@ This is a direct conversion of the excellent Material Theme by [Mattia Astorino]
1010
## Github source
1111

1212
[https://github.com/fredrikaverpil/vscode-material-theme](https://github.com/fredrikaverpil/vscode-material-theme)
13+
14+
15+
## Visual Studio Marketplace
16+
17+
[https://marketplace.visualstudio.com/items?itemName=fredrikaverpil.vscode-material-theme](https://marketplace.visualstudio.com/items?itemName=fredrikaverpil.vscode-material-theme)
18+
19+
20+
## Notes on updating the theme
21+
22+
23+
#### Clone this repository
24+
25+
```bash
26+
git clone https://github.com/fredrikaverpil/vscode-material-theme.git
27+
cd vscode-material-theme
28+
```
29+
30+
#### Download the latest version of the theme
31+
32+
```bash
33+
curl -o themes/material-theme.tmTheme https://raw.githubusercontent.com/equinusocio/material-theme/develop/schemes/Material-Theme.tmTheme
34+
```
35+
36+
#### Install and run Yo Code
37+
38+
Offical Yo code docs: [https://code.visualstudio.com/docs/tools/yocode](https://code.visualstudio.com/docs/tools/yocode)
39+
40+
Please note, this step is not needed to follow as the git repo already holds all of the data which Yo Code generates, but it's here for completeness:
41+
42+
```bash
43+
npm install -g yo generator-code
44+
yo code
45+
```
46+
47+
#### Finalize update
48+
49+
* Bump the version number in `package.json`
50+
* Add notes on the update in `CHANGELOG.md`
51+
* Commit and push all changes to git repository.
52+
53+
54+
#### Publish extension onto the Visual Studio Marketplace
55+
56+
Official vsce docs: [https://code.visualstudio.com/docs/tools/vscecli](https://code.visualstudio.com/docs/tools/vscecli)
57+
58+
```bash
59+
npm install -g vsce
60+
vsce publish
61+
```

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "vscode-material-theme",
33
"displayName": "Material Theme",
44
"description": "Material Theme",
5-
"version": "0.0.1",
5+
"version": "0.0.2",
66
"publisher": "fredrikaverpil",
77
"author": {
88
"name": "Fredrik Averpil",
@@ -29,4 +29,4 @@
2929
}
3030
]
3131
}
32-
}
32+
}

themes/material-theme.tmTheme

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3-
<!-- Generated by: TmTheme-Editor -->
4-
<!-- ============================================ -->
5-
<!-- app: http://tmtheme-editor.herokuapp.com -->
6-
<!-- code: https://github.com/aziz/tmTheme-Editor -->
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
73
<plist version="1.0">
84
<dict>
95
<key>author</key>
@@ -13,7 +9,7 @@
139
<key>name</key>
1410
<string>Material-Theme</string>
1511
<key>semanticClass</key>
16-
<string>theme.dark.material_theme</string>
12+
<string>material.theme.default</string>
1713
<key>settings</key>
1814
<array>
1915
<dict>
@@ -38,7 +34,7 @@
3834
<key>lineHighlight</key>
3935
<string>#00000050</string>
4036
<key>popupCss</key>
41-
<string> html { background-color: #263238; color: #eeffff; padding: 16px; } a { color: #B2CCD6; line-height: 16px; } .error, .deleted { color: #FF5370; } .success, .inserted { color: #C3E88D; } .warning, .modified { color: #FFCB6B; } .type { color: #89DDFF; font-style: italic; } .param { color: #F78C6C; } .current { text-decoration: underline; } </string>
37+
<string><![CDATA[ html { background-color: #263238; color: #eeffff; padding: 16px; } a { color: #B2CCD6; line-height: 16px; } .error, .deleted { color: #FF5370; } .success, .inserted { color: #C3E88D; } .warning, .modified { color: #FFCB6B; } .type { color: #89DDFF; font-style: italic; } .param { color: #F78C6C; } .current { text-decoration: underline; } ]]></string>
4238
<key>selection</key>
4339
<string>#80CBC420</string>
4440
<key>selectionBorder</key>
@@ -1012,4 +1008,4 @@
10121008
<key>uuid</key>
10131009
<string>133d1250-19c6-4565-bc93-b37fd36f7fc9</string>
10141010
</dict>
1015-
</plist>
1011+
</plist>

0 commit comments

Comments
 (0)