Skip to content

Commit

Permalink
1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin-Dobell committed Jul 29, 2020
1 parent 307d1d7 commit bb5f222
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 6 deletions.
1 change: 0 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ def versions = [:]
versions["201"] = [
ideaSDKVersion: "IC-201.6668.121",
sinceBuild: "201",
untilBuild: "201.*",
archiveName: "IntelliJ-Luanalysis"
]

Expand Down
11 changes: 9 additions & 2 deletions build_plugin.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,14 @@ version = "${version}-IDEA${IDEA_VER}"
def cfg = [
ideaSDKVersion: ideaSDKVersion,
sinceBuild: sinceBuild,
untilBuild: untilBuild,
archiveName: archiveName,
explicitJavaDependency: project.hasProperty('explicitJavaDependency') ? explicitJavaDependency : "true",
]

if (project.hasProperty('untilBuild')) {
cfg.untilBuild = untilBuild
}

def rev = getRev()

intellij {
Expand Down Expand Up @@ -114,7 +118,10 @@ compileTestKotlin {

patchPluginXml {
sinceBuild cfg.sinceBuild
untilBuild cfg.untilBuild

if (cfg.untilBuild) {
untilBuild cfg.untilBuild
}
}

publishPlugin {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# limitations under the License.
#

version = 1.0.1
version = 1.0.2
# https://github.com/EmmyLua/EmmyLuaDebugger/releases
emmyDebuggerVersion = 1.0.14
# https://github.com/EmmyLua/EmmyLuaLegacyDebugger/releases
Expand Down
8 changes: 6 additions & 2 deletions src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,18 @@
<idea-plugin xmlns:xi="http://www.w3.org/2001/XInclude">
<id>au.com.glassechidna.luanalysis</id>
<name>Luanalysis</name>
<version>1.0.1</version>
<version>1.0.2</version>
<vendor email="contact@glassechidna.com.au">Benjamin Dobell</vendor>
<category>Custom Languages</category>
<description><![CDATA[
An IDE for statically typed Lua development.<br>
<p><a href="https://github.com/Benjamin-Dobell/IntelliJ-Luanalysis">Source Code</a></p>
]]></description>
<change-notes><![CDATA[
<strong>1.0.2</strong>
<ul>
<li>Same as 1.0.1, but not constrained to IntelliJ 201 (2020.1).</li>
</ul>
<strong>1.0.1</strong>
<ul>
<li>Replaced duplicate class inspection with duplicate type inspection. Class/alias name collisions are now reported.</li>
Expand All @@ -39,7 +43,7 @@
</ul>
]]>
</change-notes>
<idea-version since-build="201" until-build="201.*"/>
<idea-version since-build="201"/>
<xi:include href="emmylua-core.xml" xpointer="xpointer(/idea-plugin/*)"/>
<depends optional="true" config-file="emmylua-project.xml">com.intellij.java</depends>
</idea-plugin>

0 comments on commit bb5f222

Please sign in to comment.