Skip to content

Commit

Permalink
add marketplace links
Browse files Browse the repository at this point in the history
  • Loading branch information
Haehnchen committed Feb 25, 2024
1 parent 2c9e4b8 commit d93115f
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 16 deletions.
15 changes: 10 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
IntelliJ IDEA / PhpStorm Vue.js Toolbox Plugin
========================

| Key | Value |
|------------|------------------------------------------|
| Plugin Url | https://plugins.jetbrains.com/plugin/XXX |
| ID | de.espend.idea.vuejs |
| Changelog | [CHANGELOG](CHANGELOG.md) |
[![Build Status](https://github.com/Haehnchen/idea-vuejs-plugin/actions/workflows/gradle.yml/badge.svg?branch=master)](https://github.com/Haehnchen/idea-vuejs-plugin/actions/workflows/gradle.yml)
[![Version](http://phpstorm.espend.de/badge/23832/version)](https://plugins.jetbrains.com/plugin/23832)
[![Downloads](http://phpstorm.espend.de/badge/23832/downloads)](https://plugins.jetbrains.com/plugin/23832)
[![Downloads last month](http://phpstorm.espend.de/badge/23832/last-month)](https://plugins.jetbrains.com/plugin/23832)

| Key | Value |
|------------|-----------------------------------------------------------|
| Plugin Url | https://plugins.jetbrains.com/plugin/23832-vue-js-toolbox |
| ID | de.espend.idea.vuejs |
| Changelog | [CHANGELOG](CHANGELOG.md) |

Install
---------------------
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added files/images/vuejs_toolbox_component_usage.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added files/images/vuejs_toolbox_initialization.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 5 additions & 11 deletions src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,21 +1,19 @@
<!-- Plugin Configuration File. Read more: https://plugins.jetbrains.com/docs/intellij/plugin-configuration-file.html -->
<idea-plugin>
<id>de.espend.idea.vuejs</id>
<name>Vue.js Toolbox</name>
<vendor email="[email protected]" url="http://espend.de?p=de.espend.idea.vuejs">espend_de</vendor>

<!-- Description of the plugin displayed on the Plugin Page and IDE Plugin Manager.
Simple HTML elements (text formatting, paragraphs, and lists) can be added inside of <![CDATA[ ]]> tag.
Guidelines: https://plugins.jetbrains.com/docs/marketplace/plugin-overview-page.html#plugin-description -->
<description><![CDATA[
<p>Provides additional <a href="https://vuejs.org/">Vue.js</a> support to all JetBrains IDEs that
<a href="https://www.jetbrains.com/products/#lang=js&type=ide">support JavaScript</a>.</p>
<h2>Features</h2>
<h3>LineMarker</h3>
<ul>
<li>LineMarker of components usages file</li>
<li>LineMarker for vue.js application entrypoint</li>
<li>LineMarker for vue.js application entrypoints</li>
<li>File usages components</li>
<li>Vue.js application entrypoint</li>
<li>Component targets</li>
</ul>
<h2>Getting started</h2>
Expand All @@ -24,14 +22,10 @@
]]></description>
<category>JavaScript Frameworks and Tools</category>

<!-- Product and plugin compatibility requirements.
Read more: https://plugins.jetbrains.com/docs/intellij/plugin-compatibility.html -->
<depends>com.intellij.modules.platform</depends>

<depends>org.jetbrains.plugins.vue</depends>

<!-- Extension points defined by the plugin.
Read more: https://plugins.jetbrains.com/docs/intellij/plugin-extension-points.html -->
<extensions defaultExtensionNs="com.intellij">
<codeInsight.lineMarkerProvider language="Vue" implementationClass="de.espend.idea.vuejs.linemarker.TemplateComponentLineMarker"/>
<codeInsight.lineMarkerProvider language="HTML" implementationClass="de.espend.idea.vuejs.linemarker.ComponentUsageLineMarker"/>
Expand Down

0 comments on commit d93115f

Please sign in to comment.