Skip to content

Commit ab473fb

Browse files
committed
Added find in file line highlight and lowered VS Code version.
Bump to 2.0.2.
1 parent 927ebd7 commit ab473fb

File tree

3 files changed

+20
-5
lines changed

3 files changed

+20
-5
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [2.0.2] - 2021-03-10
11+
12+
### Added
13+
- Find in file line hightlight.
14+
15+
### Changed
16+
- Lowered VS Code version to ^1.50.0.
17+
18+
## [2.0.1] - 2021-02-22
19+
20+
Only used on VS Code Marketplace to make a new release to fix ignored files.
21+
1022
## [2.0.0] - 2021-02-22
1123

1224
### Added

package.json

+6-3
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
"name": "rubecula",
33
"displayName": "Rubecula",
44
"description": "Hyperminimal theme based on AmCoder Bright.",
5-
"version": "2.0.0",
5+
"version": "2.0.2",
66
"publisher": "andreasbackx",
77
"license": "MIT",
88
"engines": {
9-
"vscode": "^1.53.0"
9+
"vscode": "^1.50.0"
1010
},
1111
"categories": [
1212
"Themes"
@@ -15,7 +15,10 @@
1515
"monokai",
1616
"amcoder",
1717
"theme",
18-
"dark"
18+
"dark",
19+
"light",
20+
"dawn",
21+
"dusk"
1922
],
2023
"galleryBanner": {
2124
"color": "#1C1C1C",

themes/Rubecula.template.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -323,9 +323,9 @@
323323
"editorLink.activeForeground": "cyan",
324324

325325
// Background color of highlighted ranges, used by Quick Open, Symbol in File and Find features. The color must not be opaque to not hide underlying decorations.
326-
// "editor.rangeHighlightBackground": "INHERIT",
326+
"editor.rangeHighlightBackground": "selectionBackground",
327327
// Background color of the border around highlighted ranges.
328-
// "editor.rangeHighlightBorder": "INHERIT",
328+
// "editor.rangeHighlightBorder": "NONE",
329329

330330
// Color of whitespace characters in the editor.
331331
// "editorWhitespace.foreground": "INHERIT",

0 commit comments

Comments
 (0)