From b2e35225d75c617cd7ad815cc62859ffca66b205 Mon Sep 17 00:00:00 2001 From: Nicola Fontana Date: Fri, 12 Oct 2018 21:17:53 +0200 Subject: [PATCH 1/8] Update CHANGELOG --- CHANGELOG.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 424c189..26d52f0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,8 +10,18 @@ of this ChangeLog is autogenerated by the following command: --pretty=format:'* %cd %h %s' \ $(git ls-remote -t .|tail -1|cut -f1).. +### 3.0.1 (2018-10-12) + +* 2018-10-12 2dda1fc Update jquery to 3.3.1 +* 2018-10-12 ce79871 Update colorbox to 1.6.4 +* 2018-10-11 f0fec57 public webroot support +* 2018-03-26 62f9270 Include map file from bootstrap 3.3.7 + ### 3.0.0 (2018-01-05) +* 2018-01-05 4044e92 Bump release in CHANGELOG +* 2018-01-05 fa853f0 Add standard .gitattributes +* 2018-01-05 09c561e Update CHANGELOG * 2018-01-05 c930bf7 Fix requirements for SS4 * 2018-01-05 df2f98b Add CHANGELOG * 2018-01-05 6f80908 Move usage section into user docs From 55c636c16a943d778a681471a6c26125c9cc7525 Mon Sep 17 00:00:00 2001 From: Nicola Fontana Date: Thu, 25 Oct 2018 07:26:44 +0200 Subject: [PATCH 2/8] Update bootstrap URL --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4da6a0a..e4e47e7 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ SilverStrap =========== A [SilverStripe](http://www.silverstripe.org/) theme based on the -[Bootstrap](http://twitter.github.io/bootstrap/) front-end framework. It should +[Bootstrap](http://getbootstrap.com/) front-end framework. It should work out of the box on basic sites, i.e. by installing and enabling it you should already see how it looks a SilverStrap based website. From c807ed4e5a37fe78fe9648ae46a6417490c02213 Mon Sep 17 00:00:00 2001 From: Nicola Fontana Date: Thu, 25 Oct 2018 08:14:33 +0200 Subject: [PATCH 3/8] Update tracker URLs --- composer.json | 4 ++-- docs/en/support.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index 6f1f793..709d6f5 100644 --- a/composer.json +++ b/composer.json @@ -20,8 +20,8 @@ } ], "support": { - "issues": "http://dev.entidi.com/p/silverstrap/issues/", - "source": "http://dev.entidi.com/p/silverstrap/source/tree/master/" + "issues": "https://track.entidi.com/project/view/9/", + "source": "https://track.entidi.com/source/silverstrap/" }, "require": { "entidi/silverstrap-module": "^2.0" diff --git a/docs/en/support.md b/docs/en/support.md index a71da7c..dcf649c 100644 --- a/docs/en/support.md +++ b/docs/en/support.md @@ -6,6 +6,6 @@ This project has been developed by [ntd](mailto:ntd@entidi.it). Its SilverStripe modules and themes. To check out the code, report issues or propose enhancements, go to the -[dedicated tracker](http://dev.entidi.com/p/silverstrap). +[dedicated tracker](https://track.entidi.com/project/view/9/). Alternatively you can do the same things by leveraging the official [github repository](https://github.com/ntd/silverstrap). From 2e070bfa1d61630dae1558d4c2db964bbc730baa Mon Sep 17 00:00:00 2001 From: Nicola Fontana Date: Tue, 6 Nov 2018 15:35:54 +0100 Subject: [PATCH 4/8] Tab panel role is "tabpanel" --- templates/SilverStripe/Forms/SelectionGroup.ss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/SilverStripe/Forms/SelectionGroup.ss b/templates/SilverStripe/Forms/SelectionGroup.ss index c73b739..31c9f2e 100644 --- a/templates/SilverStripe/Forms/SelectionGroup.ss +++ b/templates/SilverStripe/Forms/SelectionGroup.ss @@ -5,7 +5,7 @@ <% end_loop %>
<% loop $FieldSet %> -
<% if $FieldList %> +
<% if $FieldList %> $FieldHolder<% end_if %>
<% end_loop %>
From adaeb1b77869de4c96127c441230058f0fb7900f Mon Sep 17 00:00:00 2001 From: Nicola Fontana Date: Tue, 6 Nov 2018 20:54:55 +0100 Subject: [PATCH 5/8] Fix aria-controls in TabSet --- templates/SilverStripe/Forms/TabSet.ss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates/SilverStripe/Forms/TabSet.ss b/templates/SilverStripe/Forms/TabSet.ss index 3059747..00b5dc0 100644 --- a/templates/SilverStripe/Forms/TabSet.ss +++ b/templates/SilverStripe/Forms/TabSet.ss @@ -1,9 +1,9 @@
<% loop $Tabs %><% if $Tabs %> - ERROR Nested tabs are not supported by BootStrap 3.<% else %> -
<% loop $Fields %> + ERROR Nested tabs are not supported by BootStrap 3.<% else %> +
<% loop $Fields %> $FieldHolder<% end_loop %>
<% end_if %><% end_loop %>
From 354c4085abd56c5056fdf2a606cb26cb8b2a0bed Mon Sep 17 00:00:00 2001 From: Nicola Fontana Date: Tue, 6 Nov 2018 20:56:09 +0100 Subject: [PATCH 6/8] Set `for` attribute for groups to the first field A FieldGroup contains more than one field: set the default destination of the group label to the id of the first child. --- templates/SilverStripe/Forms/FieldGroup_holder.ss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/SilverStripe/Forms/FieldGroup_holder.ss b/templates/SilverStripe/Forms/FieldGroup_holder.ss index 8c80e43..18fd5d6 100644 --- a/templates/SilverStripe/Forms/FieldGroup_holder.ss +++ b/templates/SilverStripe/Forms/FieldGroup_holder.ss @@ -1,5 +1,5 @@
<% if $Title %> - <% end_if %><% loop $FieldList %> + <% end_if %><% loop $FieldList %> <%-- The following div should pertain to SmallFieldHolder but I cannot pass parameters to the underlying templates for applying the offset only to the first field --%>
From dcbb8a05f5f09e5e2035c19ddf10c8430e6bc3b6 Mon Sep 17 00:00:00 2001 From: Nicola Fontana Date: Wed, 7 Nov 2018 06:37:50 +0100 Subject: [PATCH 7/8] The form role is unnecessary for element form --- templates/SilverStripe/Forms/Includes/Form.ss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/SilverStripe/Forms/Includes/Form.ss b/templates/SilverStripe/Forms/Includes/Form.ss index e596392..82fb602 100644 --- a/templates/SilverStripe/Forms/Includes/Form.ss +++ b/templates/SilverStripe/Forms/Includes/Form.ss @@ -1,5 +1,5 @@ <% if $IncludeFormTag %> -
<% end_if %><% if $Message %> +<% end_if %><% if $Message %>
$Message.XML From 84b6102319f35b94ccc9b56a4efcd732dfa49869 Mon Sep 17 00:00:00 2001 From: Nicola Fontana Date: Wed, 7 Nov 2018 06:41:39 +0100 Subject: [PATCH 8/8] Update CHANGELOG --- CHANGELOG.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 26d52f0..b3433ff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,15 @@ of this ChangeLog is autogenerated by the following command: --pretty=format:'* %cd %h %s' \ $(git ls-remote -t .|tail -1|cut -f1).. +### 3.0.2 (2018-11-07) + +* 2018-11-07 dcbb8a0 The form role is unnecessary for element form +* 2018-11-07 354c408 Set `for` attribute for groups to the first field +* 2018-11-07 adaeb1b Fix aria-controls in TabSet +* 2018-11-07 2e070bf Tab panel role is "tabpanel" +* 2018-10-25 c807ed4 Update tracker URLs +* 2018-10-25 55c636c Update bootstrap URL + ### 3.0.1 (2018-10-12) * 2018-10-12 2dda1fc Update jquery to 3.3.1