Theme (and plugin) compatibility in metadata.json

Post Reply
joho
Master Bludit
Posts: 63
Joined: Thu Jun 08, 2023 3:02 pm
Location: Sweden
Has thanked: 17 times
Been thanked: 19 times

How do I indicate support for several Bludit versions in metadata.json?

If I put "3", it fails for "3.15", if I put "3.15.x" it works with "3.15.0", but fails for "3.16.x" ...

I also tried putting several versions in the string, like:

"3.15.0, 3.15.1, 3.15.2, 3.16.0"

But that doesn't work. And looking at the parser in 99.themes.php, I can understand why. So I'm just wondering what the correct way of doing this is? :-)
joho
Master Bludit
Posts: 63
Joined: Thu Jun 08, 2023 3:02 pm
Location: Sweden
Has thanked: 17 times
Been thanked: 19 times

OK, so this seems to work for metadata.json

Code: Select all

"compatible": "3.16,3.16.1,3.15,3.15.0,3.15.1,3.15.2",
Post Reply