-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from chathurabuddi/v1.0.1
release-v1.0.1
- Loading branch information
Showing
4 changed files
with
28 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
ideaVersion=2019.3 | ||
customSinceBuild=172.3317.76 | ||
customUntilBuild=193.* | ||
version=1.0.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,24 +25,28 @@ | |
<idea-plugin url="https://github.com/chathurabuddi/intellij-jasper-report-support"> | ||
<id>lk.chathurabuddi.jasper-report-supportn</id> | ||
<name>Jasper Report Support</name> | ||
<version>1.0.0</version> | ||
<version>1.0.1</version> | ||
<vendor email="[email protected]" url="http://www.chathurabuddi.lk">chathurabuddi</vendor> | ||
|
||
<description><![CDATA[ | ||
This plugin will enable Jasper Report support within Intellij Idea.<br> | ||
]]></description> | ||
|
||
<change-notes><![CDATA[ | ||
Release 1.0.1: v1.0.1 | ||
- Added support for Intellij 2019.3 | ||
- Minor issues fixed | ||
Release 1.0.0: Initial release.<br> | ||
- Enable syntax highliting and code suggestion for jrxml files | ||
- Enable syntax highlighting and code suggestion for jrxml files | ||
]]> | ||
</change-notes> | ||
|
||
<depends>com.intellij.modules.platform</depends> | ||
<depends>com.intellij.modules.lang</depends> | ||
|
||
<extensions defaultExtensionNs="com.intellij"> | ||
<fileType name="Jasper source file" implementationClass="lk.chathurabuddi.file.type.jrxml.JrxmlFileType" fieldName="INSTANCE" | ||
language="Jrxml" extensions="jrxml"/> | ||
<fileType name="Jasper source file" implementationClass="lk.chathurabuddi.file.type.jrxml.JrxmlFileType" | ||
fieldName="INSTANCE" language="XML" extensions="jrxml"/> | ||
<lang.parserDefinition language="Jrxml" implementationClass="lk.chathurabuddi.lang.jrxml.JrxmlParserDefinition"/> | ||
<xml.schemaProvider implementation="lk.chathurabuddi.lang.jrxml.autocomplete.JrxmlSchemaProvider"/> | ||
</extensions> | ||
|