Skip to content

Commit

Permalink
Merge branch 'release/2.5.8'
Browse files Browse the repository at this point in the history
  • Loading branch information
BracketSpaceWorker committed Jun 8, 2024
2 parents c0836d5 + 68c1d39 commit 576a2a6
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 14 deletions.
28 changes: 19 additions & 9 deletions .github/workflows/stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/[email protected]
env:
Expand Down
4 changes: 2 additions & 2 deletions advanced-cron-manager.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -11,7 +11,7 @@
* @package advanced-cron-manager
*/

$plugin_version = '2.5.7';
$plugin_version = '2.5.8';
$plugin_file = __FILE__;

/**
Expand Down
2 changes: 1 addition & 1 deletion inc/AdminScreen.php
Original file line number Diff line number Diff line change
Expand Up @@ -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' )
) ),
);
}
Expand Down
7 changes: 5 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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.

Expand Down

0 comments on commit 576a2a6

Please sign in to comment.