-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Ducky
committed
Nov 4, 2020
0 parents
commit 45d36a0
Showing
11 changed files
with
1,437 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
*.vsix |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
// 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", | ||
"args": [ | ||
"--extensionDevelopmentPath=${workspaceFolder}" | ||
] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format adheres to [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). Versioning is **based** on [Semantic Versioning](https://semver.org/spec/v2.0.0.html) with a few changes: | ||
* **Minor:** elementaryOS version (major/minor) version based on void of a period (i.e. 5.1 is `51`, 6.0 is `60`, 12.3 is `123`). | ||
* **Patch:** Additions and bug fixes. | ||
|
||
with the **minor** number noting the major/minor version (void of the period) of elementaryOS it's based on (i.e. 5.1 is `51`, 6.0 is `60`). | ||
|
||
## [1.51.0] - 2020-11-04 | ||
|
||
### Initial release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
The MIT License (MIT) | ||
|
||
Copyright (c) 2020 Ducky | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<p align="center"> | ||
<a href="https://github.com/electricduck/vscode-elementary-theme"> | ||
<img src="https://raw.githubusercontent.com/electricduck/vscode-elementary-theme/master/images/logo.png" width=128> | ||
</a> | ||
|
||
<h3 align="center"><strong>elementary Theme</strong> <sup>for VSCode</sup></h3> | ||
|
||
<p align="center"> | ||
<a href="https://elementary.io/">elementaryOS</a> theme for <a href="https://code.visualstudio.com/">VSCode</a>: light and dark variants, both lovely. | ||
</p> | ||
|
||
<p align="center"> | ||
<code>ext install electricduck.elementary-theme</code> | ||
</p> | ||
|
||
<p align="center"> | ||
<img src="https://raw.githubusercontent.com/electricduck/vscode-elementary-theme/master/images/screenshot.png"> | ||
</p> | ||
</p> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
{ | ||
"name": "elementary-theme", | ||
"version": "1.51.0", | ||
"displayName": "elementary Theme", | ||
"description": "elementaryOS theme for VSCode: light and dark variants, both lovely.", | ||
"publisher": "electricduck", | ||
"repository": "https://github.com/electricduck/vscode-elementary-theme", | ||
"license": "MIT", | ||
"icon": "images/icon.png", | ||
"keywords": [ | ||
"code", | ||
"dark", | ||
"elementary", | ||
"elementaryos", | ||
"light", | ||
"linux" | ||
], | ||
"engines": { | ||
"vscode": "^1.20.0" | ||
}, | ||
"categories": [ | ||
"Themes" | ||
], | ||
"contributes": { | ||
"themes": [ | ||
{ | ||
"label": "elementary Dark", | ||
"uiTheme": "vs-dark", | ||
"path": "./themes/Dark-color-theme.json" | ||
}, | ||
{ | ||
"label": "elementary Light", | ||
"uiTheme": "vs", | ||
"path": "./themes/Light-color-theme.json" | ||
} | ||
] | ||
} | ||
} |
Oops, something went wrong.