Skip to content

Commit

Permalink
1.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
golf1052 committed Jun 27, 2021
1 parent fce91ef commit d471902
Show file tree
Hide file tree
Showing 4 changed files with 92 additions and 9 deletions.
26 changes: 18 additions & 8 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,23 +8,33 @@

// A task runner that calls a custom npm script that compiles the extension.
{
"version": "0.1.0",
"version": "2.0.0",

// we want to run npm
"command": "npm",

// the command is a shell script
"isShellCommand": true,

// show the output window only if unrecognized errors occur.
"showOutput": "silent",

// we run the custom script "compile" as defined in package.json
"args": ["run", "compile", "--loglevel", "silent"],

// The tsc compiler is started in watching mode
"isBackground": true,

// use the standard tsc in watch mode problem matcher to find compile problems in the output.
"problemMatcher": "$tsc-watch"
"problemMatcher": "$tsc-watch",
"tasks": [
{
"label": "npm",
"type": "shell",
"command": "npm",
"args": [
"run",
"compile",
"--loglevel",
"silent"
],
"isBackground": true,
"problemMatcher": "$tsc-watch",
"group": "build"
}
]
}
36 changes: 36 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,42 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [1.15.0] - 2021-06-27
## Added
- Added support for [Workspace Trust](https://code.visualstudio.com/docs/editor/workspace-trust) and [Virtual Workspaces](https://code.visualstudio.com/updates/v1_56#_define-whether-your-extension-supports-a-virtual-workspace).
- Added themes
- Apprentice Dark
- Apprentice Light
- Colors Dark
- Colors Light
- DanQing Dark
- DanQing Light
- Darcula Dark
- Darcula Light
- pinky Dark
- pinky Light
- Qualia
- Rosé Pine Dark
- Rosé Pine Dawn Dark
- Rosé Pine Dawn Light
- Rosé Pine Light
- Rosé Pine Moon Dark
- Rosé Pine Moon Light
- Sakura Dark
- Sakura Light
- Shades of Purple Dark
- Shades of Purple Light
- tender Dark
- tender Light
- Windows 10 Dark
- Windows 10 Light
- Windows 95 Dark
- Windows 95 Light
- Windows High Contrast Dark
- Windows High Contrast Light
- Windows NT Dark
- Windows NT Light

## [1.14.0] - 2020-12-30
## Added
- A bunch of missing colors that were added to VSCode over the past year.
Expand Down
8 changes: 7 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "base16-generator",
"displayName": "Base16 Theme Generator",
"description": "All Base16 themes available on the fly",
"version": "1.14.0",
"version": "1.15.0",
"publisher": "golf1052",
"keywords": [
"base16"
Expand Down Expand Up @@ -63,6 +63,12 @@
}
]
},
"capabilities": {
"untrustedWorkspaces": {
"supported": true
},
"virtualWorkspaces": true
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
Expand Down
31 changes: 31 additions & 0 deletions themes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Available Themes

Apprentice Dark
Apprentice Light
Atelier Cave Dark
Atelier Cave Light
Atelier Dune Dark
Expand Down Expand Up @@ -54,8 +56,14 @@ Classic Dark
Classic Light
Codeschool Dark
Codeschool Light
Colors Dark
Colors Light
Cupertino Dark
Cupertino Light
DanQing Dark
DanQing Light
Darcula Dark
Darcula Light
darkmoss Dark
darkmoss Light
Dark Violet Dark
Expand Down Expand Up @@ -148,13 +156,26 @@ PaperColor Dark
PaperColor Light
Pasque Dark
Pasque Light
pinky Dark
pinky Light
Porple Dark
Porple Light
Qualia
Rebecca
Rosé Pine Dark
Rosé Pine Dawn Dark
Rosé Pine Dawn Light
Rosé Pine Light
Rosé Pine Moon Dark
Rosé Pine Moon Light
Sagelight Dark
Sagelight Light
Sakura Dark
Sakura Light
Sandcastle Dark
Sandcastle Light
Shades of Purple Dark
Shades of Purple Light
Silk Dark
Silk Light
Snazzy Dark
Expand All @@ -171,6 +192,8 @@ Synth Midnight Terminal Dark
Synth Midnight Terminal Light
Tango Dark
Tango Light
tender Dark
tender Light
Tomorrow Dark
Tomorrow Light
Tomorrow Night Dark
Expand Down Expand Up @@ -242,6 +265,14 @@ London Tube Light
Unikitty Dark
Unikitty Light
vulcan
Windows 10 Dark
Windows 10 Light
Windows 95 Dark
Windows 95 Light
Windows High Contrast Dark
Windows High Contrast Light
Windows NT Dark
Windows NT Light
Woodland Dark
Woodland Light
XCode Dusk Dark
Expand Down

0 comments on commit d471902

Please sign in to comment.