Skip to content
This repository was archived by the owner on Mar 25, 2019. It is now read-only.

Commit 8ab3301

Browse files
committed
Version advance, CLion 2018.3.RC2 compatibility
1 parent faaba03 commit 8ab3301

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.idea/misc.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

resources/META-INF/plugin.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<idea-plugin>
22
<id>xyz.elmot.clion.armsupport.prj</id>
33
<name>OpenOCD + STM32CubeMX support for ARM embedded development</name>
4-
<version>1.2.alpha1</version>
4+
<version>1.2.alpha2</version>
55
<vendor email="me@elmot.xyz" url="http://elmot.xyz">Elmot</vendor>
66

77
<description><![CDATA[
@@ -46,7 +46,7 @@ The plugin is free, but if you like it, you may support my work with a PayPal do
4646
</change-notes>
4747

4848
<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html for description -->
49-
<idea-version since-build="182.9999" until-build="183.*"/>
49+
<idea-version since-build="183.4284" until-build="183.*"/>
5050

5151
<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/plugin_compatibility.html
5252
on how to target different products -->

src/xyz/elmot/clion/openocd/Informational.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
import com.intellij.CommonBundle;
77
import com.intellij.ide.BrowserUtil;
88
import com.intellij.openapi.application.ApplicationManager;
9+
import com.intellij.openapi.options.Configurable;
910
import com.intellij.openapi.options.ConfigurationException;
1011
import com.intellij.openapi.options.ShowSettingsUtil;
1112
import com.intellij.openapi.project.Project;
@@ -83,7 +84,7 @@ protected void hyperlinkActivated(HyperlinkEvent e) {
8384
if(link.toLowerCase().startsWith(SETTINGS_PROTOCOL)) {
8485
try {
8586
String className = link.substring(SETTINGS_PROTOCOL.length());
86-
ShowSettingsUtil.getInstance().showSettingsDialog(project, Class.forName(className));
87+
ShowSettingsUtil.getInstance().showSettingsDialog(project, (Class<Configurable>)Class.forName(className));
8788
} catch (ClassNotFoundException ignored) {
8889
}
8990
} else {

0 commit comments

Comments
 (0)