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"
|
||||
version = "2.1.1"
|
||||
version = "2.1.2"
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
@@ -37,6 +37,12 @@ intellijPlatform {
|
||||
}
|
||||
|
||||
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>
|
||||
<ul>
|
||||
<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.
|
||||
]]></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>
|
||||
<ul>
|
||||
<li>Update: Case-insensitive column type mapping in GUtils.java.</li>
|
||||
@@ -55,29 +61,24 @@
|
||||
<depends>com.intellij.database</depends>
|
||||
|
||||
<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">
|
||||
<add-to-group group-id="DatabaseViewPopupMenu" anchor="first"/>
|
||||
<action id="com.sdk.generators.actionmodels.GenerateBeanAction"
|
||||
class="com.sdk.generators.actionmodels.GenerateBeanAction"
|
||||
text="Generate Action Models"
|
||||
text="Generate Action Models V2"
|
||||
description="Generates ActionBean classes from a database schema.">
|
||||
<add-to-group group-id="DatabaseViewPopupMenu" anchor="first"/>
|
||||
<keyboard-shortcut keymap="$default" first-keystroke="ctrl alt G"/>
|
||||
</action>
|
||||
<!-- Defines an action that will appear in the context menu for project directories -->
|
||||
<action id="com.sdk.generators.actionmodels.GenerateBeanAction.v3"
|
||||
class="com.sdk.generators.actionmodels.GenerateBeanActionV3"
|
||||
text="Generate Action Models V3"
|
||||
description="Generates ActionBean classes from a database schema V3 (sdk.db.xxx).">
|
||||
<add-to-group group-id="DatabaseViewPopupMenu" anchor="after" relative-to-action="com.sdk.generators.actionmodels.GenerateBeanAction"/>
|
||||
<keyboard-shortcut keymap="$default" first-keystroke="ctrl alt H"/>
|
||||
</action>
|
||||
<action id="com.sdk.generators.actionmodels.GenerateDatasetAction"
|
||||
class="com.sdk.generators.actionmodels.GenerateDatasetAction"
|
||||
text="Generate Dataset XML"
|
||||
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"/>
|
||||
<keyboard-shortcut keymap="$default" first-keystroke="ctrl alt J"/>
|
||||
</action>
|
||||
</group>
|
||||
</actions>
|
||||
|
||||
<!-- in plugin.xml, inside the <extensions defaultExtensionNs="com.intellij"> tag -->
|
||||
|
||||
Reference in New Issue
Block a user