Skip to content

Commit 5ea4811

Browse files
authored
Set plugin to require restart after installation. (#26)
Added the `require-restart` attribute in the plugin configuration file to ensure proper initialization after installation. Updated the changelog to reflect this change for better transparency.
1 parent a275d87 commit 5ea4811

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66

77
### Added
88

9+
- Updated to require restart after installation.
10+
11+
### Added
12+
913
- Added an option to disable the plugin for large files.
1014
- Added service optimizations for performance gains.
1115

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ pluginGroup=com.github.jdha.brackets
33
pluginName=brackets
44
pluginRepositoryUrl=https://github.com/j-d-ha/brackets
55
# SemVer format -> https://semver.org
6-
pluginVersion=0.0.2
6+
pluginVersion=0.0.3
77
# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
88
pluginSinceBuild=233
99
#pluginUntilBuild=

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
-->
1717

1818
<!-- Plugin Configuration File. Read more: https://plugins.jetbrains.com/docs/intellij/plugin-configuration-file.html -->
19-
<idea-plugin>
19+
<idea-plugin require-restart="true">
2020
<id>com.github.jdha.brackets</id>
2121
<name>brackets</name>
2222
<vendor>j-d-ha</vendor>

0 commit comments

Comments
 (0)