Changeset 3132411
- Timestamp:
- 08/08/2024 03:48:20 AM (20 months ago)
- Location:
- full-site-editing/trunk
- Files:
-
- 4 edited
-
build_meta.json (modified) (1 diff)
-
full-site-editing-plugin.php (modified) (19 diffs)
-
readme.txt (modified) (1 diff)
-
wpcom-block-editor-nux/dist/wpcom-block-editor-nux.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
full-site-editing/trunk/build_meta.json
r3131460 r3132411 1 1 { 2 "build_number": "4.30 290",3 "cache_buster": " d81342fff07",4 "commit_hash": " d81342fff07819172b04fc73698b29d183f640dc",5 "commit_url": "https://github.com/Automattic/wp-calypso/commit/ d81342fff07819172b04fc73698b29d183f640dc"2 "build_number": "4.30504", 3 "cache_buster": "96f529c9c05", 4 "commit_hash": "96f529c9c05560cd52c8ca7e6f36520f68ce2617", 5 "commit_url": "https://github.com/Automattic/wp-calypso/commit/96f529c9c05560cd52c8ca7e6f36520f68ce2617" 6 6 } -
full-site-editing/trunk/full-site-editing-plugin.php
r3131460 r3132411 3 3 * Plugin Name: WordPress.com Editing Toolkit 4 4 * Description: Enhances your page creation workflow within the Block Editor. 5 * Version: 4.30 2905 * Version: 4.30504 6 6 * Author: Automattic 7 7 * Author URI: https://automattic.com/wordpress-plugins/ … … 43 43 * @var string 44 44 */ 45 define( 'A8C_ETK_PLUGIN_VERSION', '4.30290' ); 46 47 // Always include these helper files for dotcom FSE. 48 require_once __DIR__ . '/dotcom-fse/helpers.php'; 49 50 // Enqueues the shared JS data stores and defines shared helper functions. 51 require_once __DIR__ . '/common/index.php'; 45 define( 'A8C_ETK_PLUGIN_VERSION', '4.30504' ); 52 46 53 47 /** … … 64 58 Full_Site_Editing::get_instance(); 65 59 } 66 add_action( 'plugins_loaded', __NAMESPACE__ . '\load_full_site_editing' );67 60 68 61 /** … … 94 87 Posts_List_Block::get_instance(); 95 88 } 96 add_action( 'plugins_loaded', __NAMESPACE__ . '\load_posts_list_block' );97 89 98 90 /** … … 125 117 Starter_Page_Templates::get_instance(); 126 118 } 127 add_action( 'plugins_loaded', __NAMESPACE__ . '\load_starter_page_templates' );128 119 129 120 /** … … 137 128 require_once __DIR__ . '/global-styles/class-global-styles.php'; 138 129 } 139 add_action( 'plugins_loaded', __NAMESPACE__ . '\load_global_styles' );140 130 141 131 /** … … 149 139 require_once __DIR__ . '/event-countdown-block/index.php'; 150 140 } 151 add_action( 'plugins_loaded', __NAMESPACE__ . '\load_countdown_block' );152 141 153 142 /** … … 161 150 require_once __DIR__ . '/jetpack-timeline/index.php'; 162 151 } 163 add_action( 'plugins_loaded', __NAMESPACE__ . '\load_timeline_block' );164 152 165 153 /** … … 217 205 } 218 206 } 219 add_action( 'wp_enqueue_scripts', __NAMESPACE__ . '\enqueue_coblocks_gallery_scripts' ); 207 208 /** 209 * Load CoBlocks gallery. 210 */ 211 function load_coblocks_gallery() { 212 add_action( 'wp_enqueue_scripts', __NAMESPACE__ . '\enqueue_coblocks_gallery_scripts' ); 213 } 220 214 221 215 /** … … 250 244 require_once __DIR__ . '/newspack-blocks/index.php'; 251 245 } 252 add_action( 'plugins_loaded', __NAMESPACE__ . '\load_blog_posts_block' );253 246 254 247 /** … … 262 255 require_once __DIR__ . '/wpcom-block-editor-nux/class-wpcom-block-editor-nux.php'; 263 256 } 264 add_action( 'plugins_loaded', __NAMESPACE__ . '\load_wpcom_block_editor_nux' );265 257 266 258 /** … … 274 266 require_once __DIR__ . '/block-inserter-modifications/index.php'; 275 267 } 276 add_action( 'plugins_loaded', __NAMESPACE__ . '\load_block_inserter_modifications' );277 268 278 269 /** … … 286 277 require_once __DIR__ . '/mailerlite/subscriber-popup.php'; 287 278 } 288 add_action( 'plugins_loaded', __NAMESPACE__ . '\load_mailerlite' );289 279 290 280 /** … … 298 288 require_once __DIR__ . '/whats-new/class-whats-new.php'; 299 289 } 300 add_action( 'plugins_loaded', __NAMESPACE__ . '\load_whats_new' );301 290 302 291 /** … … 310 299 require_once __DIR__ . '/tags-education/class-tags-education.php'; 311 300 } 312 add_action( 'plugins_loaded', __NAMESPACE__ . '\load_tags_education' );313 301 314 302 /** … … 322 310 require_once __DIR__ . '/paragraph-block/index.php'; 323 311 } 324 add_action( 'plugins_loaded', __NAMESPACE__ . '\load_paragraph_block' );325 312 326 313 /** … … 334 321 require_once __DIR__ . '/wpcom-documentation-links/class-wpcom-documentation-links.php'; 335 322 } 336 add_action( 'plugins_loaded', __NAMESPACE__ . '\load_wpcom_documentation_links' );337 323 338 324 /** … … 346 332 require_once __DIR__ . '/wpcom-block-description-links/class-wpcom-block-description-links.php'; 347 333 } 348 add_action( 'plugins_loaded', __NAMESPACE__ . '\load_block_description_links' );349 334 350 335 /** … … 358 343 require_once __DIR__ . '/wpcom-global-styles/index.php'; 359 344 } 360 add_action( 'plugins_loaded', __NAMESPACE__ . '\load_wpcom_global_styles' ); 345 346 /** 347 * Load features of the ETK plugin. 348 */ 349 function load_editing_toolkit_features() { 350 /** 351 * Turn off the ETK plugin features if the Jetpack_Mu_Wpcom is available and its version is v5.55.0-alpha and above. 352 */ 353 if ( class_exists( '\Automattic\Jetpack\Jetpack_Mu_Wpcom', false ) && version_compare( \Automattic\Jetpack\Jetpack_Mu_Wpcom::PACKAGE_VERSION, '5.55.0-alpha', '>=' ) ) { 354 return; 355 } 356 357 // Always include these helper files for dotcom FSE. 358 require_once __DIR__ . '/dotcom-fse/helpers.php'; 359 360 // Enqueues the shared JS data stores and defines shared helper functions. 361 require_once __DIR__ . '/common/index.php'; 362 363 load_full_site_editing(); 364 load_posts_list_block(); 365 load_starter_page_templates(); 366 load_global_styles(); 367 load_countdown_block(); 368 load_timeline_block(); 369 load_coblocks_gallery(); 370 load_blog_posts_block(); 371 load_wpcom_block_editor_nux(); 372 load_block_inserter_modifications(); 373 load_mailerlite(); 374 load_whats_new(); 375 load_tags_education(); 376 load_paragraph_block(); 377 load_wpcom_documentation_links(); 378 load_block_description_links(); 379 load_wpcom_global_styles(); 380 } 381 add_action( 'plugins_loaded', __NAMESPACE__ . '\load_editing_toolkit_features' ); -
full-site-editing/trunk/readme.txt
r3131460 r3132411 4 4 Requires at least: 5.5 5 5 Tested up to: 6.3 6 Stable tag: 4.30 2906 Stable tag: 4.30504 7 7 Requires PHP: 5.6.20 8 8 License: GPLv2 or later -
full-site-editing/trunk/wpcom-block-editor-nux/dist/wpcom-block-editor-nux.js
r3131460 r3132411 11283 11283 /* harmony export */ Xf: () => (/* binding */ START_WRITING_FLOW) 11284 11284 /* harmony export */ }); 11285 /* unused harmony exports ACCOUNT_FLOW, AI_ASSEMBLER_FLOW, NEWSLETTER_FLOW, NEWSLETTER_POST_SETUP_FLOW, HOSTING_LP_FLOW, NEW_HOSTED_SITE_FLOW, NEW_HOSTED_SITE_FLOW_USER_INCLUDED, TRANSFERRING_HOSTED_SITE_FLOW, LINK_IN_BIO_FLOW, LINK_IN_BIO_TLD_FLOW, LINK_IN_BIO_POST_SETUP_FLOW, CONNECT_DOMAIN_FLOW, VIDEOPRESS_FLOW, VIDEOPRESS_ACCOUNT, VIDEOPRESS_TV_FLOW, VIDEOPRESS_TV_PURCHASE_FLOW, IMPORT_FOCUSED_FLOW, IMPORT_HOSTED_SITE_FLOW, SENSEI_FLOW, ECOMMERCE_FLOW, ENTREPRENEUR_FLOW, WOOEXPRESS_FLOW, FREE_FLOW, FREE_POST_SETUP_FLOW, MIGRATION_FLOW, SITE_MIGRATION_FLOW, MIGRATION_SIGNUP_FLOW, HOSTED_SITE_MIGRATION_FLOW, COPY_SITE_FLOW, BUILD_FLOW, WRITE_FLOW, SITE_SETUP_FLOW, WITH_THEME_FLOW, WITH_THEME_ASSEMBLER_FLOW, ASSEMBLER_FIRST_FLOW, READYMADE_TEMPLATE_FLOW, UPDATE_DESIGN_FLOW, DOMAIN_UPSELL_FLOW, DOMAIN_TRANSFER, GOOGLE_TRANSFER, HUNDRED_YEAR_PLAN_FLOW, REBLOGGING_FLOW, DOMAIN_FOR_GRAVATAR_FLOW, ONBOARDING_FLOW, ONBOARDING_GUIDED_FLOW, EMAIL_SUBSCRIPTION_FLOW, isLinkInBioFlow, isNewsletterFlow, isFreeFlow, isNewsletterOrLinkInBioFlow, isTailoredSignupFlow, isEntrepreneurSignupFlow, isHostingSignupFlow, isNewHostedSiteCreationFlow, isTransferringHostedSiteCreationFlow, isAnyHostingFlow, isAnyMigrationFlow, isMigrationFlow, isCopySiteFlow, isEntrepreneurFlow, isWooExpressFlow, isNewSiteMigrationFlow, isMigrationSignupFlow, isHostedSiteMigrationFlow, isBuildFlow, isWriteFlow, isUpdateDesignFlow, isStartWritingFlow, isDesignFirstFlow, isBlogOnboardingFlow, isOnboardingGuidedFlow, isDomainUpsellFlow, isSiteAssemblerFlow, isReadymadeFlow, isWithThemeAssemblerFlow, isWithThemeFlow, isSiteSetupFlow, isSenseiFlow, ecommerceFlowRecurTypes, isVideoPressFlow, isVideoPressTVFlow, isDomainForGravatarFlow */11285 /* unused harmony exports ACCOUNT_FLOW, AI_ASSEMBLER_FLOW, NEWSLETTER_FLOW, NEWSLETTER_POST_SETUP_FLOW, HOSTING_LP_FLOW, NEW_HOSTED_SITE_FLOW, NEW_HOSTED_SITE_FLOW_USER_INCLUDED, TRANSFERRING_HOSTED_SITE_FLOW, LINK_IN_BIO_FLOW, LINK_IN_BIO_TLD_FLOW, LINK_IN_BIO_POST_SETUP_FLOW, CONNECT_DOMAIN_FLOW, VIDEOPRESS_FLOW, VIDEOPRESS_ACCOUNT, VIDEOPRESS_TV_FLOW, VIDEOPRESS_TV_PURCHASE_FLOW, IMPORT_FOCUSED_FLOW, IMPORT_HOSTED_SITE_FLOW, SENSEI_FLOW, ECOMMERCE_FLOW, ENTREPRENEUR_FLOW, WOOEXPRESS_FLOW, FREE_FLOW, FREE_POST_SETUP_FLOW, MIGRATION_FLOW, SITE_MIGRATION_FLOW, MIGRATION_SIGNUP_FLOW, HOSTED_SITE_MIGRATION_FLOW, HOSTED_SITE_MIGRATION_V2_FLOW, COPY_SITE_FLOW, BUILD_FLOW, WRITE_FLOW, SITE_SETUP_FLOW, WITH_THEME_FLOW, WITH_THEME_ASSEMBLER_FLOW, ASSEMBLER_FIRST_FLOW, READYMADE_TEMPLATE_FLOW, UPDATE_DESIGN_FLOW, DOMAIN_UPSELL_FLOW, DOMAIN_TRANSFER, GOOGLE_TRANSFER, HUNDRED_YEAR_PLAN_FLOW, REBLOGGING_FLOW, DOMAIN_FOR_GRAVATAR_FLOW, ONBOARDING_FLOW, ONBOARDING_GUIDED_FLOW, EMAIL_SUBSCRIPTION_FLOW, isLinkInBioFlow, isNewsletterFlow, isFreeFlow, isNewsletterOrLinkInBioFlow, isTailoredSignupFlow, isEntrepreneurSignupFlow, isHostingSignupFlow, isNewHostedSiteCreationFlow, isTransferringHostedSiteCreationFlow, isAnyHostingFlow, isAnyMigrationFlow, isMigrationFlow, isCopySiteFlow, isEntrepreneurFlow, isWooExpressFlow, isNewSiteMigrationFlow, isMigrationSignupFlow, isHostedSiteMigrationFlow, isBuildFlow, isWriteFlow, isUpdateDesignFlow, isStartWritingFlow, isDesignFirstFlow, isBlogOnboardingFlow, isOnboardingGuidedFlow, isDomainUpsellFlow, isSiteAssemblerFlow, isReadymadeFlow, isWithThemeAssemblerFlow, isWithThemeFlow, isSiteSetupFlow, isSenseiFlow, ecommerceFlowRecurTypes, isVideoPressFlow, isVideoPressTVFlow, isDomainForGravatarFlow */ 11286 11286 const ACCOUNT_FLOW = 'account'; 11287 11287 const AI_ASSEMBLER_FLOW = 'ai-assembler'; … … 11312 11312 const MIGRATION_SIGNUP_FLOW = 'migration-signup'; 11313 11313 const HOSTED_SITE_MIGRATION_FLOW = 'hosted-site-migration'; 11314 const HOSTED_SITE_MIGRATION_V2_FLOW = 'hosted-site-migration-v2'; 11314 11315 const COPY_SITE_FLOW = 'copy-site'; 11315 11316 const BUILD_FLOW = 'build';
Note: See TracChangeset
for help on using the changeset viewer.