Skip to content

Commit

Permalink
Deploying version 6.3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
lgladdy committed Oct 3, 2024
1 parent ac35ec1 commit c154117
Show file tree
Hide file tree
Showing 147 changed files with 4,692 additions and 2,947 deletions.
10 changes: 8 additions & 2 deletions acf.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,10 @@
* Plugin Name: Advanced Custom Fields
* Plugin URI: https://www.advancedcustomfields.com
* Description: Customize WordPress with powerful, professional and intuitive fields.
* Version: 6.3.6
* Version: 6.3.7
* Author: WP Engine
* Author URI: https://wpengine.com/?utm_source=wordpress.org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields
* Update URI: false
* Text Domain: acf
* Domain Path: /lang
* Requires PHP: 7.4
Expand All @@ -35,7 +36,7 @@ class ACF {
*
* @var string
*/
public $version = '6.3.6';
public $version = '6.3.7';

/**
* The plugin settings array.
Expand Down Expand Up @@ -230,6 +231,11 @@ public function initialize() {
acf_include( 'pro/acf-pro.php' );

if ( is_admin() && function_exists( 'acf_is_pro' ) && ! acf_is_pro() ) {

// Include WPE update system.
acf_include( 'includes/class-PluginUpdater.php' );
acf_include( 'includes/acf-upgrades.php' );

acf_include( 'includes/admin/admin-options-pages-preview.php' );
}

Expand Down
34 changes: 17 additions & 17 deletions assets/build/css/acf-field-group.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion assets/build/css/acf-field-group.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/build/css/acf-field-group.min.css

Large diffs are not rendered by default.

22 changes: 11 additions & 11 deletions assets/build/css/acf-global.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion assets/build/css/acf-global.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/build/css/acf-global.min.css

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions assets/build/css/acf-input.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion assets/build/css/acf-input.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/build/css/acf-input.min.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions assets/build/js/acf.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion assets/build/js/acf.js.map

Large diffs are not rendered by default.

17 changes: 17 additions & 0 deletions includes/acf-upgrades.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?php

namespace ACF\Upgrades;

/**
* Initialize the checking for plugin updates for ACF non-PRO.
*/
function check_for_acf_upgrades() {
$properties = array(
// This must match the key in "https://wpe-plugin-updates.wpengine.com/plugins.json".
'plugin_slug' => 'advanced-custom-fields',
'plugin_basename' => ACF_BASENAME,
);

new \ACF\Upgrades\PluginUpdater( $properties );
}
add_action( 'admin_init', __NAMESPACE__ . '\check_for_acf_upgrades' );
Loading

0 comments on commit c154117

Please sign in to comment.