Skip to content

Commit

Permalink
prepared for publishing in marketplace
Browse files Browse the repository at this point in the history
  • Loading branch information
Nathan Totten committed May 23, 2019
1 parent 3039dba commit 1656ef2
Show file tree
Hide file tree
Showing 10 changed files with 84 additions and 13 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
out
node_modules
.vscode-test/
*.vsix
3 changes: 3 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"tabWidth": 4
}
16 changes: 16 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
// 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}"]
}
]
}
1 change: 0 additions & 1 deletion .vscodeignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
.vscode/**
.vscode-test/**
.gitignore
vsc-extension-quickstart.md
18 changes: 13 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,28 @@
# Change Log

All notable changes to the "Codey Dark" color theme for VS Code will be documented in this file.

Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.

## [Unreleased]

### Added
- Initial theme by ZT for LWC Event Launch

- Initial theme by ZT for LWC Event Launch

## [1.0.0] - 2/2019

### Added
- License for public use

- License for public use

### Changed
- Repo location and name
- Theme name to 'Codey Midnight'

- Repo location and name
- Theme name to 'Codey Midnight'

## [1.0.1] - 5/2019

### Added
- Support for Typescript

- Support for Typescript
27 changes: 27 additions & 0 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
Copyright (c) 2017, Salesforce.com, inc.
All rights reserved.

Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:

* Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.

* Redistributions in binary form must reproduce the above copyright notice, this
list of conditions and the following disclaimer in the documentation and/or
other materials provided with the distribution.

* Neither the name of Salesforce.com nor the names of its contributors may be
used to endorse or promote products derived from this software without specific
prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
## Codey Midnight Theme for VS Code
![Codey Midnight Theme in Action](./docs/Theme_Action.png)

A custom theme for VS Code, designed for Salesforce development. Built to be accessible and boost developer productivity.
![Codey Midnight Theme in Action](./images/Theme_Action.png)

A custom theme for VS Code, designed for Salesforce development. Built to be accessible and boost developer productivity.

## Install the Codey Midnight Theme for VS Code

1. Locate the `./vscode/extensions` file for your **user** on your local machine. (Example filepath for a user named 'CodeyTheBear': `CodeyTheBear/.vscode/extensions`)
1. Locate the `./vscode/extensions` file for your **user** on your local machine. (Example filepath for a user named 'CodeyTheBear': `CodeyTheBear/.vscode/extensions`)
2. Add the entire **codey-midnight** repository folder to that directory. (You can clone this repo directly into your user's .vscode/extensions directory or copy/paste the folder from where ever you cloned.)
3. Restart VS Code.
4. Use the Command Palette or Menus to Navigate to **Preferences: Color Theme**
5. Select **Codey Midnight** as your theme
6. Boom! Code and present away. And submit pull requests and issues here. :)

**Enjoy!**
**Enjoy!**
File renamed without changes
Binary file added images/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 16 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,22 @@
{
"publisher" : "zaynet",
{
"publisher": "salesforce",
"name": "codey-midnight",
"displayName": "Codey Midnight",
"description": "Dark theme configured for accessibility and Salesforce development",
"version": "1.0.0",
"icon": "images/icon.png",
"license": "BSD-3-Clause",
"qna": false,
"bugs": {
"url": "https://github.com/zaynelt/codey-midnight/issues"
},
"repository": {
"url": "https://github.com/zaynelt/codey-midnight"
},
"galleryBanner": {
"color": "#ECECEC",
"theme": "light"
},
"engines": {
"vscode": "^1.30.0"
},
Expand All @@ -19,4 +32,4 @@
}
]
}
}
}

0 comments on commit 1656ef2

Please sign in to comment.