@shift72/core-template 1.9.30 → 1.9.31
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.
- package/CHANGELOG.md +6 -2
- package/kibble.json +2 -2
- package/package.json +1 -1
- package/site/sitemap.xml.jet +5 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## [Unreleased](https://github.com/shift72/core-template/compare/1.9.
|
|
3
|
+
## [Unreleased](https://github.com/shift72/core-template/compare/1.9.31...HEAD)
|
|
4
4
|
|
|
5
|
-
## [1.9.
|
|
5
|
+
## [1.9.31](https://github.com/shift72/core-template/compare/1.9.29...1.9.31)
|
|
6
6
|
|
|
7
7
|
### Added
|
|
8
8
|
|
|
@@ -13,6 +13,10 @@
|
|
|
13
13
|
|
|
14
14
|
- Added CSS vars for playback progress. Reduce default size from 6px to 3px (affects TV episode sub-items)
|
|
15
15
|
|
|
16
|
+
### Fixed
|
|
17
|
+
|
|
18
|
+
- Sitemap including external pages linking out of site
|
|
19
|
+
|
|
16
20
|
## [1.9.29](https://github.com/shift72/core-template/compare/1.9.28...1.9.29)
|
|
17
21
|
|
|
18
22
|
### Added
|
package/kibble.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "core-template",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.31",
|
|
4
4
|
"siteUrl": "https://tvoddemo.shift72.com",
|
|
5
5
|
"builderVersion": "0.17.8",
|
|
6
6
|
"defaultLanguage": "en",
|
|
@@ -199,5 +199,5 @@
|
|
|
199
199
|
"pageSize": 0
|
|
200
200
|
}
|
|
201
201
|
],
|
|
202
|
-
"coreTemplateVersion": "1.9.
|
|
202
|
+
"coreTemplateVersion": "1.9.31"
|
|
203
203
|
}
|
package/package.json
CHANGED
package/site/sitemap.xml.jet
CHANGED
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
2
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
|
3
3
|
{{ range site.Pages }}
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
{{ end }}
|
|
10
|
-
</url>
|
|
4
|
+
{{ if .PageType != "external" }}
|
|
5
|
+
<url>
|
|
6
|
+
<loc>{{site.SiteConfig.SiteURL}}{{routeToSlug(.Slug)}}</loc>
|
|
7
|
+
</url>
|
|
8
|
+
{{ end }}
|
|
11
9
|
{{ end }}
|
|
12
10
|
|
|
13
11
|
{{ range site.Films }}
|