Skip to content

Commit c154117

Browse files
committed
Deploying version 6.3.7
1 parent ac35ec1 commit c154117

File tree

147 files changed

+4692
-2947
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

147 files changed

+4692
-2947
lines changed

acf.php

+8-2
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,10 @@
99
* Plugin Name: Advanced Custom Fields
1010
* Plugin URI: https://www.advancedcustomfields.com
1111
* Description: Customize WordPress with powerful, professional and intuitive fields.
12-
* Version: 6.3.6
12+
* Version: 6.3.7
1313
* Author: WP Engine
1414
* Author URI: https://wpengine.com/?utm_source=wordpress.org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields
15+
* Update URI: false
1516
* Text Domain: acf
1617
* Domain Path: /lang
1718
* Requires PHP: 7.4
@@ -35,7 +36,7 @@ class ACF {
3536
*
3637
* @var string
3738
*/
38-
public $version = '6.3.6';
39+
public $version = '6.3.7';
3940

4041
/**
4142
* The plugin settings array.
@@ -230,6 +231,11 @@ public function initialize() {
230231
acf_include( 'pro/acf-pro.php' );
231232

232233
if ( is_admin() && function_exists( 'acf_is_pro' ) && ! acf_is_pro() ) {
234+
235+
// Include WPE update system.
236+
acf_include( 'includes/class-PluginUpdater.php' );
237+
acf_include( 'includes/acf-upgrades.php' );
238+
233239
acf_include( 'includes/admin/admin-options-pages-preview.php' );
234240
}
235241

assets/build/css/acf-field-group.css

+17-17
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/build/css/acf-field-group.css.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/build/css/acf-field-group.min.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/build/css/acf-global.css

+11-11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/build/css/acf-global.css.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/build/css/acf-global.min.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/build/css/acf-input.css

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/build/css/acf-input.css.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/build/css/acf-input.min.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/build/js/acf.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/build/js/acf.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

includes/acf-upgrades.php

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?php
2+
3+
namespace ACF\Upgrades;
4+
5+
/**
6+
* Initialize the checking for plugin updates for ACF non-PRO.
7+
*/
8+
function check_for_acf_upgrades() {
9+
$properties = array(
10+
// This must match the key in "https://wpe-plugin-updates.wpengine.com/plugins.json".
11+
'plugin_slug' => 'advanced-custom-fields',
12+
'plugin_basename' => ACF_BASENAME,
13+
);
14+
15+
new \ACF\Upgrades\PluginUpdater( $properties );
16+
}
17+
add_action( 'admin_init', __NAMESPACE__ . '\check_for_acf_upgrades' );

0 commit comments

Comments
 (0)