Skip to content

Commit e77bb25

Browse files
committed
Release 0.2.11.1
1 parent 23b02d5 commit e77bb25

6 files changed

Lines changed: 21 additions & 22 deletions

File tree

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ plugins {
55
}
66

77
group = "org.exbin.deltahex.intellij"
8-
version = "0.2.12.snapshot"
8+
version = "0.2.11.1"
99
val ideLocalPath = providers.gradleProperty("ideLocalPath").getOrElse("")
1010

1111
repositories {

changes.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
0.2.12
2-
-
1+
0.2.11.1 (2025-02-14)
2+
- Plugin breaks access to the settings screen (issue #63)
3+
- Database module dependency issue (issue #62)
34

45
0.2.11 (2025-02-08)
56
- Added Base 64 conversion

src/main/java/org/exbin/bined/intellij/BinEdPluginStartupActivity.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@
7474
import org.exbin.framework.about.AboutModule;
7575
import org.exbin.framework.about.api.AboutModuleApi;
7676
import org.exbin.framework.action.ActionModule;
77+
import org.exbin.framework.action.api.ActionConsts;
7778
import org.exbin.framework.action.api.ActionModuleApi;
7879
import org.exbin.framework.action.api.ComponentActivationListener;
7980
import org.exbin.framework.action.api.GroupMenuContributionRule;
@@ -115,6 +116,7 @@
115116
import org.exbin.framework.operation.undo.OperationUndoModule;
116117
import org.exbin.framework.operation.undo.api.OperationUndoModuleApi;
117118
import org.exbin.framework.options.OptionsModule;
119+
import org.exbin.framework.options.action.OptionsAction;
118120
import org.exbin.framework.options.api.DefaultOptionsPage;
119121
import org.exbin.framework.options.api.OptionsComponent;
120122
import org.exbin.framework.options.api.OptionsModuleApi;
@@ -701,7 +703,8 @@ private void init() {
701703
AboutModuleApi aboutModule = App.getModule(AboutModuleApi.class);
702704
OptionsModuleApi optionsModule = App.getModule(OptionsModuleApi.class);
703705
optionsModule.setOptionsPanelType(OptionsPanelType.LIST);
704-
optionsModule.registerMenuAction();
706+
// TODO Is currently stealing options action on macOS
707+
// optionsModule.registerMenuAction();
705708

706709
HelpOnlineModule helpOnlineModule = App.getModule(HelpOnlineModule.class);
707710
try {

src/main/resources/META-INF/database2-ext.xml

Lines changed: 0 additions & 10 deletions
This file was deleted.

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

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<!-- Public plugin name should be written in Title Case.
77
Guidelines: https://plugins.jetbrains.com/docs/marketplace/plugin-overview-page.html#plugin-name -->
88
<name>BinEd - Binary/Hex Editor</name>
9-
<version>0.2.12.snapshot</version>
9+
<version>0.2.11.1</version>
1010
<!-- A displayed Vendor name or Organization ID displayed on the Plugins Page. -->
1111
<vendor email="exbinproject@gmail.com" url="https://exbin.org">ExBin Project</vendor>
1212

@@ -22,7 +22,7 @@
2222
<li>Use "Edit as Binary" in column context menu in DB view</li></ul>
2323
2424
<h1>Preview</h1>
25-
<p><img src="https://bined.exbin.org/images/bined-intellij-plugin-preview-0.2.12.png" alt="[bined-intellij-plugin-preview]" width="382" height="65"/></p>
25+
<p><img src="https://bined.exbin.org/images/bined-intellij-plugin-preview-0.2.11.png" alt="[bined-intellij-plugin-preview]" width="382" height="65"/></p>
2626
2727
<h1>Features</h1>
2828
<ul><li>Visualize data as numerical (hexadecimal) codes and text representation</li>
@@ -42,7 +42,13 @@ Sources: <a href="https://github.com/exbin/bined-intellij-plugin">https://github
4242
]]></description>
4343

4444
<change-notes><![CDATA[
45-
-
45+
<ul><li>Plugin breaks access to the settings screen (issue #63)</li>
46+
<li>Database module dependency issue (issue #62)</li>
47+
<li>Added Base 64 conversion</li>
48+
<li>Added option for inspector input fields font</li>
49+
<li>Added icon set support</li>
50+
<li>Added more languages (de, cs, fr, it, pt, pl, ru)</li>
51+
<li>Fixed write-unsafe context (issue #60)</li></ul>
4652
]]>
4753
</change-notes>
4854

@@ -64,7 +70,6 @@ Sources: <a href="https://github.com/exbin/bined-intellij-plugin">https://github
6470
<depends optional="true" config-file="appcode-ext.xml">com.intellij.appcode</depends>
6571
<depends optional="true" config-file="debugger-ext.xml">com.intellij.modules.xdebugger</depends>
6672
<depends optional="true" config-file="database-ext.xml">com.intellij.modules.database</depends>
67-
<!-- Possibly renamed, check with more recent versions <depends optional="true" config-file="database2-ext.xml">com.intellij.database</depends> -->
6873

6974
<project-components>
7075
</project-components>

src/main/resources/org/exbin/bined/intellij/resources/BinEdIntelliJPlugin.properties

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
Application.name = BinEd
22
Application.title = BinEd Binary/Hex Editor
3-
Application.release = 0.2.12
4-
Application.mode = DEV
5-
Application.version = 0.2.12 DEV
6-
Application.product= BinEd Binary/Hex Editor 0.2.12 DEV
3+
Application.release = 0.2.11.1
4+
Application.mode =
5+
Application.version = 0.2.11.1
6+
Application.product= BinEd Binary/Hex Editor 0.2.11.1
77
Application.vendor = ExBin Project
88
Application.homepage = https://bined.exbin.org/intellij-plugin/
99
Application.vendorId = ExBin Project

0 commit comments

Comments
 (0)