diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..cc9c631 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +out +node_modules +.vscode-test/ +*.vsix \ No newline at end of file diff --git a/.prettierrc b/.prettierrc new file mode 100644 index 0000000..0a02bce --- /dev/null +++ b/.prettierrc @@ -0,0 +1,3 @@ +{ + "tabWidth": 4 +} diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..4644047 --- /dev/null +++ b/.vscode/launch.json @@ -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}"] + } + ] +} diff --git a/.vscodeignore b/.vscodeignore index f369b5e..19bbe78 100644 --- a/.vscodeignore +++ b/.vscodeignore @@ -1,4 +1,3 @@ .vscode/** .vscode-test/** .gitignore -vsc-extension-quickstart.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 599924c..66408b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..6ebf09e --- /dev/null +++ b/LICENSE.txt @@ -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. \ No newline at end of file diff --git a/README.md b/README.md index 0424217..a3e1253 100644 --- a/README.md +++ b/README.md @@ -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!** \ No newline at end of file +**Enjoy!** diff --git a/docs/Theme_Action.png b/images/Theme_Action.png similarity index 100% rename from docs/Theme_Action.png rename to images/Theme_Action.png diff --git a/images/icon.png b/images/icon.png new file mode 100644 index 0000000..2135d00 Binary files /dev/null and b/images/icon.png differ diff --git a/package.json b/package.json index b9f49fc..310369b 100644 --- a/package.json +++ b/package.json @@ -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" }, @@ -19,4 +32,4 @@ } ] } -} \ No newline at end of file +}