diff --git a/.github/workflows/stable.yml b/.github/workflows/stable.yml index faa8600..edf2796 100644 --- a/.github/workflows/stable.yml +++ b/.github/workflows/stable.yml @@ -134,17 +134,27 @@ jobs: wordpress-org-release: name: Release on WordPress.org runs-on: ubuntu-latest - needs: pack steps: - - name: Setup variables - id: vars - run: | - echo "::set-output name=package-name::${{ secrets.SLUG }}-${GITHUB_REF#refs/tags/}" - - name: Download artifact - uses: actions/download-artifact@v1 + - name: Checkout + uses: actions/checkout@v2 + - name: Setup Node + uses: actions/setup-node@v1 with: - name: ${{ steps.vars.outputs.package-name }} - path: . + node-version: '12' + - name: Setup PHP 7.4 + uses: shivammathur/setup-php@v2 + with: + php-version: '7.4' + extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, mysql, mysqli, pdo_mysql, bcmath, soap, intl, gd, exif, iconv, imagick + coverage: none + - name: Install Node dependencies + uses: bahmutov/npm-install@v1 + - name: Install Composer dependencies + uses: "ramsey/composer-install@v2" + with: + composer-options: "--no-dev" + - name: Create .distignore file + run: cp .build-excludes .distignore - name: Deploy to WordPress repository uses: 10up/action-wordpress-plugin-deploy@2.2.2 env: diff --git a/advanced-cron-manager.php b/advanced-cron-manager.php index 6383907..ddc85b7 100644 --- a/advanced-cron-manager.php +++ b/advanced-cron-manager.php @@ -2,7 +2,7 @@ /** * Plugin Name: Advanced Cron Manager * Description: View, pause, remove, edit and add WP Cron events. - * Version: 2.5.7 + * Version: 2.5.8 * Author: BracketSpace * Author URI: https://bracketspace.com * License: GPL3 @@ -11,7 +11,7 @@ * @package advanced-cron-manager */ -$plugin_version = '2.5.7'; +$plugin_version = '2.5.8'; $plugin_file = __FILE__; /** diff --git a/inc/AdminScreen.php b/inc/AdminScreen.php index 925419a..760aaac 100644 --- a/inc/AdminScreen.php +++ b/inc/AdminScreen.php @@ -296,7 +296,7 @@ public static function prepare_event_arguments( $event ) { $parsed_args[] = array( 'type' => gettype( $arg ), 'msg' => wp_filter_nohtml_kses( sanitize_text_field( - html_entity_decode( $arg_raw, ENT_QUOTES, 'UTF-8' ) + html_entity_decode( $arg, ENT_QUOTES, 'UTF-8' ) ) ), ); } diff --git a/readme.txt b/readme.txt index 699fa7b..70c3ef3 100644 --- a/readme.txt +++ b/readme.txt @@ -3,8 +3,8 @@ Contributors: bracketspace, Kubitomakita Tags: cron, wpcron, tool, manager, crontrol Requires at least: 3.6 Requires PHP: 5.3 -Tested up to: 6.4 -Stable tag: 2.5.7 +Tested up to: 6.5 +Stable tag: 2.5.8 License: GPLv2 License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -101,6 +101,9 @@ Yes! We're offering a [custom plugin development](https://bracketspace.com/custo == Changelog == += 2.5.8 = +* [Fixed] Undefined variable typo. + = 2.5.7 = * [Fixed] Plugin package.