Skip to content

Commit 8bed8e9

Browse files
committed
Version 2.0.3.
1 parent ab473fb commit 8bed8e9

9 files changed

+34
-81
lines changed

.travis.yml

-31
This file was deleted.

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77

88
## [Unreleased]
99

10+
## [2.0.3] - 2021-03-11
11+
12+
### Changed
13+
- Fixed some colours not fit for Rubecula Dawn.
14+
- Updated README.
15+
1016
## [2.0.2] - 2021-03-10
1117

1218
### Added

README.md

+3-41
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,9 @@
11
# Rubecula
22

3-
_Hyperminimal theme based on [AmCoder Bright](https://github.com/auiWorks/amCoder)._
3+
The "Rubecula" theme is a hyperminimal theme based on [AmCoder Bright](https://github.com/auiWorks/amCoder) with some changes but faithful to the colour scheme. Additionally there is the "Rubecula Dawn" theme which is its light version for during the day.
44

5-
This theme is being worked on while using VS Code so not everything might be added just yet. Please make an issue if you see anything out of the ordinary.
6-
7-
[![Screenshot](img/screenshot.png)](https://raw.githubusercontent.com/Rubecula/VS-Code/master/img/screenshot.png "Go to screenshot")
8-
9-
## Support
10-
11-
### Summary
12-
13-
| Part | Status |
14-
| ------------------- | --------------- |
15-
| [VS Code](#vs-code) | Mostly complete |
16-
| [GitLens](#gitlens) | Incomplete |
17-
18-
### VS Code
19-
20-
_Mostly complete_
21-
22-
Still has some unspecified settings for which VS Code sets a fallback value.
23-
24-
### GitLens
25-
26-
_Incomplete_
27-
28-
The following settings are untested and will therefore show a red color:
29-
30-
31-
```javascript
32-
// Specifies the background color of the trailing blame annotation
33-
"gitlens.trailingLineBackgroundColor": "untested",
34-
// Specifies the foreground color of the trailing blame annotation
35-
"gitlens.trailingLineForegroundColor": "untested",
36-
```
5+
[![Rubecula](img/rubecula.png)](https://raw.githubusercontent.com/Rubecula/VS-Code/master/img/rubecula.png "Rubecula")
6+
[![Rubecula Dawn](img/rubecula_dawn.png)](https://raw.githubusercontent.com/Rubecula/VS-Code/master/img/rubecula_dawn.png "Rubecula Dawn")
377

388
## Contributing
399

@@ -44,11 +14,3 @@ For reporting bugs, see [`.github/ISSUE_TEMPLATE.md`](.github/ISSUE_TEMPLATE.md)
4414
### Building
4515

4616
`template.js` contains the colors and logic to convert the template to a valid color scheme file with colors. The file requires that `sed` is available on your `PATH`. However this file is only required for testing as the formatted color scheme is not added to the repository.
47-
48-
The master branch will automatically publish the extension if `package.json` was changed. This is because the version has to be changed before publishing.
49-
50-
## FAQ
51-
52-
### Some text or background is red!
53-
54-
VS Code's [theme color reference](https://code.visualstudio.com/docs/getstarted/theme-color-reference) does not include enough screenshots to clarify what is meant sometimes. Therefore I cannot test some color settings myself and I mark them as `untested` in the template. These will then show up as red to bring some attention to them. If you see one of these in the wild, then please make an issue with a screenshot and I will be fixing it asap.

img/rubecula.png

485 KB
Loading

img/rubecula_dawn.png

494 KB
Loading

img/screenshot.png

-528 KB
Binary file not shown.

package-lock.json

+16
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "rubecula",
33
"displayName": "Rubecula",
44
"description": "Hyperminimal theme based on AmCoder Bright.",
5-
"version": "2.0.2",
5+
"version": "2.0.3",
66
"publisher": "andreasbackx",
77
"license": "MIT",
88
"engines": {

themes/Rubecula.template.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -943,14 +943,14 @@
943943
"name": "Invalid",
944944
"scope": "invalid",
945945
"settings": {
946-
"foreground": "lightGray"
946+
"foreground": "foreground"
947947
}
948948
},
949949
{
950950
"name": "Invalid deprecated",
951951
"scope": "invalid.deprecated",
952952
"settings": {
953-
"foreground": "lightGray"
953+
"foreground": "foreground"
954954
}
955955
},
956956
{
@@ -1045,7 +1045,7 @@
10451045
"name": "Markdown: plain",
10461046
"scope": "text.html.markdown",
10471047
"settings": {
1048-
"foreground": "lightGray"
1048+
"foreground": "foreground"
10491049
}
10501050
},
10511051
{
@@ -1127,25 +1127,25 @@
11271127
{
11281128
"scope": "token.info-token",
11291129
"settings": {
1130-
"foreground": "#6796e6"
1130+
"foreground": "cyan"
11311131
}
11321132
},
11331133
{
11341134
"scope": "token.warn-token",
11351135
"settings": {
1136-
"foreground": "#cd9731"
1136+
"foreground": "orange"
11371137
}
11381138
},
11391139
{
11401140
"scope": "token.error-token",
11411141
"settings": {
1142-
"foreground": "#f44747"
1142+
"foreground": "pink"
11431143
}
11441144
},
11451145
{
11461146
"scope": "token.debug-token",
11471147
"settings": {
1148-
"foreground": "#b267e6"
1148+
"foreground": "purple"
11491149
}
11501150
},
11511151
{
@@ -1173,7 +1173,7 @@
11731173
"name": "UPPERCASE constants",
11741174
"scope": ["constant.other.caps"],
11751175
"settings": {
1176-
"foreground": "lightGray",
1176+
"foreground": "foreground",
11771177
"fontStyle": ""
11781178
}
11791179
},

0 commit comments

Comments
 (0)