[Bps-public-commit] rt-extension-tags branch, master, updated. 0.02-5-g4f359c4
Jim Brandt
jbrandt at bestpractical.com
Tue Aug 9 08:00:53 EDT 2016
The branch, master has been updated
via 4f359c4ed371f87d1376e0fed3d44cb6bc49e55b (commit)
via 1b1d8a5be9141a3fd98c78a379bf9b7175a90a8f (commit)
via 457c710bf6814617e13ef1185e0c417e57e5fbfe (commit)
from 4d816f29df61b7ca9481467fd757f88ae4f40dcd (commit)
Summary of changes:
Changes | 9 +++++
MANIFEST | 5 ++-
META.yml | 4 ++-
html/Elements/EditCustomFieldTags | 39 +++++++++++++++++++++-
lib/RT/Extension/Tags.pm | 4 ++-
static/css/jquery.tagit.css | 69 +++++++++++++++++++++++++++++++++++++++
static/js/tag-it.min.js | 17 ++++++++++
7 files changed, 143 insertions(+), 4 deletions(-)
create mode 100644 static/css/jquery.tagit.css
create mode 100644 static/js/tag-it.min.js
- Log -----------------------------------------------------------------
commit 1b1d8a5be9141a3fd98c78a379bf9b7175a90a8f
Merge: 4d816f2 457c710
Author: Jim Brandt <jbrandt at bestpractical.com>
Date: Mon Aug 8 11:21:26 2016 -0400
Merge branch 'tagit'
commit 4f359c4ed371f87d1376e0fed3d44cb6bc49e55b
Author: Jim Brandt <jbrandt at bestpractical.com>
Date: Mon Aug 8 11:29:12 2016 -0400
Prep for 0.03 release
diff --git a/Changes b/Changes
index d0b0682..9ac258f 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,14 @@
Revision history for RT-Extension-Tags
+0.03 2016-08-08
+
+ - Create a new RT custom field type for tags to use in place of
+ RT's multiple select type. Add javascript tagit library to enhance
+ UI when selecting tags.
+
+ Note: the CF type change requires manual updates if you installed
+ previous versions. See the Upgrade notes for details.
+
0.02 2016-07-13
- Contributions from Alex Vandiver to remove the custom condition,
diff --git a/MANIFEST b/MANIFEST
index f6875cd..be2b8e2 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -1,5 +1,7 @@
Changes
etc/initialdata
+html/Elements/EditCustomFieldTags
+html/Elements/ShowCustomFieldTags
inc/Module/Install.pm
inc/Module/Install/Base.pm
inc/Module/Install/Can.pm
@@ -13,9 +15,10 @@ inc/Module/Install/RTx/Runtime.pm
inc/Module/Install/Win32.pm
inc/Module/Install/WriteAll.pm
inc/YAML/Tiny.pm
-lib/RT/Action/AddNewCFValue.pm
lib/RT/Extension/Tags.pm
Makefile.PL
MANIFEST This list of files
META.yml
README
+static/css/jquery.tagit.css
+static/js/tag-it.min.js
diff --git a/META.yml b/META.yml
index df0bad6..ffc8ee6 100644
--- a/META.yml
+++ b/META.yml
@@ -17,13 +17,15 @@ name: RT-Extension-Tags
no_index:
directory:
- etc
+ - html
- inc
+ - static
requires:
perl: 5.8.3
resources:
license: http://opensource.org/licenses/gpl-license.php
repository: https://github.com/bestpractical/rt-extension-tags
-version: '0.02'
+version: '0.03'
x_module_install_rtx_version: '0.37'
x_requires_rt: 4.0.0
x_rt_too_new: 4.6.0
diff --git a/lib/RT/Extension/Tags.pm b/lib/RT/Extension/Tags.pm
index 570ba52..10d9c75 100644
--- a/lib/RT/Extension/Tags.pm
+++ b/lib/RT/Extension/Tags.pm
@@ -2,7 +2,7 @@ use strict;
use warnings;
package RT::Extension::Tags;
-our $VERSION = '0.02';
+our $VERSION = '0.03';
require RT::CustomField;
-----------------------------------------------------------------------
More information about the Bps-public-commit
mailing list