Skip to content

Commit

Permalink
Test with WP 6.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ysalitrynskyi committed May 7, 2024
1 parent 8b75662 commit ca82554
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 10 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`)
Expand All @@ -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.
Expand Down
6 changes: 3 additions & 3 deletions easy-key-values.php
Original file line number Diff line number Diff line change
Expand Up @@ -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: [email protected]
* Author's LinkedIn: https://www.linkedin.com/in/yevhen-salitrynskyi/
Expand Down Expand Up @@ -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'),
Expand All @@ -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');
}
}

Expand Down
Binary file modified languages/easy-key-values-ru_RU.mo
Binary file not shown.
2 changes: 1 addition & 1 deletion languages/easy-key-values-ru_RU.po
Original file line number Diff line number Diff line change
Expand Up @@ -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 <[email protected]>\n"
"Language-Team: Yevhen Salitrynskyi <[email protected]>\n"
Expand Down
Binary file modified languages/easy-key-values-uk.mo
Binary file not shown.
2 changes: 1 addition & 1 deletion languages/easy-key-values-uk.po
Original file line number Diff line number Diff line change
Expand Up @@ -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 <[email protected]>\n"
"Language-Team: Yevhen Salitrynskyi <[email protected]>\n"
Expand Down
2 changes: 1 addition & 1 deletion languages/easy-key-values.pot
Original file line number Diff line number Diff line change
Expand Up @@ -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 <[email protected]>\n"
"Language-Team: Yevhen Salitrynskyi <[email protected]>\n"
Expand Down
7 changes: 5 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ Email: [email protected]
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

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

0 comments on commit ca82554

Please sign in to comment.