neonafroman bugfixes
This commit is contained in:
@@ -967,6 +967,7 @@ styling field:
|
|||||||
type: text
|
type: text
|
||||||
name: custom symbol
|
name: custom symbol
|
||||||
description: Uses a custom Lesson symbol from data/magic-mainframe-extras.mse-include
|
description: Uses a custom Lesson symbol from data/magic-mainframe-extras.mse-include
|
||||||
|
script: verify_symbol_image(value)
|
||||||
styling field:
|
styling field:
|
||||||
type: text
|
type: text
|
||||||
name: card watermark
|
name: card watermark
|
||||||
|
|||||||
@@ -1704,10 +1704,12 @@ styling field:
|
|||||||
type: text
|
type: text
|
||||||
name: custom symbol one
|
name: custom symbol one
|
||||||
description: Uses a custom DFC symbol from data/magic-mainframe-extras.mse-include
|
description: Uses a custom DFC symbol from data/magic-mainframe-extras.mse-include
|
||||||
|
script: verify_symbol_image(value)
|
||||||
styling field:
|
styling field:
|
||||||
type: text
|
type: text
|
||||||
name: custom symbol two
|
name: custom symbol two
|
||||||
description: Uses a custom DFC symbol from data/magic-mainframe-extras.mse-include
|
description: Uses a custom DFC symbol from data/magic-mainframe-extras.mse-include
|
||||||
|
script: verify_symbol_image(value)
|
||||||
styling field:
|
styling field:
|
||||||
type: text
|
type: text
|
||||||
name: card watermark
|
name: card watermark
|
||||||
|
|||||||
@@ -833,4 +833,4 @@ extra card style:
|
|||||||
z index: 840
|
z index: 840
|
||||||
visible: { card.pt_3 != "" }
|
visible: { card.pt_3 != "" }
|
||||||
render style: image
|
render style: image
|
||||||
image: pt.png
|
image: { template_prefix["pt"] + "cpt.png" }
|
||||||
|
|||||||
Binary file not shown.
|
After Width: | Height: | Size: 83 B |
Binary file not shown.
|
After Width: | Height: | Size: 83 B |
Binary file not shown.
|
After Width: | Height: | Size: 83 B |
@@ -33,7 +33,7 @@ include file: language
|
|||||||
include file: statistics_script
|
include file: statistics_script
|
||||||
include file: /magic-blends.mse-include/new-blends
|
include file: /magic-blends.mse-include/new-blends
|
||||||
############################################################## Versioning
|
############################################################## Versioning
|
||||||
version_date := {"2024-10-01 Template Pack 3.0.4: Magic Modules & Showcase Catchup - Custom Symbol padding"}
|
version_date := {"2024-10-01 Template Pack 3.0.5: Magic Modules & Showcase Catchup - UBWalker fix"}
|
||||||
version := version_date
|
version := version_date
|
||||||
############################################################## Common filters
|
############################################################## Common filters
|
||||||
############################################################## Utility
|
############################################################## Utility
|
||||||
@@ -4491,11 +4491,11 @@ verify_symbol_image := {
|
|||||||
custom_symbol_image := {
|
custom_symbol_image := {
|
||||||
src := if style_src != "" then style_src else set["custom_symbol_"+input]
|
src := if style_src != "" then style_src else set["custom_symbol_"+input]
|
||||||
array := split_comma(src)
|
array := split_comma(src)
|
||||||
if not has_png(array.0) or array.1 == "Not found"
|
if not has_png(array.0) or (array.1 or else "" == "Not found")
|
||||||
then "/magic-modules.mse-include/symbols/aetherprint.png"
|
then "/magic-modules.mse-include/symbols/aetherprint.png"
|
||||||
else (
|
else (
|
||||||
link := "/magic-mainframe-extras.mse-include/" + array.0
|
link := "/magic-mainframe-extras.mse-include/" + array.0
|
||||||
if array.3 == "+" then link := enlarge(link, border_size:0.189)
|
if array.3 or else "" == "+" then link := enlarge(link, border_size:0.189)
|
||||||
link
|
link
|
||||||
)
|
)
|
||||||
}@(style_src:"")
|
}@(style_src:"")
|
||||||
|
|||||||
Reference in New Issue
Block a user