@shift72/core-template 1.9.19 → 1.9.20
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 +7 -1
- package/kibble.json +1 -1
- package/package.json +1 -1
- package/site/en_AU.all.json +2 -2
- package/site/styles/_plans.scss +1 -1
- package/site/templates/items/meta_item.jet +2 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,13 @@
|
|
|
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.20...HEAD)
|
|
4
4
|
|
|
5
|
+
## [1.9.20](https://github.com/shift72/core-template/compare/1.9.19...1.9.20)
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
- Typo in translation for ad tracking settings
|
|
9
|
+
- Positioning of plan label
|
|
10
|
+
- TV seasons not showing season number under posters in sliders / search results etc.
|
|
5
11
|
|
|
6
12
|
## [1.9.19](https://github.com/shift72/core-template/compare/1.9.18...1.9.19)
|
|
7
13
|
|
package/kibble.json
CHANGED
package/package.json
CHANGED
package/site/en_AU.all.json
CHANGED
|
@@ -1735,9 +1735,9 @@
|
|
|
1735
1735
|
"other": "Manage"
|
|
1736
1736
|
},
|
|
1737
1737
|
"account_form_change_adtracking_label": {
|
|
1738
|
-
"other": "Allow use of my advertising ID to build profiles and/or show me
|
|
1738
|
+
"other": "Allow use of my advertising ID to build profiles and/or show me personalised ads"
|
|
1739
1739
|
},
|
|
1740
1740
|
"account_form_ad_privacy_settings": {
|
|
1741
1741
|
"other": "Ad privacy settings"
|
|
1742
1742
|
}
|
|
1743
|
-
}
|
|
1743
|
+
}
|
package/site/styles/_plans.scss
CHANGED
|
@@ -27,18 +27,14 @@
|
|
|
27
27
|
{{else if len(imageUrl) == 0 && isCollection}}
|
|
28
28
|
{{imageUrl = layout == "portrait" ? "/images/missing/collection-portrait.png" : "/images/missing/collection-landscape.png"}}
|
|
29
29
|
{{end}}
|
|
30
|
-
{{pill := ""}}
|
|
31
|
-
{{pillSupplement := ""}}
|
|
32
30
|
{{if isEpisode}}
|
|
33
31
|
{{synopsis = item.InnerItem.Overview}}
|
|
34
|
-
{{
|
|
35
|
-
{{pillSupplement = "from " + i18n("season_name") + " " + item.InnerItem.Season.SeasonNumber}}
|
|
32
|
+
{{title = item.InnerItem.GetTitle(i18n)}}
|
|
36
33
|
{{end}}
|
|
37
34
|
{{title := item.Title}}
|
|
38
35
|
{{if isSeason}}
|
|
39
36
|
{{synopsis = stripHTML(item.InnerItem.Tagline)}}
|
|
40
|
-
{{title = item.InnerItem.
|
|
41
|
-
{{pill = i18n("season_name") + " " + item.InnerItem.SeasonNumber}}
|
|
37
|
+
{{title = item.InnerItem.GetTitle(i18n)}}
|
|
42
38
|
{{end}}
|
|
43
39
|
|
|
44
40
|
|