Hi extension maintainers,
Piwigo 13 is coming soon. It's really time to check the compatibility of extensions (themes and plugins) with this version 13.
The changes introduced in Piwigo should not break many extensions so we plan to mark all extensions compatible with Piwigo 12 as also compatible with Piwigo 13. But it doesn't mean there is nothing to do for all extension maintainers. We have written a documentation page Technical changes in Piwigo 13 to guide you. Quick summary:
* new <body> classes and data. For themes which overload header.tpl, like bootstrap_darkroom, Modus, SimpleNG or Stripped
* SVG support for themes which overload picture.tpl or picture_content.tpl, like bootstrap_darkroom, luciano, simpleng, smartpocket, stripped or stripped_responsive
Another important topic: compatibility with PHP 8.1. Piwigo 13 is going to be officially compatible with PHP 8.1 so it means themes/plugins should work on that too.
Offline
v13 isn't listed as in the Compatibility drop-down when adding an extension revision. Can you please add that?
Offline
windracer wrote:
v13 isn't listed as in the Compatibility drop-down when adding an extension revision. Can you please add that?
Done
Offline
Thanks! I've updated my extension.
Offline
Just like in [Forum, topic 29618] Plugins and compatibility with Piwigo 2.10 I applied the automatic compatibility with version 13:
insert into pwg_revisions_compatibilities (idx_version, idx_revision) select 85, max(idx_revision) from pwg_revisions_compatibilities join pwg_revisions r on idx_revision=id_revision join pwg_extensions_categories ec on ec.idx_extension=r.idx_extension where idx_version=84 and idx_category in (10,11,12) group by r.idx_extension;
Offline