Changeset 3476258
- Timestamp:
- 03/06/2026 10:28:47 AM (4 weeks ago)
- Location:
- mark-ai
- Files:
-
- 4 edited
- 1 copied
-
tags/1.0.4 (copied) (copied from mark-ai/trunk)
-
tags/1.0.4/mark-ai.php (modified) (4 diffs)
-
tags/1.0.4/readme.txt (modified) (2 diffs)
-
trunk/mark-ai.php (modified) (4 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
mark-ai/tags/1.0.4/mark-ai.php
r3476216 r3476258 3 3 * Plugin Name: Mark AI 4 4 * Description: Publish content directly from Mark AI, the platform to create on-brand content at scale. 5 * Version: 1.0. 35 * Version: 1.0.4 6 6 * Requires at least: 5.6 7 7 * Requires PHP: 7.4 … … 37 37 38 38 // Define plugin constants 39 define('MARKAI_VERSION', '1.0. 3');39 define('MARKAI_VERSION', '1.0.4'); 40 40 define('MARKAI_PLUGIN_DIR', plugin_dir_path(__FILE__)); 41 41 define('MARKAI_PLUGIN_URL', plugin_dir_url(__FILE__)); … … 3202 3202 3203 3203 public function register_settings() { 3204 register_setting('markai_settings', 'markai_api_key', [3205 'sanitize_callback' => 'sanitize_text_field'3206 ]);3207 3204 register_setting('markai_settings', 'markai_api_user', [ 3208 3205 'sanitize_callback' => 'sanitize_user' … … 3440 3437 } 3441 3438 3439 if (!get_option('markai_api_key')) { 3440 update_option('markai_api_key', bin2hex(random_bytes(32))); 3441 } 3442 3442 3443 $site_data = [ 3443 3444 'connection_token' => $connection_token, -
mark-ai/tags/1.0.4/readme.txt
r3476216 r3476258 4 4 Requires at least: 5.6 5 5 Tested up to: 6.9 6 Stable tag: 1.0. 36 Stable tag: 1.0.4 7 7 Requires PHP: 7.4 8 8 License: GPLv2 or later … … 81 81 82 82 == Changelog == 83 84 = 1.0.4 = 85 * Fix connection issues caused by API key being reset on settings save 83 86 84 87 = 1.0.3 = -
mark-ai/trunk/mark-ai.php
r3476216 r3476258 3 3 * Plugin Name: Mark AI 4 4 * Description: Publish content directly from Mark AI, the platform to create on-brand content at scale. 5 * Version: 1.0. 35 * Version: 1.0.4 6 6 * Requires at least: 5.6 7 7 * Requires PHP: 7.4 … … 37 37 38 38 // Define plugin constants 39 define('MARKAI_VERSION', '1.0. 3');39 define('MARKAI_VERSION', '1.0.4'); 40 40 define('MARKAI_PLUGIN_DIR', plugin_dir_path(__FILE__)); 41 41 define('MARKAI_PLUGIN_URL', plugin_dir_url(__FILE__)); … … 3202 3202 3203 3203 public function register_settings() { 3204 register_setting('markai_settings', 'markai_api_key', [3205 'sanitize_callback' => 'sanitize_text_field'3206 ]);3207 3204 register_setting('markai_settings', 'markai_api_user', [ 3208 3205 'sanitize_callback' => 'sanitize_user' … … 3440 3437 } 3441 3438 3439 if (!get_option('markai_api_key')) { 3440 update_option('markai_api_key', bin2hex(random_bytes(32))); 3441 } 3442 3442 3443 $site_data = [ 3443 3444 'connection_token' => $connection_token, -
mark-ai/trunk/readme.txt
r3476216 r3476258 4 4 Requires at least: 5.6 5 5 Tested up to: 6.9 6 Stable tag: 1.0. 36 Stable tag: 1.0.4 7 7 Requires PHP: 7.4 8 8 License: GPLv2 or later … … 81 81 82 82 == Changelog == 83 84 = 1.0.4 = 85 * Fix connection issues caused by API key being reset on settings save 83 86 84 87 = 1.0.3 =
Note: See TracChangeset
for help on using the changeset viewer.