Skip to content

Commit 146cc85

Browse files
committed
0.0.8
1 parent 1884b9e commit 146cc85

File tree

6 files changed

+56
-18
lines changed

6 files changed

+56
-18
lines changed

CHANGELOG.md

Lines changed: 49 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,28 +4,72 @@
44

55
## [Unreleased]
66

7+
## [0.0.8] - 2025-07-08
8+
- Fix some deprecated method calls
9+
- Fix rare bug where a non-critical exception would prevent plugin from working
10+
11+
## [0.0.7] - 2023-09-22
12+
- Compatible with latest IntelliJ version
13+
714
## [0.0.6] - 2023-04-24
8-
### Fixed
915

16+
### Fixed
1017
- Compatibility listing
1118
- Description
1219

1320
## [0.0.5] - 2023-04-24
14-
### Fixed
1521

22+
### Fixed
1623
- Don't use deprecated ContentFactory method
1724

1825
## [0.0.4] - 2023-04-24
1926

2027
### Added
21-
2228
- Alternate two colours for different matches (0,255,0 and 0,255,145).
2329
- Reduce Find Output font size.
2430

2531
### Fixed
26-
2732
- Fixed a bug during multigroup matching with short strings
2833

29-
3034
## [0.0.3]
3135
Created Regex Helper from RegexPlugin. Added multi-group highlighting support.
36+
37+
[Unreleased]: https://github.com/Marsonge/regexPlugin/compare/v0.0.7...HEAD
38+
39+
[0.0.7]: https://github.com/Marsonge/regexPlugin/compare/v0.0.6...v0.0.7
40+
41+
[0.0.6]: https://github.com/Marsonge/regexPlugin/compare/v0.0.5...v0.0.6
42+
43+
[0.0.5]: https://github.com/Marsonge/regexPlugin/compare/v0.0.4...v0.0.5
44+
45+
[0.0.4]: https://github.com/Marsonge/regexPlugin/compare/v0.0.3...v0.0.4
46+
47+
[0.0.3]: https://github.com/Marsonge/regexPlugin/commits/v0.0.3
48+
49+
[Unreleased]: https://github.com/Marsonge/regexPlugin/compare/v0.0.8...HEAD
50+
51+
[0.0.8]: https://github.com/Marsonge/regexPlugin/compare/v0.0.7...v0.0.8
52+
53+
[0.0.7]: https://github.com/Marsonge/regexPlugin/compare/v0.0.6...v0.0.7
54+
55+
[0.0.6]: https://github.com/Marsonge/regexPlugin/compare/v0.0.5...v0.0.6
56+
57+
[0.0.5]: https://github.com/Marsonge/regexPlugin/compare/v0.0.4...v0.0.5
58+
59+
[0.0.4]: https://github.com/Marsonge/regexPlugin/compare/v0.0.3...v0.0.4
60+
61+
[0.0.3]: https://github.com/Marsonge/regexPlugin/commits/v0.0.3
62+
63+
[Unreleased]: https://github.com/Marsonge/regexPlugin/compare/v0.0.8...HEAD
64+
65+
[0.0.8]: https://github.com/Marsonge/regexPlugin/compare/v0.0.7...v0.0.8
66+
67+
[0.0.7]: https://github.com/Marsonge/regexPlugin/compare/v0.0.6...v0.0.7
68+
69+
[0.0.6]: https://github.com/Marsonge/regexPlugin/compare/v0.0.5...v0.0.6
70+
71+
[0.0.5]: https://github.com/Marsonge/regexPlugin/compare/v0.0.4...v0.0.5
72+
73+
[0.0.4]: https://github.com/Marsonge/regexPlugin/compare/v0.0.3...v0.0.4
74+
75+
[0.0.3]: https://github.com/Marsonge/regexPlugin/commits/v0.0.3

gradle.properties

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,10 @@ pluginGroup = com.timindustries.marsonge.regexpluginv2
44
pluginName = Regex Helper
55
pluginRepositoryUrl = https://github.com/Marsonge/regexPlugin
66
# SemVer format -> https://semver.org
7-
pluginVersion = 0.0.6
7+
pluginVersion = 0.0.8
88

99
# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
10-
pluginSinceBuild = 222.*
11-
pluginUntilBuild = 231.*
10+
pluginSinceBuild = 231
1211

1312
# IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension
1413
platformType = IC

src/main/java/com/timindustries/regexplugin/RegexPanel.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ public class RegexPanel extends JPanel {
7979
public static final String EVENT_SHOW_LABELS = "showLabels";
8080

8181
public RegexPanel(final RegexPluginConfig config,
82-
final ComponentManager factory) throws Exception {
82+
final ComponentManager factory) {
8383
this.config = config;
8484
libraryManager.init(this);
8585
uiFactory = factory;
@@ -181,7 +181,7 @@ public void saveLibrary() {
181181
libraryManager.saveCurrent();
182182
}
183183

184-
private JScrollPane createReferenceScrollPane() throws Exception {
184+
private JScrollPane createReferenceScrollPane() {
185185
final JScrollPane scrolledReference =
186186
uiFactory.getScrollPane(createReferencePane());
187187
scrolledReference.setBorder(

src/main/java/com/timindustries/regexplugin/RegexPluginToolWindow.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ public class RegexPluginToolWindow {
1111

1212
private RegexPluginConfig fConfig = new RegexPluginConfig();
1313

14-
public RegexPluginToolWindow(ToolWindow toolWindow) throws Exception {
14+
public RegexPluginToolWindow(ToolWindow toolWindow) {
1515
fPanel = new RegexPanel(fConfig, ComponentFactory.getInstance());
1616
}
1717

src/main/java/com/timindustries/regexplugin/RegexPluginToolWindowFactory.java

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,7 @@ public class RegexPluginToolWindowFactory implements ToolWindowFactory, DumbAwar
1717
* @param toolWindow current tool window
1818
*/
1919
public void createToolWindowContent(@NotNull Project project, @NotNull ToolWindow toolWindow) {
20-
RegexPluginToolWindow myToolWindow = null;
21-
try {
22-
myToolWindow = new RegexPluginToolWindow(toolWindow);
23-
} catch (Exception e) {
24-
e.printStackTrace();
25-
}
20+
RegexPluginToolWindow myToolWindow = new RegexPluginToolWindow(toolWindow);
2621
ContentFactory contentFactory = ContentFactory.getInstance();
2722
Content content = contentFactory.createContent(myToolWindow.getContent(), "", false);
2823
toolWindow.getContentManager().addContent(content);

src/main/java/com/timindustries/regexplugin/actions/ToggleLabelsAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public boolean isSelected() {
1616
public void setSelected(boolean b) {
1717
EventManager.getInstance()
1818
.fireEvent(EventManager.getGlobalTarget(), RegexPanel.EVENT_SHOW_LABELS,
19-
new Boolean(b));
19+
Boolean.valueOf(b));
2020
}
2121

2222
public void perform() {

0 commit comments

Comments
 (0)