jekyll-report-dashboard 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/_includes/playwright-summary.html +1 -1
- data/_includes/release-note-list.html +12 -0
- data/index.markdown +2 -4
- data/releases.markdown +3 -4
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6f693c5c6328ada2a3e1cc7c0d4b288b3070e52338b62048d73ac7325576117a
|
4
|
+
data.tar.gz: 5527bdb54c2648815f46f1db9f044316f2c7dc660b177c18c22485c9e87aec00
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 91aa0f71f49273c3ba20e5b3a539d1bb6724ac3e42a5e3798694526309c909ecb1245bb898fcada4ee89300d5da1a5a5c1fc7eae5c779b02ed13d15a26c3a550
|
7
|
+
data.tar.gz: e04d7cb306a996f4043a46f1f82535fb06e16012083c227570f4cda42154dc94a5aa72fabf98d2f77f19ddc6737eeacd243c0671638743cb00e529a92e99fe6d
|
@@ -55,5 +55,5 @@
|
|
55
55
|
{% else %}
|
56
56
|
<!-- if the data was not included, display a message that there is nothing to display -->
|
57
57
|
|
58
|
-
<div>There is currently no report for {{ include.branch }}</div>
|
58
|
+
<div>There is currently no Playwright report for {{ include.branch }}</div>
|
59
59
|
{% endif %}
|
@@ -0,0 +1,12 @@
|
|
1
|
+
|
2
|
+
{% if site.categories["release"].size > 0 %}
|
3
|
+
{% assign releases = site.categories["release"] | sort: 'published_at' | reverse %}
|
4
|
+
{% for post in releases %}
|
5
|
+
{% if include.limit and forloop.index0 >= include.limit %}
|
6
|
+
{% break %}
|
7
|
+
{% endif %}
|
8
|
+
{% include release-note.html post=post content=post.content %}
|
9
|
+
{% endfor %}
|
10
|
+
{% else %}
|
11
|
+
<div>There are currently no release notes.</div>
|
12
|
+
{% endif %}
|
data/index.markdown
CHANGED
@@ -43,10 +43,8 @@ layout: home
|
|
43
43
|
<div class="md:col-start-4 md:col-span-2 md:mt-16">
|
44
44
|
<h3>Latest Releases</h3>
|
45
45
|
<div class="">
|
46
|
-
{% assign
|
47
|
-
{%
|
48
|
-
{% include release-note.html post=post content=post.content %}
|
49
|
-
{% endfor %}
|
46
|
+
{% assign limit = 12 %}
|
47
|
+
{% include release-note-list.html limit=limit %}
|
50
48
|
</div>
|
51
49
|
<div class="flex justify-end mt-4 min-h-4">
|
52
50
|
<a href="{{ "/releases" | relative_url }}">View Previous Releases</a>
|
data/releases.markdown
CHANGED
@@ -4,7 +4,6 @@ title: Release Notes
|
|
4
4
|
permalink: releases/
|
5
5
|
---
|
6
6
|
|
7
|
-
|
8
|
-
{%
|
9
|
-
|
10
|
-
{% endfor %}
|
7
|
+
<div class="">
|
8
|
+
{% include release-note-list.html %}
|
9
|
+
</div>
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-report-dashboard
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tiffany Forkner
|
@@ -65,6 +65,7 @@ files:
|
|
65
65
|
- _includes/playwright-branch-list.html
|
66
66
|
- _includes/playwright-stat.html
|
67
67
|
- _includes/playwright-summary.html
|
68
|
+
- _includes/release-note-list.html
|
68
69
|
- _includes/release-note.html
|
69
70
|
- _layouts/base.html
|
70
71
|
- _layouts/default.html
|