Skip to content

Commit

Permalink
Merge pull request #703 from publishpress/release-2.11.1
Browse files Browse the repository at this point in the history
Release 2.11.1
  • Loading branch information
richaferry authored Jul 18, 2024
2 parents 11c50ba + 6e120d1 commit cdd9033
Show file tree
Hide file tree
Showing 8 changed files with 48 additions and 41 deletions.
16 changes: 9 additions & 7 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
{
"presets": [
[
"@wordpress/babel-preset-default"
],
[
"minify"
]
"@wordpress/babel-preset-default",
"minify"
],
"plugins": [
[
Expand All @@ -14,7 +10,13 @@
"pragma": "wp.element.createElement"
}
],
"@babel/plugin-proposal-class-properties"
"@babel/plugin-proposal-class-properties",
[
"@babel/plugin-transform-runtime",
{
"regenerator": true
}
]
],
"sourceMaps": "inline"
}
50 changes: 25 additions & 25 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions lib/vendor/composer/installed.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
'name' => '__root__',
'pretty_version' => 'dev-master',
'version' => 'dev-master',
'reference' => '3024392ac018952c4bddf7801003a66eeed8635a',
'reference' => '68a24c70b1449276296c1dd6bac34dcd39cdbe80',
'type' => 'library',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),
Expand All @@ -13,7 +13,7 @@
'__root__' => array(
'pretty_version' => 'dev-master',
'version' => 'dev-master',
'reference' => '3024392ac018952c4bddf7801003a66eeed8635a',
'reference' => '68a24c70b1449276296c1dd6bac34dcd39cdbe80',
'type' => 'library',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),
Expand Down
2 changes: 1 addition & 1 deletion modules/checklists/assets/js/gutenberg-panel.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion modules/checklists/assets/js/gutenberg-warning.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion modules/settings/settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -842,7 +842,7 @@ public function settings_disable_quick_edit_publish_option($args = [])
public function settings_disable_quick_edit_completely_option($args = [])
{
$id = $this->module->options_group_name . '_disable_quick_edit_completely';
$value = isset($this->module->options->disable_quick_edit_completely) ? $this->module->options->disable_quick_edit_completely : 'yes';
$value = isset($this->module->options->disable_quick_edit_completely) ? $this->module->options->disable_quick_edit_completely : 'no';

echo '<label for="' . esc_attr($id) . '">';
echo '<input type="checkbox" value="yes" id="' . esc_attr($id) . '" name="' . esc_attr($this->module->options_group_name) . '[disable_quick_edit_completely]" '
Expand Down
4 changes: 2 additions & 2 deletions publishpress-checklists.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Description: Add support for checklists in WordPress
* Author: PublishPress
* Author URI: https://publishpress.com
* Version: 2.11.0
* Version: 2.11.1
* Text Domain: publishpress-checklists
* Domain Path: /languages
* Requires at least: 5.5
Expand Down Expand Up @@ -60,7 +60,7 @@
if (!defined('PPCH_LOADED')) {
define('PPCH_LOADED', 1);
define('PPCH_PATH_BASE', plugin_dir_path(__FILE__));
define('PPCH_VERSION', '2.11.0');
define('PPCH_VERSION', '2.11.1');
define('PPCH_FILE', __DIR__ . '/publishpress-checklists.php');
define('PPCH_MODULES_PATH', PPCH_PATH_BASE . '/modules');
define('PPCH_RELATIVE_PATH', 'publishpress-checklists');
Expand Down
9 changes: 7 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ Author URI: https://publishpress.com
Tags: approval, checklist, maximum, minimum, requirement, task, OpenAI, featured image, alt tag, featured images, alt tags, checklists, broken links, chatgpt, featured image size, yoast seo, user approval, spell checker, spelling, grammar
Requires at least: 5.5
Requires PHP: 7.2.5
Tested up to: 6.5
Stable tag: 2.10.4
Tested up to: 6.6
Stable tag: 2.11.1
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -311,6 +311,11 @@ With the PublishPress Checklists plugin, you can require that site's content mee
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

= [2.11.1] - 18 July 2024 =

* Fixed: Fixed compatibility with wordPress 6.6 #697
* Fixed: Quick edit settings are now disabled by default #689

= [2.11.0] - 15 July 2024 =

* Added: Added a sidebar feature #562
Expand Down

0 comments on commit cdd9033

Please sign in to comment.