Skip to content

Commit

Permalink
Ensures in all cases to only use rules authorized by local parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
webaxones committed Aug 14, 2024
1 parent a0f926b commit 7c7a0a9
Show file tree
Hide file tree
Showing 16 changed files with 599 additions and 76 deletions.
2 changes: 1 addition & 1 deletion build/index.asset.php
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<?php return array('dependencies' => array('react', 'wp-components', 'wp-core-data', 'wp-data', 'wp-dom-ready', 'wp-edit-post', 'wp-i18n', 'wp-notices', 'wp-plugins'), 'version' => 'eccd1fcee4002381057b');
<?php return array('dependencies' => array('react', 'wp-components', 'wp-core-data', 'wp-data', 'wp-dom-ready', 'wp-edit-post', 'wp-i18n', 'wp-notices', 'wp-plugins'), 'version' => '8a8d2697904a0e5c0985');
2 changes: 1 addition & 1 deletion build/index.js

Large diffs are not rendered by default.

21 changes: 21 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,27 @@

This file contains only old changelog. See readme.txt for newer versions.

= 1.6.5 =
* Fix: Fix version number in main PHP file

= 1.6.4 =
* Fix: Fix name of plugin and add some screenshots

= 1.6.3 =
* Fix: Update plugin description, changelog, and stable tag

= 1.6.2 =
* Add: Update readme

= 1.6.1 =
* Fix: Remove vendor subdirectories from git

= 1.6.0 =
* Fix: Refactor some code: Rename Rules class to Languages
* Fix: Decouple Languages and rules
* Fix: Fix Paste event interception since Editor location depends on custom fields status (if they are not activated, Editor is loaded in an iframe)
* Fix: Separate old changelog and new logs in 2 files

= 1.5.9 =
* Add rule for percentages symbols
* Refactor some code
Expand Down
4 changes: 2 additions & 2 deletions consistency.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
/**
* Plugin Name: Consistency
* Plugin URI: https://www.webaxones.com
* Description: Fixes typographical consistency
* Version: 1.7.0
* Description: Fixes typographic and punctuation consistency
* Version: 1.7.1
* Requires at least: 6.1
* Requires PHP: 7.4
* Author: Loïc Antignac
Expand Down
2 changes: 1 addition & 1 deletion includes/Plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class Plugin
*/
protected static function setConstants(): void
{
defined( __NAMESPACE__ . '\VERSION' ) || define( __NAMESPACE__ . '\VERSION', '1.7.0' );
defined( __NAMESPACE__ . '\VERSION' ) || define( __NAMESPACE__ . '\VERSION', '1.7.1' );
defined( __NAMESPACE__ . '\PLUGIN_URL' ) || define( __NAMESPACE__ . '\PLUGIN_URL', plugin_dir_url( __DIR__ ) );
defined( __NAMESPACE__ . '\PLUGIN_PATH' ) || define( __NAMESPACE__ . '\PLUGIN_PATH', plugin_dir_path( __DIR__ ) );
defined( __NAMESPACE__ . '\OPTION_GROUP' ) || define( __NAMESPACE__ . '\OPTION_GROUP', 'consistency_plugin' );
Expand Down
Loading

0 comments on commit 7c7a0a9

Please sign in to comment.