Skip to content

Commit

Permalink
Bump version, update readme and description
Browse files Browse the repository at this point in the history
  • Loading branch information
aesy committed Jun 15, 2020
1 parent 0671b2d commit 77df395
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 7 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,22 @@

This plugin adds an intention to open regular expressions on regex101.com

[![Plugin repository](https://img.shields.io/jetbrains/plugin/v/14461-open-regex101?label=version&style=flat-square)](https://plugins.jetbrains.com/plugin/14461-open-regex101)
[![Plugin repository](https://img.shields.io/jetbrains/plugin/v/14461-open-regex101?label=version&style=flat-square)](https://plugins.jetbrains.com/plugin/14461-open-regex101/versions)
[![Plugin downloads](https://img.shields.io/jetbrains/plugin/d/14461-open-regex101?style=flat-square)](https://plugins.jetbrains.com/plugin/14461-open-regex101)
[![Plugin stars](https://img.shields.io/jetbrains/plugin/r/stars/14461-open-regex101?style=flat-square)](https://plugins.jetbrains.com/plugin/14461-open-regex101)
[![Plugin stars](https://img.shields.io/jetbrains/plugin/r/stars/14461-open-regex101?style=flat-square)](https://plugins.jetbrains.com/plugin/14461-open-regex101/reviews)
[![Build status](https://img.shields.io/github/workflow/status/aesy/regex101-intellij/Continous%20Integration?style=flat-square)](https://github.com/aesy/regex101-intellij/actions)
[![Test coverage](https://img.shields.io/codecov/c/github/aesy/regex101-intellij?style=flat-square)](https://codecov.io/github/aesy/regex101-intellij)
[![MIT license](https://img.shields.io/github/license/aesy/regex101-intellij.svg?style=flat-square)](https://github.com/aesy/regex101-intellij/blob/master/LICENSE)

## Installation

Download and install the plugin through your IDE or through [the marketplace](https://plugins.jetbrains.com/plugin/14461-open-regex101):
Download and install the plugin through your IDE or through [the marketplace](https://plugins.jetbrains.com/plugin/14461-open-regex101).

![Marketplace](./img/installation.png)

## Usage

Show context actions on a regular expression and pick "Open RegExp on regex101.com":
Show context actions on a regular expression and select "Open RegExp on regex101.com".

![Context actions](./img/usage.png)

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
}

group = "io.aesy.regex101"
version = "0.1"
version = "0.2"

repositories {
mavenCentral()
Expand Down
23 changes: 21 additions & 2 deletions src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,14 +1,33 @@
<idea-plugin>
<id>io.aesy.regex101</id>
<name>Open Regex101</name>
<version>0.1</version>
<version>0.2</version>
<vendor email="isak.wertwein@gmail.com" url="https://github.com/aesy/regex101-intellij">Isak Wertwein</vendor>
<category>Intention</category>

<description><![CDATA[
Adds an intention to open regular expressions on regex101.com
<html>
<p>Adds an intention to open regular expressions on regex101.com</p>
<br>
<img src="https://raw.githubusercontent.com/aesy/regex101-intellij/master/img/usage.png">
</html>
]]></description>

<change-notes><![CDATA[
<html>
<b>Changes in version 0.2:</b>
<ul>
<li>Fix inconsistent unescaping</li>
<li>Java 8 compatibility</li>
</ul>
<b>Changes in version 0.1:</b>
<ul>
<li>Initial release</li>
</ul>
</html>
]]></change-notes>

<idea-version since-build="192.5728.98"/>

<depends>com.intellij.modules.lang</depends>
Expand Down

0 comments on commit 77df395

Please sign in to comment.