Skip to content

Commit

Permalink
1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Nixinova committed May 30, 2020
1 parent 134daf8 commit 7c6760b
Show file tree
Hide file tree
Showing 10 changed files with 44 additions and 2,232 deletions.
2 changes: 0 additions & 2 deletions .gitignore

This file was deleted.

18 changes: 18 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
// A launch configuration that launches the extension inside a new window
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
{
"version": "0.2.0",
"configurations": [
{
"name": "Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}"
]
}
]
}
3 changes: 3 additions & 0 deletions .vscodeignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.vscode/**
.vscode-test/**
.gitignore
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Changelog

## 1.1.0
- Replaced themes with direct colorization.

## 1.0.0
- Added NovaSheets Light & Dark Themes which support syntax highlighting.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This is a [VSCode](https://github.com/microsoft/vscode) extension for [NovaSheet
- A light and dark theme for NovaSheet files.

# Installation
Search "NovaSheets" in the VSCode Marketplace, then click "Install".
Search "NovaSheets" in the VSCode Marketplace ([direct link](https://marketplace.visualstudio.com/items?itemName=Nixinova.novasheets)), then click "Install".

# Usage
When a NovaSheets file is open, click the Settings icon in the bottom-left of the screen, then click "Color Theme" and select "NovaSheets Light Theme" or "NovaSheets Dark Theme". The first two steps can be quickly done by pressing `CTRL`+`KT`. Remember to switch back to your default theme when you are done editing the NovaSheets file.
12 changes: 0 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,18 +34,6 @@
"scopeName": "source.nss",
"path": "./syntaxes/novasheets.tmLanguage.json"
}
],
"themes": [
{
"label": "NovaSheets Dark Theme",
"uiTheme": "vs-dark",
"path": "./themes/novasheets-dark.json"
},
{
"label": "NovaSheets Light Theme",
"uiTheme": "vs",
"path": "./themes/novasheets-light.json"
}
]
}
}
Loading

0 comments on commit 7c6760b

Please sign in to comment.