Skip to content

Commit 576a2a6

Browse files
Merge branch 'release/2.5.8'
2 parents c0836d5 + 68c1d39 commit 576a2a6

4 files changed

Lines changed: 27 additions & 14 deletions

File tree

.github/workflows/stable.yml

Lines changed: 19 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -134,17 +134,27 @@ jobs:
134134
wordpress-org-release:
135135
name: Release on WordPress.org
136136
runs-on: ubuntu-latest
137-
needs: pack
138137
steps:
139-
- name: Setup variables
140-
id: vars
141-
run: |
142-
echo "::set-output name=package-name::${{ secrets.SLUG }}-${GITHUB_REF#refs/tags/}"
143-
- name: Download artifact
144-
uses: actions/download-artifact@v1
138+
- name: Checkout
139+
uses: actions/checkout@v2
140+
- name: Setup Node
141+
uses: actions/setup-node@v1
145142
with:
146-
name: ${{ steps.vars.outputs.package-name }}
147-
path: .
143+
node-version: '12'
144+
- name: Setup PHP 7.4
145+
uses: shivammathur/setup-php@v2
146+
with:
147+
php-version: '7.4'
148+
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, mysql, mysqli, pdo_mysql, bcmath, soap, intl, gd, exif, iconv, imagick
149+
coverage: none
150+
- name: Install Node dependencies
151+
uses: bahmutov/npm-install@v1
152+
- name: Install Composer dependencies
153+
uses: "ramsey/composer-install@v2"
154+
with:
155+
composer-options: "--no-dev"
156+
- name: Create .distignore file
157+
run: cp .build-excludes .distignore
148158
- name: Deploy to WordPress repository
149159
uses: 10up/action-wordpress-plugin-deploy@2.2.2
150160
env:

advanced-cron-manager.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* Plugin Name: Advanced Cron Manager
44
* Description: View, pause, remove, edit and add WP Cron events.
5-
* Version: 2.5.7
5+
* Version: 2.5.8
66
* Author: BracketSpace
77
* Author URI: https://bracketspace.com
88
* License: GPL3
@@ -11,7 +11,7 @@
1111
* @package advanced-cron-manager
1212
*/
1313

14-
$plugin_version = '2.5.7';
14+
$plugin_version = '2.5.8';
1515
$plugin_file = __FILE__;
1616

1717
/**

inc/AdminScreen.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ public static function prepare_event_arguments( $event ) {
296296
$parsed_args[] = array(
297297
'type' => gettype( $arg ),
298298
'msg' => wp_filter_nohtml_kses( sanitize_text_field(
299-
html_entity_decode( $arg_raw, ENT_QUOTES, 'UTF-8' )
299+
html_entity_decode( $arg, ENT_QUOTES, 'UTF-8' )
300300
) ),
301301
);
302302
}

readme.txt

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ Contributors: bracketspace, Kubitomakita
33
Tags: cron, wpcron, tool, manager, crontrol
44
Requires at least: 3.6
55
Requires PHP: 5.3
6-
Tested up to: 6.4
7-
Stable tag: 2.5.7
6+
Tested up to: 6.5
7+
Stable tag: 2.5.8
88
License: GPLv2
99
License URI: http://www.gnu.org/licenses/gpl-2.0.html
1010

@@ -101,6 +101,9 @@ Yes! We're offering a [custom plugin development](https://bracketspace.com/custo
101101

102102
== Changelog ==
103103

104+
= 2.5.8 =
105+
* [Fixed] Undefined variable typo.
106+
104107
= 2.5.7 =
105108
* [Fixed] Plugin package.
106109

0 commit comments

Comments
 (0)