[Bps-public-commit] rt-extension-jsgantt branch master updated. 1.06-4-g1c2c5c9
BPS Git Server
git at git.bestpractical.com
Fri Aug 20 21:43:10 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-jsgantt".
The branch, master has been updated
via 1c2c5c97bed229a83b54390997d47892d6012215 (commit)
via 2ecf320f1a4d6ceab9b413973cb56c3c0f25151e (commit)
via d98843863b10d4e938b38f26126d6c21da85232e (commit)
from 476547f04b5d50375f51322edaf845853e1453fe (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 1c2c5c97bed229a83b54390997d47892d6012215
Author: sunnavy <sunnavy at bestpractical.com>
Date: Sat Aug 21 05:35:42 2021 +0800
Prep 1.07
diff --git a/Changes b/Changes
index f376404..cbbe116 100644
--- a/Changes
+++ b/Changes
@@ -1,3 +1,6 @@
+1.07 2021-08-20
+ - Align rows for RT 5
+
1.06 2020-07-17
- Show "Gantt Chart" menu for ticket searches only
- Fix query stored in session for RT 5
diff --git a/META.yml b/META.yml
index 1d92182..d6681da 100644
--- a/META.yml
+++ b/META.yml
@@ -26,6 +26,6 @@ requires:
resources:
license: http://opensource.org/licenses/gpl-license.php
repository: https://github.com/bestpractical/rt-extension-jsgantt
-version: '1.06'
+version: '1.07'
x_module_install_rtx_version: '0.42'
x_requires_rt: 4.0.0
diff --git a/lib/RT/Extension/JSGantt.pm b/lib/RT/Extension/JSGantt.pm
index cd8af9b..a6dc986 100644
--- a/lib/RT/Extension/JSGantt.pm
+++ b/lib/RT/Extension/JSGantt.pm
@@ -131,7 +131,7 @@ or add C<RT::Extension::JSGantt> to your existing C<@Plugins> line.
package RT::Extension::JSGantt;
-our $VERSION = '1.06';
+our $VERSION = '1.07';
use warnings;
use strict;
commit 2ecf320f1a4d6ceab9b413973cb56c3c0f25151e
Author: sunnavy <sunnavy at bestpractical.com>
Date: Sat Aug 21 05:35:18 2021 +0800
Update copyright year to 2021
diff --git a/README b/README
index dcd90f1..d34036a 100644
--- a/README
+++ b/README
@@ -105,7 +105,7 @@ BUGS
L<rt.cpan.org|http://rt.cpan.org/Public/Dist/Display.html?Name=RT-Extension-JSGantt>.
LICENSE AND COPYRIGHT
- This software is Copyright (c) 2014-2020 by Best Practical Solutions
+ This software is Copyright (c) 2014-2021 by Best Practical Solutions
This is free software, licensed under:
diff --git a/lib/RT/Extension/JSGantt.pm b/lib/RT/Extension/JSGantt.pm
index 8be4494..cd8af9b 100644
--- a/lib/RT/Extension/JSGantt.pm
+++ b/lib/RT/Extension/JSGantt.pm
@@ -2,7 +2,7 @@
#
# COPYRIGHT:
#
-# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC
+# This software is Copyright (c) 1996-2021 Best Practical Solutions, LLC
# <sales at bestpractical.com>
#
# (Except where explicitly superseded by other copyright notices)
@@ -567,7 +567,7 @@ or via the web at
=head1 LICENSE AND COPYRIGHT
-This software is Copyright (c) 2014-2020 by Best Practical Solutions
+This software is Copyright (c) 2014-2021 by Best Practical Solutions
This is free software, licensed under:
commit d98843863b10d4e938b38f26126d6c21da85232e
Author: sunnavy <sunnavy at bestpractical.com>
Date: Sat Aug 21 05:27:40 2021 +0800
Align rows for RT 5
Bootstrap sets "border-collapse" of table to "collapse", which added
some extra space to the right table in each row, and it caused the
alignment issue.
Fixes: https://rt.cpan.org/Ticket/Display.html?id=138657
diff --git a/static/css/jsgantt.css b/static/css/jsgantt.css
index 5845df1..ef8fe7e 100755
--- a/static/css/jsgantt.css
+++ b/static/css/jsgantt.css
@@ -51,3 +51,4 @@ DIV.scroll { BORDER-RIGHT: #efefef 1px solid; PADDING-RIGHT: 0px; BORDER-TOP: #e
DIV.scroll2 { position:relative; PADDING-RIGHT: 0px; overflow:auto ;overflow-x:scroll;overflow-y:hidden; PADDING-LEFT: 0px; PADDING-BOTTOM: 0px; WIDTH: 720px; PADDING-TOP: 0px; BACKGROUND-COLOR: #ffffff }
+#GanttChartDIV table { border-collapse: separate; }
-----------------------------------------------------------------------
Summary of changes:
Changes | 3 +++
META.yml | 2 +-
README | 2 +-
lib/RT/Extension/JSGantt.pm | 6 +++---
static/css/jsgantt.css | 1 +
5 files changed, 9 insertions(+), 5 deletions(-)
hooks/post-receive
--
rt-extension-jsgantt
More information about the Bps-public-commit
mailing list