diff --git a/README.md b/README.md index 31187c5..8f4dc26 100644 --- a/README.md +++ b/README.md @@ -76,8 +76,8 @@ Your contribution helps us continue developing innovative tools and supports the If you prefer to use cryptocurrency, here are the wallets you can send your support to: - **Bitcoin:** `126MRj4UdQgoYA8TrWjvuBgDnwtCQ1AT2C` -- **Bitcoin (BEP20):** `0xf53d079b7cc105d338b16b6ce812121d295eee70` -- **Ethereum (ERC20, BEP20):** `0xf53d079b7cc105d338b16b6ce812121d295eee70` +- **Bitcoin (BEP20):** `0x5cf16b35348ebc0b6f7d26f0fcbb91bc0c8da9c1` +- **Ethereum (ERC20, BEP20):** `0x5cf16b35348ebc0b6f7d26f0fcbb91bc0c8da9c1` - **USDT (TRC20):** `THfZPJNi5hLqg3FMVgeT4iy8PnsSpHzxx3` - **USDC (XLM):** `GABFQIK63R2NETJM7T673EAMZN4RJLLGP3OFUEJU5SZVTGWUKULZJNL6` (MEMO: `341286132`) - **Ripple (XRP):** `rNxp4h8apvRis6mJf9Sh8C6iRxfrDWN7AV` (MEMO: `372541950`) @@ -104,6 +104,10 @@ This effort not only helps the plugin reach a wider audience but also supports t ## Changelog +### 1.0.1 + +- Test with WordPress 6.5.3 + ### 1.0.0 - Initial release. diff --git a/easy-key-values.php b/easy-key-values.php index 1ab6e92..66bd14a 100644 --- a/easy-key-values.php +++ b/easy-key-values.php @@ -2,7 +2,7 @@ /** * Plugin Name: Easy Key-Values * Description: Manage key-value pairs. Save custom settings and retrieve using a shortcode or PHP function. - * Version: 1.0.0 + * Version: 1.0.1 * Author: Yevhen Salitrynskyi * Author's Email: ysalitrynskyi+wp@gmail.com * Author's LinkedIn: https://www.linkedin.com/in/yevhen-salitrynskyi/ @@ -93,7 +93,7 @@ function ekvalues_enqueue_scripts($hook) { if (!str_contains($hook, 'ekvalues_settings')) { return; } - wp_enqueue_script('ekvalues-ajax', plugin_dir_url(__FILE__) . 'js/ekvalues-ajax.js', array('jquery'), '1.0.0', true); + wp_enqueue_script('ekvalues-ajax', plugin_dir_url(__FILE__) . 'js/ekvalues-ajax.js', array('jquery'), '1.0.1', true); wp_localize_script('ekvalues-ajax', 'ekvLang', array( 'ajaxurl' => admin_url('admin-ajax.php'), 'nonce' => wp_create_nonce('ekvalues_nonce'), @@ -113,7 +113,7 @@ function ekvalues_enqueue_scripts($hook) { add_action('admin_enqueue_scripts', 'ekvalues_enqueue_admin_styles'); function ekvalues_enqueue_admin_styles($hook) { if (strpos($hook, 'ekvalues_settings') !== false) { - wp_enqueue_style('ekvalues-admin-styles', plugins_url('css/ekvalues-styles.css', __FILE__), [], '1.0.0'); + wp_enqueue_style('ekvalues-admin-styles', plugins_url('css/ekvalues-styles.css', __FILE__), [], '1.0.1'); } } diff --git a/languages/easy-key-values-ru_RU.mo b/languages/easy-key-values-ru_RU.mo index 9301c27..a9ebe64 100644 Binary files a/languages/easy-key-values-ru_RU.mo and b/languages/easy-key-values-ru_RU.mo differ diff --git a/languages/easy-key-values-ru_RU.po b/languages/easy-key-values-ru_RU.po index 5a61518..07f2656 100644 --- a/languages/easy-key-values-ru_RU.po +++ b/languages/easy-key-values-ru_RU.po @@ -2,7 +2,7 @@ # This file is distributed under the GPLv2 or later. msgid "" msgstr "" -"Project-Id-Version: Easy Key-Values 1.0.0\n" +"Project-Id-Version: Easy Key-Values 1.0.1\n" "Report-Msgid-Bugs-To: https://github.com/ysalitrynskyi/easy-key-values/issues\n" "Last-Translator: Yevhen Salitrynskyi \n" "Language-Team: Yevhen Salitrynskyi \n" diff --git a/languages/easy-key-values-uk.mo b/languages/easy-key-values-uk.mo index 70df327..bfc3bdd 100644 Binary files a/languages/easy-key-values-uk.mo and b/languages/easy-key-values-uk.mo differ diff --git a/languages/easy-key-values-uk.po b/languages/easy-key-values-uk.po index 44ba5d8..abe8ffc 100644 --- a/languages/easy-key-values-uk.po +++ b/languages/easy-key-values-uk.po @@ -2,7 +2,7 @@ # This file is distributed under the GPLv2 or later. msgid "" msgstr "" -"Project-Id-Version: Easy Key-Values 1.0.0\n" +"Project-Id-Version: Easy Key-Values 1.0.1\n" "Report-Msgid-Bugs-To: https://github.com/ysalitrynskyi/easy-key-values/issues\n" "Last-Translator: Yevhen Salitrynskyi \n" "Language-Team: Yevhen Salitrynskyi \n" diff --git a/languages/easy-key-values.pot b/languages/easy-key-values.pot index 3f315fb..5efd0fe 100644 --- a/languages/easy-key-values.pot +++ b/languages/easy-key-values.pot @@ -2,7 +2,7 @@ # This file is distributed under the GPLv2 or later. msgid "" msgstr "" -"Project-Id-Version: Easy Key-Values 1.0.0\n" +"Project-Id-Version: Easy Key-Values 1.0.1\n" "Report-Msgid-Bugs-To: https://github.com/ysalitrynskyi/easy-key-values/issues\n" "Last-Translator: Yevhen Salitrynskyi \n" "Language-Team: Yevhen Salitrynskyi \n" diff --git a/readme.txt b/readme.txt index 950a723..21a8555 100644 --- a/readme.txt +++ b/readme.txt @@ -5,8 +5,8 @@ Email: ysalitrynskyi+wp@gmail.com Tags: Custom Fields, Environmental Variables, API Key Management, Configuration Storage, Vault Requires PHP: 7.4 Requires at least: 5.2 -Tested up to: 6.4.3 -Stable tag: 1.0.0 +Tested up to: 6.5.3 +Stable tag: 1.0.1 License: GPLv2 or later License URI: https://www.gnu.org/licenses/gpl-2.0.html @@ -76,5 +76,8 @@ Define the `EKVALUES_MENU_LOCATION` constant in your `wp-config.php` file. Setti == Changelog == += 1.0.1 = +* Test with WordPress 6.5.3 + = 1.0.0 = * Initial release