Skip to content

Commit

Permalink
Change Log and readme update
Browse files Browse the repository at this point in the history
  • Loading branch information
dinbtechit committed May 17, 2022
1 parent 8ec5aea commit 50a98f1
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 23 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,12 @@
## [Unreleased]
### Added
- Initial scaffold created from [IntelliJ Platform Plugin Template](https://github.com/JetBrains/intellij-platform-plugin-template)
- Forked from Colors & Editor themed from Visual Studio Code Dark Plus theme
### Fixed
- WelcomeScreen color issues and Toolbar border

## [1.0.0]
### Added
- Added custom annotators for JavaScript and TypeScript to match VSCode Style
- Added `Settings` -> `Editor` -> `Color Scheme` - > `JavaScript (Extra)`
> Note - This will be used by both JavaScript and TypeScript
31 changes: 16 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,27 +1,28 @@
# vscode-theme

# Under construction
# <img src="src/main/resources/META-INF/pluginIcon.svg" alt="drawing" width="75"/> VSCode Theme for Jetbrains IDEs

![Build](https://github.com/dinbtechit/vscode-theme/workflows/Build/badge.svg)
[![Version](https://img.shields.io/jetbrains/plugin/v/PLUGIN_ID.svg)](https://plugins.jetbrains.com/plugin/PLUGIN_ID)
[![Downloads](https://img.shields.io/jetbrains/plugin/d/PLUGIN_ID.svg)](https://plugins.jetbrains.com/plugin/PLUGIN_ID)

## Template ToDo list
- [x] Create a new [IntelliJ Platform Plugin Template][template] project.
- [ ] Get familiar with the [template documentation][template].
- [ ] Verify the [pluginGroup](/gradle.properties), [plugin ID](/src/main/resources/META-INF/plugin.xml) and [sources package](/src/main/kotlin).
- [ ] Review the [Legal Agreements](https://plugins.jetbrains.com/docs/marketplace/legal-agreements.html).
- [ ] [Publish a plugin manually](https://plugins.jetbrains.com/docs/intellij/publishing-plugin.html?from=IJPluginTemplate) for the first time.
- [ ] Set the Plugin ID in the above README badges.
- [ ] Set the [Deployment Token](https://plugins.jetbrains.com/docs/marketplace/plugin-upload.html).
- [ ] Click the <kbd>Watch</kbd> button on the top of the [IntelliJ Platform Plugin Template][template] to be notified about releases containing new features and fixes.

<!-- Plugin description -->
This Fancy IntelliJ Platform Plugin is going to be your implementation of the brilliant ideas that you have.

This specific section is a source for the [plugin.xml](/src/main/resources/META-INF/plugin.xml) file which will be extracted by the [Gradle](/build.gradle.kts) during the build process.
Provides VSCode Editor Color Scheme for Jetbrains IDEs (webstorm, Intellij, Rider & many more);
While Jetbrains IDEs are great for productivity unfortunately the highlighting is not very
intuitive. This plugin attempts to make the IDE fairly **close** to VSCode Dark+ theme.

> Note - Some text colors might not be accurate due to either Jetbrains does not allow us to override those colors or the default colors were more intuitive.
### Supported Languages
JavaScript (Advance), TypeScript (Advance), Java, Kotlin, Php, .Net, Python, C++, Go, Ruby.

### Supported Platforms
Webstorm, Intellij, CLion, PhpStorm, Rider, Android Studio, GoLang

<div align="center">
<img src="https://i.ibb.co/r7PN3yT/vscodeplugin-demo.png" alt="drawing"/>
</div>

To keep everything working, do not remove `<!-- ... -->` sections.
<!-- Plugin description end -->

## Installation
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
pluginGroup = com.github.dinbtechit.vscodetheme
pluginName = vscode-theme
# SemVer format -> https://semver.org
pluginVersion = 0.0.1
pluginVersion = 1.0.0

# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
# for insight into build numbers and IntelliJ Platform versions.
Expand Down
Binary file added readme/vscodeplugin-demo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "VSCode Dark",
"dark": true,
"author": "Alexander Makarov/Dinesh Srinivasan",
"author": "Dinesh Srinivasan",
"editorScheme": "/themes/visual_studio_code_dark_plus.xml",
"ui": {
"*": {
Expand All @@ -21,7 +21,6 @@
"underlinedTabBackground": "#1d1d1d",
"inactiveUnderlineColor": "#2c2c2c",
"inactiveColoredFileBackground": "#323232",
"selectedForeground": "#e6e6e6",
"underlineHeight": 2,
"borderColor": "#464545"
},
Expand Down
10 changes: 5 additions & 5 deletions src/main/resources/themes/visual_studio_code_dark_plus.xml
Original file line number Diff line number Diff line change
Expand Up @@ -520,13 +520,13 @@
</option>
<option name="JS.FROM_KEYWORD">
<value>
<option name="FOREGROUND" value="ba7c97" />
<option name="FOREGROUND" value="ff5fd1" />
<option name="BACKGROUND" value="1e1e1e" />
</value>
</option>
<option name="JS.MODULE_KEYWORD" baseAttributes="DEFAULT_KEYWORD">
<value>
<option name="FOREGROUND" value="ba7c97" />
<option name="FOREGROUND" value="ff5fd1" />
</value>
</option>
<option name="JS.IMPORT_SPECIFIER" baseAttributes="DEFAULT_INSTANCE_FIELD">
Expand All @@ -553,13 +553,13 @@
</option>
<option name="TS.MODULE_KEYWORD" baseAttributes="DEFAULT_KEYWORD">
<value>
<option name="FOREGROUND" value="ba7c97" />
<option name="FOREGROUND" value="ff5fd1" />
</value>
</option>
<option name="TS.FROM_KEYWORD">
<value>
<option name="FOREGROUND" value="ba7c97" />
<option name="BACKGROUND" value="" />
<option name="FOREGROUND" value="ff5fd1" />
<option name="BACKGROUND" value="1e1e1e" />
</value>
</option>
<option name="KOTLIN_ANNOTATION" baseAttributes="ANNOTATION_NAME_ATTRIBUTES" />
Expand Down

0 comments on commit 50a98f1

Please sign in to comment.