Changeset 3439453
- Timestamp:
- 01/14/2026 11:30:50 AM (5 weeks ago)
- Location:
- activitypub
- Files:
-
- 6 edited
- 1 copied
-
tags/7.8.5 (copied) (copied from activitypub/trunk)
-
tags/7.8.5/activitypub.php (modified) (2 diffs)
-
tags/7.8.5/integration/class-classic-editor.php (modified) (1 diff)
-
tags/7.8.5/readme.txt (modified) (2 diffs)
-
trunk/activitypub.php (modified) (2 diffs)
-
trunk/integration/class-classic-editor.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
activitypub/tags/7.8.5/activitypub.php
r3438484 r3439453 4 4 * Plugin URI: https://github.com/Automattic/wordpress-activitypub 5 5 * Description: The ActivityPub protocol is a decentralized social networking protocol based upon the ActivityStreams 2.0 data format. 6 * Version: 7.8. 46 * Version: 7.8.5 7 7 * Author: Matthias Pfefferle & Automattic 8 8 * Author URI: https://automattic.com/ … … 18 18 namespace Activitypub; 19 19 20 \define( 'ACTIVITYPUB_PLUGIN_VERSION', '7.8. 4' );20 \define( 'ACTIVITYPUB_PLUGIN_VERSION', '7.8.5' ); 21 21 22 22 // Plugin related constants. -
activitypub/tags/7.8.5/integration/class-classic-editor.php
r3438374 r3439453 21 21 \add_filter( 'activitypub_attachments_media_markup', array( self::class, 'filter_attachments_media_markup' ), 10, 2 ); 22 22 \add_filter( 'activitypub_attachment_ids', array( self::class, 'filter_attached_media_ids' ), 10, 2 ); 23 \add_filter( 'activitypub_site_supports_blocks', '__return_false' );24 23 \add_action( 'add_meta_boxes', array( self::class, 'add_meta_box' ) ); 25 24 \add_action( 'save_post', array( self::class, 'save_meta_data' ) ); 25 26 if ( \function_exists( 'classicpress_version' ) ) { 27 \add_filter( 'activitypub_site_supports_blocks', '__return_false' ); 28 } 26 29 } 27 30 -
activitypub/tags/7.8.5/readme.txt
r3438484 r3439453 4 4 Requires at least: 6.5 5 5 Tested up to: 6.9 6 Stable tag: 7.8. 46 Stable tag: 7.8.5 7 7 Requires PHP: 7.2 8 8 License: MIT … … 110 110 111 111 == Changelog == 112 113 ### 7.8.5 - 2026-01-14 114 #### Fixed 115 - Only disable blocks for ClassicPress, not when Classic Editor plugin is installed. 112 116 113 117 ### 7.8.4 - 2026-01-13 -
activitypub/trunk/activitypub.php
r3438484 r3439453 4 4 * Plugin URI: https://github.com/Automattic/wordpress-activitypub 5 5 * Description: The ActivityPub protocol is a decentralized social networking protocol based upon the ActivityStreams 2.0 data format. 6 * Version: 7.8. 46 * Version: 7.8.5 7 7 * Author: Matthias Pfefferle & Automattic 8 8 * Author URI: https://automattic.com/ … … 18 18 namespace Activitypub; 19 19 20 \define( 'ACTIVITYPUB_PLUGIN_VERSION', '7.8. 4' );20 \define( 'ACTIVITYPUB_PLUGIN_VERSION', '7.8.5' ); 21 21 22 22 // Plugin related constants. -
activitypub/trunk/integration/class-classic-editor.php
r3438374 r3439453 21 21 \add_filter( 'activitypub_attachments_media_markup', array( self::class, 'filter_attachments_media_markup' ), 10, 2 ); 22 22 \add_filter( 'activitypub_attachment_ids', array( self::class, 'filter_attached_media_ids' ), 10, 2 ); 23 \add_filter( 'activitypub_site_supports_blocks', '__return_false' );24 23 \add_action( 'add_meta_boxes', array( self::class, 'add_meta_box' ) ); 25 24 \add_action( 'save_post', array( self::class, 'save_meta_data' ) ); 25 26 if ( \function_exists( 'classicpress_version' ) ) { 27 \add_filter( 'activitypub_site_supports_blocks', '__return_false' ); 28 } 26 29 } 27 30 -
activitypub/trunk/readme.txt
r3438484 r3439453 4 4 Requires at least: 6.5 5 5 Tested up to: 6.9 6 Stable tag: 7.8. 46 Stable tag: 7.8.5 7 7 Requires PHP: 7.2 8 8 License: MIT … … 110 110 111 111 == Changelog == 112 113 ### 7.8.5 - 2026-01-14 114 #### Fixed 115 - Only disable blocks for ClassicPress, not when Classic Editor plugin is installed. 112 116 113 117 ### 7.8.4 - 2026-01-13
Note: See TracChangeset
for help on using the changeset viewer.