[Bps-public-commit] rt-extension-inlinehelp branch master updated. cc3bcadeae5ab3f6cd70213a10a98c64b4bff1a0

BPS Git Server git at git.bestpractical.com
Tue Nov 23 14:50:03 UTC 2021


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-inlinehelp".

The branch, master has been updated
       via  cc3bcadeae5ab3f6cd70213a10a98c64b4bff1a0 (commit)
       via  e015fefbb5b4db64e5ae1c44830a3ca114d10c33 (commit)
      from  e4029ba4d5b8c687e9a137b4c7e86dc3552a1554 (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 cc3bcadeae5ab3f6cd70213a10a98c64b4bff1a0
Author: Jim Brandt <jbrandt at bestpractical.com>
Date:   Tue Nov 23 09:38:36 2021 -0500

    Version 0.03

diff --git a/Changes b/Changes
index ca8458e..0f9deb7 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,10 @@
 Revision history for RT-Extension-InlineHelp
 
+0.03 2021-11-23
+ - Replace default RT custom field and custom role entry help icons with
+   InlineHelp version and replace tooltips with popups so all help is
+   consistent.
+
 0.02 2021-11-08
  - Fix typo of callback dir
  - Check for valid current user before loading inline help
diff --git a/META.yml b/META.yml
index dbd7e8f..b68b110 100644
--- a/META.yml
+++ b/META.yml
@@ -25,7 +25,7 @@ requires:
 resources:
   license: http://opensource.org/licenses/gpl-license.php
   repository: https://github.com/bestpractical/rt-extension-inlinehelp
-version: '0.01'
+version: '0.03'
 x_module_install_rtx_version: '0.42'
 x_requires_rt: 4.4.0
 x_rt_too_new: 5.2.0
diff --git a/lib/RT/Extension/InlineHelp.pm b/lib/RT/Extension/InlineHelp.pm
index e6d656f..d9dd15c 100644
--- a/lib/RT/Extension/InlineHelp.pm
+++ b/lib/RT/Extension/InlineHelp.pm
@@ -2,7 +2,7 @@ use strict;
 use warnings;
 package RT::Extension::InlineHelp;
 
-our $VERSION = '0.02';
+our $VERSION = '0.03';
 
 RT->AddStyleSheets('inlinehelp.css');
 RT->AddJavaScript('inlinehelp.js');
commit e015fefbb5b4db64e5ae1c44830a3ca114d10c33
Author: Jim Brandt <jbrandt at bestpractical.com>
Date:   Tue Nov 23 09:36:40 2021 -0500

    Document the change for custom fields and roles

diff --git a/README b/README
index 2160d23..bc54307 100644
--- a/README
+++ b/README
@@ -41,6 +41,13 @@ OVERVIEW
     the application. When the user hovers over the help icon, a popup dialog
     will display useful information related to that element.
 
+    Custom fields and custom roles in RT already have input help that show
+    "Entry hints" as tooltips. This extension replaces those elements with
+    the version provided by InlineHelp, so the icons are the same size and
+    the display is a popup with a title instead of a tooltip. The content
+    still comes from the entry hint, so your existing configurations will
+    continue to work.
+
   How it works
     Help content is managed as a collection of articles in
     specially-designated classes. If a class has the "Inline Help" custom
diff --git a/lib/RT/Extension/InlineHelp.pm b/lib/RT/Extension/InlineHelp.pm
index aad01df..e6d656f 100644
--- a/lib/RT/Extension/InlineHelp.pm
+++ b/lib/RT/Extension/InlineHelp.pm
@@ -167,6 +167,12 @@ This extension adds help icons to various elements on pages throughout the
 application.  When the user hovers over the help icon, a popup dialog will
 display useful information related to that element.
 
+Custom fields and custom roles in RT already have input help that show "Entry hints"
+as tooltips. This extension replaces those elements with the version provided
+by InlineHelp, so the icons are the same size and the display is a popup with
+a title instead of a tooltip. The content still comes from the entry hint,
+so your existing configurations will continue to work.
+
 =head2 How it works
 
 Help content is managed as a collection of articles in specially-designated classes.
-----------------------------------------------------------------------

Summary of changes:
 Changes                        | 5 +++++
 META.yml                       | 2 +-
 README                         | 7 +++++++
 lib/RT/Extension/InlineHelp.pm | 8 +++++++-
 4 files changed, 20 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
rt-extension-inlinehelp


More information about the Bps-public-commit mailing list