Changeset 3423664
- Timestamp:
- 12/19/2025 12:47:05 PM (3 months ago)
- Location:
- post-formats-for-block-themes/trunk
- Files:
-
- 3 edited
-
post-formats-for-block-themes.php (modified) (2 diffs)
-
readme.txt (modified) (3 diffs)
-
theme.json (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
post-formats-for-block-themes/trunk/post-formats-for-block-themes.php
r3423300 r3423664 4 4 * Plugin URI: https://wordpress.org/plugins/post-formats-for-block-themes/ 5 5 * Description: Modernizes WordPress post formats for block themes with format-specific patterns, auto-detection, and enhanced editor experience. 6 * Version: 1.1. 36 * Version: 1.1.4 7 7 * Requires at least: 6.8 8 8 * Tested up to: 6.9 … … 39 39 * Plugin constants 40 40 */ 41 define( 'PFBT_VERSION', '1.1. 3' );41 define( 'PFBT_VERSION', '1.1.4' ); 42 42 define( 'PFBT_PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); 43 43 define( 'PFBT_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); -
post-formats-for-block-themes/trunk/readme.txt
r3423300 r3423664 6 6 Tested up to: 6.9 7 7 Requires PHP: 7.4 8 Stable tag: 1.1. 38 Stable tag: 1.1.4 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 347 347 348 348 == Changelog == 349 350 = 1.1.4 - 2025-12-19 = 351 352 **Bug Fixes** 353 354 * **Fixed:** Critical issue where plugin's theme.json was overriding theme layout settings (contentSize, wideSize), causing blank templates 355 * **Fixed:** Plugin no longer overrides theme spacing settings (spacingSizes) 356 * **Fixed:** Removed appearanceTools setting that could conflict with theme settings 357 358 **Changes** 359 360 * **Changed:** Simplified theme.json to only include format-specific color palette additions 361 * **Changed:** Plugin now respects all theme layout and spacing settings 349 362 350 363 = 1.1.3 - 2025-12-18 = … … 495 508 == Upgrade Notice == 496 509 510 = 1.1.4 = 511 Critical fix: Resolves issue where plugin's theme.json was overriding theme layout settings and causing blank templates. All users should upgrade immediately. 512 497 513 = 1.1.3 = 498 514 Critical performance fix: Resolves database performance issue with revision queries. Also fixes duplicate pattern insertion, character counter appearing twice, and JavaScript errors. Simplified patterns for cleaner editing. All users should upgrade. -
post-formats-for-block-themes/trunk/theme.json
r3407389 r3423664 2 2 "$schema": "https://schemas.wp.org/trunk/theme.json", 3 3 "version": 2, 4 "title": "Post Formats Power-Up",4 "title": "Post Formats for Block Themes", 5 5 "settings": { 6 "appearanceTools": true,7 6 "color": { 8 7 "palette": [ … … 68 67 } 69 68 ] 70 },71 "spacing": {72 "units": [ "px", "em", "rem", "vh", "vw", "%" ],73 "customSpacingSize": true,74 "spacingScale": {75 "steps": 076 },77 "spacingSizes": [78 {79 "name": "Small",80 "slug": "small",81 "size": "clamp(0.5rem, 1vw, 1rem)"82 },83 {84 "name": "Medium",85 "slug": "medium",86 "size": "clamp(1rem, 2vw, 1.5rem)"87 },88 {89 "name": "Large",90 "slug": "large",91 "size": "clamp(1.5rem, 3vw, 2rem)"92 },93 {94 "name": "Extra Large",95 "slug": "x-large",96 "size": "clamp(2rem, 4vw, 3rem)"97 }98 ]99 },100 "layout": {101 "contentSize": "640px",102 "wideSize": "1000px"103 69 } 104 70 }, 105 71 "styles": { 106 72 "blocks": { 107 "core/group": {108 "variations": {109 "aside-bubble": {110 "spacing": {111 "padding": {112 "top": "var(--wp--preset--spacing--medium)",113 "right": "var(--wp--preset--spacing--medium)",114 "bottom": "var(--wp--preset--spacing--medium)",115 "left": "var(--wp--preset--spacing--medium)"116 }117 },118 "border": {119 "radius": "8px"120 }121 }122 }123 },124 "core/paragraph": {125 "variations": {126 "status-paragraph": {127 "typography": {128 "fontSize": "var(--wp--preset--font-size--large)",129 "lineHeight": "1.4"130 }131 }132 }133 },134 73 "core/quote": { 135 74 "border": {
Note: See TracChangeset
for help on using the changeset viewer.