[Bps-public-commit] rt-extension-formtools branch dynamic-forms-from-config updated. 0.53-116-g9cf2a2c
BPS Git Server
git at git.bestpractical.com
Thu Nov 30 15:20:35 UTC 2023
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "rt-extension-formtools".
The branch, dynamic-forms-from-config has been updated
via 9cf2a2c48a6ba44d0d293430cd533073a34e14d7 (commit)
from 43f69ba86d5150f8c19bf50068fdd6213425b1e5 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 9cf2a2c48a6ba44d0d293430cd533073a34e14d7
Author: Jason Crome <jcrome at bestpractical.com>
Date: Thu Nov 30 10:20:31 2023 -0500
RT-Extension-FormTools 0.56
diff --git a/Changes b/Changes
index e1b4cef..3d2b9e3 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,34 @@
Revision history for RT-Extension-FormTools
+0.56 2023-11-30
+ - Show a message to indicate there are pending changes to save
+ - Correctly show the first page after a page deletion
+ - Make sure there is always room to drop new form fields on a page
+ - Display an alert when leaving a page with pending changes
+ - Label Core Fields separately from Custom Fields in the editor
+ - Fix bugs saving hr and textarea elements
+ - Name "Next" button to make sure the form has data to submit, avoiding
+ a data truncated error on form POST
+ - Fix handling of internal validation arguments
+ - Allow customization of alignment of <p> elements
+ - Fix bug causing duplicate checkbox IDs when adding new items
+ - Allow fields to be marked as hidden (allows form admins to set values
+ that form users can't edit)
+ - Fix badge and text alignment in field list
+ - Allow client side validation (fields on forms may be required, but
+ not required when creating/editing a ticket)
+ - Grant all users the right to see/set custom field values on forms
+ - Always enable core CF validations
+ - Support dependent fields based on selection of values in select/radio
+ inputs
+ - Fix browser-related bugs in selectpicker controls
+ - Skip check for required fields when pressing Back button on form
+ - Clear CF invalid CF values when pressing Back button
+ - Abort in advance if form user lacks rights to create tickets
+ - Remove label from content fields
+ - Show Required for fields marked required in form
+ - Allow checkboxes to be fully clickable
+
0.55 2023-10-31
- Make core and custom fields consistent with other HTML elements
- Sync page name and tab text on name update
diff --git a/MANIFEST b/MANIFEST
index ae8438d..6413f46 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -1,3 +1,4 @@
+bin/rt-insert-formtools-config
bin/rt-insert-formtools-config.in
Changes
etc/sample_form.json
diff --git a/META.yml b/META.yml
index e15058e..71f47d3 100644
--- a/META.yml
+++ b/META.yml
@@ -25,6 +25,6 @@ requires:
resources:
license: http://opensource.org/licenses/gpl-license.php
repository: https://github.com/bestpractical/rt-extension-formtools
-version: '0.55'
+version: '0.56'
x_module_install_rtx_version: '0.43'
x_requires_rt: 5.0.0
diff --git a/lib/RT/Extension/FormTools.pm b/lib/RT/Extension/FormTools.pm
index c02a1eb..c78a917 100644
--- a/lib/RT/Extension/FormTools.pm
+++ b/lib/RT/Extension/FormTools.pm
@@ -3,7 +3,7 @@ use strict;
package RT::Extension::FormTools;
-our $VERSION = '0.55';
+our $VERSION = '0.56';
RT->AddStyleSheets('rt-extension-formtools.css');
RT->AddJavaScript('rt-extension-formtools.js');
-----------------------------------------------------------------------
Summary of changes:
Changes | 29 +++++++++++++++++++++++++++++
MANIFEST | 1 +
META.yml | 2 +-
lib/RT/Extension/FormTools.pm | 2 +-
4 files changed, 32 insertions(+), 2 deletions(-)
hooks/post-receive
--
rt-extension-formtools
More information about the Bps-public-commit
mailing list