chore: bump version to 2.1.2 and update release notes
- Grouped database actions into a single "Generate Action Models" popup menu. - Renamed base action to "Generate Action Models V2" for clarity. - Improved context menu organization in the Database View.
This commit is contained in:
Binary file not shown.
@@ -1 +1 @@
|
|||||||
2026-03-02
|
2026-04-03
|
||||||
@@ -5,7 +5,7 @@ plugins {
|
|||||||
}
|
}
|
||||||
|
|
||||||
group = "com.sdk.generators.actionmodels.v3"
|
group = "com.sdk.generators.actionmodels.v3"
|
||||||
version = "2.1.1"
|
version = "2.1.2"
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
@@ -37,6 +37,12 @@ intellijPlatform {
|
|||||||
}
|
}
|
||||||
|
|
||||||
changeNotes = """
|
changeNotes = """
|
||||||
|
<h2>[2.1.2]</h2>
|
||||||
|
<ul>
|
||||||
|
<li>Feature: Grouped database actions into a single "Generate Action Models" popup menu.</li>
|
||||||
|
<li>UI: Renamed base action to "Generate Action Models V2" to distinguish it from V3.</li>
|
||||||
|
<li>UI: Improved context menu organization by placing grouped actions at the top of the Database View menu.</li>
|
||||||
|
</ul>
|
||||||
<h2>[2.1.1]</h2>
|
<h2>[2.1.1]</h2>
|
||||||
<ul>
|
<ul>
|
||||||
<li>Update: Case-insensitive column type mapping in GUtils.java.</li>
|
<li>Update: Case-insensitive column type mapping in GUtils.java.</li>
|
||||||
|
|||||||
@@ -10,7 +10,13 @@
|
|||||||
Right-click on a package and select "Generate Database Action Models" to start.
|
Right-click on a package and select "Generate Database Action Models" to start.
|
||||||
]]></description>
|
]]></description>
|
||||||
|
|
||||||
<change-notes><![CDATA[
|
<change-notes><![CDATA[
|
||||||
|
<h2>[2.1.2]</h2>
|
||||||
|
<ul>
|
||||||
|
<li>Feature: Grouped database actions into a single "Generate Action Models" popup menu.</li>
|
||||||
|
<li>UI: Renamed base action to "Generate Action Models V2" to distinguish it from V3.</li>
|
||||||
|
<li>UI: Improved context menu organization by placing grouped actions at the top of the Database View menu.</li>
|
||||||
|
</ul>
|
||||||
<h2>[2.1.1]</h2>
|
<h2>[2.1.1]</h2>
|
||||||
<ul>
|
<ul>
|
||||||
<li>Update: Case-insensitive column type mapping in GUtils.java.</li>
|
<li>Update: Case-insensitive column type mapping in GUtils.java.</li>
|
||||||
@@ -55,29 +61,24 @@
|
|||||||
<depends>com.intellij.database</depends>
|
<depends>com.intellij.database</depends>
|
||||||
|
|
||||||
<actions>
|
<actions>
|
||||||
<!-- Defines an action that will appear in the context menu for project directories -->
|
<group id="com.sdk.dblogergen.actions.AuditGroup" popup="true" text="Generate Action Models">
|
||||||
<action id="com.sdk.generators.actionmodels.GenerateBeanAction"
|
|
||||||
class="com.sdk.generators.actionmodels.GenerateBeanAction"
|
|
||||||
text="Generate Action Models"
|
|
||||||
description="Generates ActionBean classes from a database schema.">
|
|
||||||
<add-to-group group-id="DatabaseViewPopupMenu" anchor="first"/>
|
<add-to-group group-id="DatabaseViewPopupMenu" anchor="first"/>
|
||||||
<keyboard-shortcut keymap="$default" first-keystroke="ctrl alt G"/>
|
<action id="com.sdk.generators.actionmodels.GenerateBeanAction"
|
||||||
</action>
|
class="com.sdk.generators.actionmodels.GenerateBeanAction"
|
||||||
<!-- Defines an action that will appear in the context menu for project directories -->
|
text="Generate Action Models V2"
|
||||||
<action id="com.sdk.generators.actionmodels.GenerateBeanAction.v3"
|
description="Generates ActionBean classes from a database schema.">
|
||||||
class="com.sdk.generators.actionmodels.GenerateBeanActionV3"
|
</action>
|
||||||
text="Generate Action Models V3"
|
<action id="com.sdk.generators.actionmodels.GenerateBeanAction.v3"
|
||||||
description="Generates ActionBean classes from a database schema V3 (sdk.db.xxx).">
|
class="com.sdk.generators.actionmodels.GenerateBeanActionV3"
|
||||||
<add-to-group group-id="DatabaseViewPopupMenu" anchor="after" relative-to-action="com.sdk.generators.actionmodels.GenerateBeanAction"/>
|
text="Generate Action Models V3"
|
||||||
<keyboard-shortcut keymap="$default" first-keystroke="ctrl alt H"/>
|
description="Generates ActionBean classes from a database schema V3 (sdk.db.xxx).">
|
||||||
</action>
|
</action>
|
||||||
<action id="com.sdk.generators.actionmodels.GenerateDatasetAction"
|
<action id="com.sdk.generators.actionmodels.GenerateDatasetAction"
|
||||||
class="com.sdk.generators.actionmodels.GenerateDatasetAction"
|
class="com.sdk.generators.actionmodels.GenerateDatasetAction"
|
||||||
text="Generate Dataset XML"
|
text="Generate Dataset XML"
|
||||||
description="Generates Dataset XML definition from a database table.">
|
description="Generates Dataset XML definition from a database table.">
|
||||||
<add-to-group group-id="DatabaseViewPopupMenu" anchor="after" relative-to-action="com.sdk.generators.actionmodels.GenerateBeanAction.v3"/>
|
</action>
|
||||||
<keyboard-shortcut keymap="$default" first-keystroke="ctrl alt J"/>
|
</group>
|
||||||
</action>
|
|
||||||
</actions>
|
</actions>
|
||||||
|
|
||||||
<!-- in plugin.xml, inside the <extensions defaultExtensionNs="com.intellij"> tag -->
|
<!-- in plugin.xml, inside the <extensions defaultExtensionNs="com.intellij"> tag -->
|
||||||
|
|||||||
Reference in New Issue
Block a user