-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8b75662
commit ca82554
Showing
8 changed files
with
17 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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/ | ||
|
@@ -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'); | ||
} | ||
} | ||
|
||
|
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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" | ||
|
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
||
|
@@ -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 |