Plugin Directory

Changeset 3439453


Ignore:
Timestamp:
01/14/2026 11:30:50 AM (5 weeks ago)
Author:
pfefferle
Message:

Update to version 7.8.5 from GitHub

Location:
activitypub
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • activitypub/tags/7.8.5/activitypub.php

    r3438484 r3439453  
    44 * Plugin URI: https://github.com/Automattic/wordpress-activitypub
    55 * Description: The ActivityPub protocol is a decentralized social networking protocol based upon the ActivityStreams 2.0 data format.
    6  * Version: 7.8.4
     6 * Version: 7.8.5
    77 * Author: Matthias Pfefferle & Automattic
    88 * Author URI: https://automattic.com/
     
    1818namespace Activitypub;
    1919
    20 \define( 'ACTIVITYPUB_PLUGIN_VERSION', '7.8.4' );
     20\define( 'ACTIVITYPUB_PLUGIN_VERSION', '7.8.5' );
    2121
    2222// Plugin related constants.
  • activitypub/tags/7.8.5/integration/class-classic-editor.php

    r3438374 r3439453  
    2121        \add_filter( 'activitypub_attachments_media_markup', array( self::class, 'filter_attachments_media_markup' ), 10, 2 );
    2222        \add_filter( 'activitypub_attachment_ids', array( self::class, 'filter_attached_media_ids' ), 10, 2 );
    23         \add_filter( 'activitypub_site_supports_blocks', '__return_false' );
    2423        \add_action( 'add_meta_boxes', array( self::class, 'add_meta_box' ) );
    2524        \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        }
    2629    }
    2730
  • activitypub/tags/7.8.5/readme.txt

    r3438484 r3439453  
    44Requires at least: 6.5
    55Tested up to: 6.9
    6 Stable tag: 7.8.4
     6Stable tag: 7.8.5
    77Requires PHP: 7.2
    88License: MIT
     
    110110
    111111== Changelog ==
     112
     113### 7.8.5 - 2026-01-14
     114#### Fixed
     115- Only disable blocks for ClassicPress, not when Classic Editor plugin is installed.
    112116
    113117### 7.8.4 - 2026-01-13
  • activitypub/trunk/activitypub.php

    r3438484 r3439453  
    44 * Plugin URI: https://github.com/Automattic/wordpress-activitypub
    55 * Description: The ActivityPub protocol is a decentralized social networking protocol based upon the ActivityStreams 2.0 data format.
    6  * Version: 7.8.4
     6 * Version: 7.8.5
    77 * Author: Matthias Pfefferle & Automattic
    88 * Author URI: https://automattic.com/
     
    1818namespace Activitypub;
    1919
    20 \define( 'ACTIVITYPUB_PLUGIN_VERSION', '7.8.4' );
     20\define( 'ACTIVITYPUB_PLUGIN_VERSION', '7.8.5' );
    2121
    2222// Plugin related constants.
  • activitypub/trunk/integration/class-classic-editor.php

    r3438374 r3439453  
    2121        \add_filter( 'activitypub_attachments_media_markup', array( self::class, 'filter_attachments_media_markup' ), 10, 2 );
    2222        \add_filter( 'activitypub_attachment_ids', array( self::class, 'filter_attached_media_ids' ), 10, 2 );
    23         \add_filter( 'activitypub_site_supports_blocks', '__return_false' );
    2423        \add_action( 'add_meta_boxes', array( self::class, 'add_meta_box' ) );
    2524        \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        }
    2629    }
    2730
  • activitypub/trunk/readme.txt

    r3438484 r3439453  
    44Requires at least: 6.5
    55Tested up to: 6.9
    6 Stable tag: 7.8.4
     6Stable tag: 7.8.5
    77Requires PHP: 7.2
    88License: MIT
     
    110110
    111111== Changelog ==
     112
     113### 7.8.5 - 2026-01-14
     114#### Fixed
     115- Only disable blocks for ClassicPress, not when Classic Editor plugin is installed.
    112116
    113117### 7.8.4 - 2026-01-13
Note: See TracChangeset for help on using the changeset viewer.