Skip to content

Commit

Permalink
Merge branch 'release/2.3.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
jakubmikita committed Aug 30, 2018
2 parents e22e969 + fd48e5e commit 45cece5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
4 changes: 2 additions & 2 deletions advanced-cron-manager.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
/**
* Plugin Name: Advanced Cron Manager
* Description: View, pause, remove, edit and add WP Cron events.
* Version: 2.3.3
* Version: 2.3.4
* Author: BracketSpace
* Author URI: https://bracketspace.com
* License: GPL3
* Text Domain: advanced-cron-manager
*/

$plugin_version = '2.3.3';
$plugin_version = '2.3.4';
$plugin_file = __FILE__;

/**
Expand Down
2 changes: 1 addition & 1 deletion inc/Assets.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public function enqueue_admin( $current_page_hook ) {
wp_register_script( 'sprintf', $this->files->vendor_asset_url( 'sprintf', 'sprintf.min.js' ), array(), '1.1.1', true );

if ( ! wp_script_is( 'wp-hooks', 'registered' ) ) {
wp_register_script( 'event-manager', $this->files->vendor_asset_url( 'wp', 'hooks.js' ), array( 'jquery' ), $this->plugin_version, true );
wp_register_script( 'wp-hooks', $this->files->vendor_asset_url( 'wp', 'hooks.js' ), array( 'jquery' ), $this->plugin_version, true );
}

wp_register_script( 'materialize', $this->files->vendor_asset_url( 'materialize', 'js/materialize.min.js' ), array( 'jquery' ), '0.98.2', true );
Expand Down
5 changes: 4 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Donate link: https://www.paypal.me/underDEV/
Tags: cron, wp cron, cron jobs, manager, cron manager, crontrol
Requires at least: 3.6
Tested up to: 4.9.6
Stable tag: 2.3.3
Stable tag: 2.3.4
License: GPLv2
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -90,6 +90,9 @@ Yes, but WP-Cron Control is quite old and it's tactics is not needed anymore. Ad

== Changelog ==

= 2.3.4
* [Fixed] wp-hooks script handle, causing the page to not load plugin's JavaScript

= 2.3.3
* [Changed] JavaScript hooks library which was conflicting with Gutenberg

Expand Down

0 comments on commit 45cece5

Please sign in to comment.