From d2d2d4d642b6998142fc6f58b8be601969c9dd40 Mon Sep 17 00:00:00 2001 From: skidus Date: Sat, 18 Apr 2026 12:24:12 +0700 Subject: [PATCH] feat(dynform): reference and completion for FORM-NAME attribute - Added comprehensive reference and completion support for FORM-NAME in DATASET > FIELDS > FIELD. - Implemented smart field resolution to target hidden fields in FORM_ENTRY > FIELDS and named fields in FORM_ENTRY > LAYOUT. - Enhanced form scanning to recursively discover fields across all included .frml files. - Bumped plugin version to 3.2.5. --- build.gradle.kts | 8 +- .../dynform/DynFormCompletionContributor.java | 72 ++++++++++++++++++ .../dynform/DynFormReferenceContributor.java | 76 +++++++++++++++++++ src/main/resources/META-INF/plugin.xml | 6 ++ 4 files changed, 161 insertions(+), 1 deletion(-) diff --git a/build.gradle.kts b/build.gradle.kts index b4f7fa8..4a3a58e 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -4,7 +4,7 @@ plugins { id("org.jetbrains.intellij.platform") version "2.7.0" } group = "com.sdk.dynform.tools" -version = "3.2.4" +version = "3.2.5" repositories { mavenCentral() @@ -38,6 +38,12 @@ intellijPlatform { } changeNotes = """ +

[3.2.5]

+

[3.2.4]