Plugin Directory

Changeset 2542579

Timestamp:
06/04/2021 12:33:49 PM (3 years ago)
Author:
yansern
Message:

Update Editing Toolkit Plugin to 3.7917

Location:
full-site-editing/trunk
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • full-site-editing/trunk/common/dist/common.asset.php

    r2535130 r2542579  
    1 <?php return array('dependencies' => array('wp-polyfill'), 'version' => 'ed18a86c46634c74ef5304a016d57ac0');
     1<?php return array('dependencies' => array('wp-polyfill'), 'version' => '');
  • full-site-editing/trunk/common/dist/common.css

    r2487412 r2542579  
    1 body.hide-homepage-title .editor-post-title{opacity:.4}.interface-interface-skeleton__editor{max-width:100%}
     1body.hide-homepage-title .editor-post-title{opacity:.4}}
  • full-site-editing/trunk/common/dist/common.rtl.css

    r2487412 r2542579  
    1 body.hide-homepage-title .editor-post-title{opacity:.4}.interface-interface-skeleton__editor{max-width:100%}
     1body.hide-homepage-title .editor-post-title{opacity:.4}}
  • full-site-editing/trunk/common/index.php

    r2471048 r2542579  
    7070 */
    7171function needs_slider_width_workaround() {
     72
     73
    7274    if (
    7375        ( defined( 'GUTENBERG_DEVELOPMENT_MODE' ) && GUTENBERG_DEVELOPMENT_MODE ) ||
    7476        ( defined( 'GUTENBERG_VERSION' ) && version_compare( GUTENBERG_VERSION, '9.2', '>=' ) )
    7577    ) {
     78
     79
     80
     81
     82
     83
     84
     85
     86
     87
     88
     89
     90
    7691        return true;
    7792    }
    78     return false;
     93
     94    return apply_filters( 'a8c_use_font_smoothing_antialiased', false );
    7995}
    8096
     
    91107 */
    92108function should_load_assets() {
    93     return (bool) is_homepage_title_hidden() || needs_slider_width_workaround();
     109    return (bool) is_homepage_title_hidden() || needs_slider_width_workaround();
    94110}
    95111
     
    103119    if ( is_homepage_title_hidden() ) {
    104120        $classes .= ' hide-homepage-title';
     121
     122
     123
     124
     125
     126
     127
     128
     129
     130
    105131    }
    106132
     
    138164    );
    139165}
    140 add_action( 'enqueue_block_editor_assets', __NAMESPACE__ . '\enqueue_script_and_style' );
     166add_action( 'ts', __NAMESPACE__ . '\enqueue_script_and_style' );
    141167
    142168/**
  • full-site-editing/trunk/common/index.scss

    r2487412 r2542579  
    11body.hide-homepage-title {
    2 
    32    // Allow homepage title to be edited even when hidden
    43    // Lighter color to signify not visible from front page
    54    .editor-post-title {
    6         opacity: .4;
     5        opacity: .4;
    76    }
    87}
    98
    10 .interface-interface-skeleton__editor {
    11     max-width: 100%;
     9body.slider-width-workaround {
     10    .interface-interface-skeleton__editor {
     11        max-width: 100%;
     12    }
    1213}
     14
     15
     16
     17
     18
     19
     20
     21
     22
     23
     24
     25
     26
     27
     28
     29
     30
     31
     32
     33
     34
  • full-site-editing/trunk/full-site-editing-plugin.php

    r2541645 r2542579  
    33 * Plugin Name: WordPress.com Editing Toolkit
    44 * Description: Enhances your page creation workflow within the Block Editor.
    5  * Version: 3.7790
     5 * Version: 3.7
    66 * Author: Automattic
    77 * Author URI: https://automattic.com/wordpress-plugins/
     
    4343 * @var string
    4444 */
    45 define( 'A8C_ETK_PLUGIN_VERSION', '3.7790' );
     45define( 'A8C_ETK_PLUGIN_VERSION', '3.7' );
    4646
    4747// Always include these helper files for dotcom FSE.
  • full-site-editing/trunk/readme.txt

    r2541645 r2542579  
    44Requires at least: 5.5
    55Tested up to: 5.6
    6 Stable tag: 3.7790
     6Stable tag: 3.7
    77Requires PHP: 5.6.20
    88License: GPLv2 or later
Note: See TracChangeset for help on using the changeset viewer.