gatsby-core-theme 1.2.3 → 1.2.4
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 +10 -0
- package/package.json +1 -1
- package/src/constants/settings.js +6 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
## [1.2.4](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v1.2.3...v1.2.4) (2021-10-11)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Config
|
|
5
|
+
|
|
6
|
+
* settings update for playcasino ([c258327](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/c2583274f107254c9089cae2adc4f1807bc5787b))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
* Merge branch 'master' of git.ilcd.rocks:team-floyd/themes/gatsby-themes ([2e516a2](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/2e516a23c2b2b177aeb3c03accf732c7c1c4bd48))
|
|
10
|
+
|
|
1
11
|
## [1.2.3](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v1.2.2...v1.2.3) (2021-10-08)
|
|
2
12
|
|
|
3
13
|
|
package/package.json
CHANGED
|
@@ -2,24 +2,28 @@ export default {
|
|
|
2
2
|
delete_operator_software: {
|
|
3
3
|
'Irishluck.ie': true,
|
|
4
4
|
'norskespilleautomater.com': true,
|
|
5
|
+
'playcasino.ca.za': true,
|
|
5
6
|
},
|
|
6
7
|
keep_page_extra_fields: {
|
|
7
8
|
operator: {
|
|
8
9
|
'Irishluck.ie': true, // needed for card background image
|
|
9
10
|
'norskespilleautomater.com': true, // needed for inoperative / placeholder fields
|
|
11
|
+
'playcasino.ca.za': true,
|
|
10
12
|
},
|
|
11
13
|
article: {
|
|
12
14
|
'Irishluck.ie': true, // needed for card background image
|
|
13
15
|
'norskespilleautomater.com': true,
|
|
16
|
+
'playcasino.ca.za': true,
|
|
14
17
|
},
|
|
15
18
|
game: {
|
|
16
19
|
'Irishluck.ie': true, // needed for card background image
|
|
17
20
|
'norskespilleautomater.com': true,
|
|
21
|
+
'playcasino.ca.za': true,
|
|
18
22
|
},
|
|
19
23
|
},
|
|
20
24
|
keep_sections: {
|
|
21
|
-
software_provider: { 'norskespilleautomater.com': ['header'] },
|
|
22
|
-
payment_method: { 'norskespilleautomater.com': ['header'] },
|
|
25
|
+
software_provider: { 'norskespilleautomater.com': ['header'], 'playcasino.ca.za': ['header'] },
|
|
26
|
+
payment_method: { 'norskespilleautomater.com': ['header'], 'playcasino.ca.za': ['header'] },
|
|
23
27
|
operator: { 'Irishluck.ie': ['main'] },
|
|
24
28
|
article: { 'Irishluck.ie': ['main'] },
|
|
25
29
|
},
|