@shift72/core-template 1.9.19 → 1.9.20

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -1,7 +1,13 @@
1
1
  # Changelog
2
2
 
3
- ## [Unreleased](https://github.com/shift72/core-template/compare/1.9.19...HEAD)
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
@@ -194,5 +194,5 @@
194
194
  "pageSize": 0
195
195
  }
196
196
  ],
197
- "coreTemplateVersion": "1.9.19"
197
+ "coreTemplateVersion": "1.9.20"
198
198
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shift72/core-template",
3
- "version": "1.9.19",
3
+ "version": "1.9.20",
4
4
  "description": "Shift72 core template",
5
5
  "license": "MIT",
6
6
  "scripts": {
@@ -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 peronsalized ads"
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
+ }
@@ -69,7 +69,7 @@ s72-plan-label {
69
69
  s72-plan-label {
70
70
  left: 0;
71
71
  margin: 0 auto;
72
- position: absolute;
72
+ position: relative;
73
73
  top: 0;
74
74
  z-index: 99;
75
75
  }
@@ -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
- {{pill = i18n("episode_name") + " " + item.InnerItem.EpisodeNumber}}
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.ShowInfo.Title}}
41
- {{pill = i18n("season_name") + " " + item.InnerItem.SeasonNumber}}
37
+ {{title = item.InnerItem.GetTitle(i18n)}}
42
38
  {{end}}
43
39
 
44
40