Editing folders for the logos of the scripts (#196)
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
## Upcoming version
|
## Upcoming version
|
||||||
|
|
||||||
|
- Renaming the "edition" folder and reorganizing its files
|
||||||
- Clearer and more efficient print for the votes hidden by Organ Grinder
|
- Clearer and more efficient print for the votes hidden by Organ Grinder
|
||||||
- Using official generic icons as default custom icons
|
- Using official generic icons as default custom icons
|
||||||
- Adding the reminder tokens "Townsfolk", "Outsider", "Minion" and "Demon"
|
- Adding the reminder tokens "Townsfolk", "Outsider", "Minion" and "Demon"
|
||||||
|
|
Before Width: | Height: | Size: 67 KiB After Width: | Height: | Size: 67 KiB |
Before Width: | Height: | Size: 49 KiB After Width: | Height: | Size: 49 KiB |
Before Width: | Height: | Size: 416 KiB After Width: | Height: | Size: 416 KiB |
Before Width: | Height: | Size: 244 KiB After Width: | Height: | Size: 244 KiB |
Before Width: | Height: | Size: 98 KiB After Width: | Height: | Size: 98 KiB |
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
|
@ -3,7 +3,7 @@
|
||||||
"id": "_meta",
|
"id": "_meta",
|
||||||
"name": "Catfishing",
|
"name": "Catfishing",
|
||||||
"author": "Emily",
|
"author": "Emily",
|
||||||
"logo": "https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/logo/catfishing.png"
|
"logo": "https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/logos/catfishing.png"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "investigator"
|
"id": "investigator"
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
backgroundImage: `url(${
|
backgroundImage: `url(${
|
||||||
edition.logo && grimoire.isImageOptIn
|
edition.logo && grimoire.isImageOptIn
|
||||||
? edition.logo
|
? edition.logo
|
||||||
: require('../assets/editions/' + edition.id + '.png')
|
: require('../assets/logos/' + edition.id + '.png')
|
||||||
})`,
|
})`,
|
||||||
}"
|
}"
|
||||||
></li>
|
></li>
|
||||||
|
|
|
@ -40,7 +40,7 @@
|
||||||
:class="['edition-' + edition.id]"
|
:class="['edition-' + edition.id]"
|
||||||
:style="{
|
:style="{
|
||||||
backgroundImage: `url(${require(
|
backgroundImage: `url(${require(
|
||||||
'../../assets/editions/' + edition.id + '.png',
|
'../../assets/logos/' + edition.id + '.png',
|
||||||
)})`,
|
)})`,
|
||||||
}"
|
}"
|
||||||
:key="edition.id"
|
:key="edition.id"
|
||||||
|
|