Skip to content

Commit d9c3a86

Browse files
committed
version 1.1.0 compatible with CLion 2018.3
1 parent cc89736 commit d9c3a86

File tree

3 files changed

+12
-15
lines changed

3 files changed

+12
-15
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ Please note
3636
Change log
3737
==========
3838

39+
- 1.1.0 Compatible with 2018.3
3940
- 1.0.9 Compatible with 2018.2
4041
- 1.0.8 Code improvements. Refactored code.
4142
- 1.0.7 Bugfix. To be compatible with CLion 2017.3.

build.gradle

+7-13
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,25 @@
11
plugins {
2-
id 'org.jetbrains.intellij' version '0.3.5'
2+
id 'org.jetbrains.intellij' version '0.4.1'
33
}
44

5-
import org.apache.tools.ant.taskdefs.condition.Os;
6-
75
group 'com.github.itechbear'
8-
version '1.0.9'
6+
version '1.1.0'
97

108
repositories {
119
mavenCentral()
1210
}
1311

1412
intellij {
15-
if (Os.isFamily(Os.FAMILY_WINDOWS)) {
16-
localPath 'D:\\ProgramFiles\\CLion'
17-
} else if (Os.isFamily(Os.FAMILY_MAC)) {
18-
localPath System.getProperty('user.home') + '/Applications/CLion.app/Contents'
19-
} else if (Os.isFamily(Os.FAMILY_UNIX)) {
20-
localPath System.getProperty('user.home') + '/Applications/CLion'
21-
} else {
22-
localPath ''
23-
}
13+
version 'CL-183.4925'
2414

2515
plugins = []
2616
pluginName 'CLion-cpplint'
2717
}
2818

19+
instrumentCode {
20+
compilerVersion '183.4886.37'
21+
}
22+
2923
patchPluginXml {
3024
changeNotes """
3125
Add change notes here.<br>

src/main/resources/META-INF/plugin.xml

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<idea-plugin>
22
<id>com.github.itechbear.clion.cpplint</id>
33
<name>CLion-cpplint</name>
4-
<version>1.0.9</version>
4+
<version>1.1.0</version>
55
<vendor email="[email protected]" url="https://github.com/itechbear">itechbear</vendor>
66

77
<description><![CDATA[
@@ -27,6 +27,8 @@
2727
]]></description>
2828

2929
<change-notes><![CDATA[
30+
1.1.0 Compatible with 2018.3 <br /><br />
31+
3032
1.0.9 Compatible with 2018.2 <br /><br />
3133
3234
1.0.8 Code improvements. Refactored code <br /><br />
@@ -46,7 +48,7 @@
4648
</change-notes>
4749

4850
<!-- please see http://confluence.jetbrains.com/display/IDEADEV/Build+Number+Ranges for description -->
49-
<idea-version since-build="182" until-build="182.*"/>
51+
<idea-version since-build="183" until-build="183.*"/>
5052

5153
<!-- please see http://confluence.jetbrains.com/display/IDEADEV/Plugin+Compatibility+with+IntelliJ+Platform+Products
5254
on how to target different products -->

0 commit comments

Comments
 (0)