Skip to content

Commit 132921f

Browse files
authored
Fixes #457
1 parent 8b52348 commit 132921f

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.9.0]
9+
10+
### Fixed
11+
12+
- Reverts change to automatically follow VS Code dark/light theme [#456](https://github.com/hediet/vscode-drawio/issues/457)
13+
14+
815
## [1.8.0]
916

1017
### Fixed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"private": true,
44
"displayName": "Draw.io Integration",
55
"description": "This unofficial extension integrates Draw.io into VS Code.",
6-
"version": "1.8.0",
6+
"version": "1.9.0",
77
"preRelease": false,
88
"license": "GPL-3.0",
99
"publisher": "hediet",
@@ -448,7 +448,7 @@
448448
"hediet.vscode-drawio.appearance": {
449449
"title": "Draw.io Appearance",
450450
"type": "string",
451-
"default": "automatic",
451+
"default": "light",
452452
"enum": [
453453
"automatic",
454454
"light",

src/Config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ export class DiagramConfig {
370370
"dark" |
371371
"highContrastLight" |
372372
"highContrast"
373-
>("automatic"),
373+
>("light"),
374374
});
375375

376376
public get resolvedTheme(): ResolvedDrawioTheme {

0 commit comments

Comments
 (0)