Changeset 3463894
- Timestamp:
- 02/17/2026 11:11:33 PM (6 weeks ago)
- Location:
- mark-ai
- Files:
-
- 1 added
- 8 edited
- 1 copied
-
assets/.gitkeep (added)
-
assets/icon-128x128.png (modified) (1 prop) (previous)
-
assets/icon-256x256.png (modified) (1 prop) (previous)
-
tags/1.0.1 (copied) (copied from mark-ai/trunk)
-
tags/1.0.1/assets/admin.css (modified) (1 diff)
-
tags/1.0.1/mark-ai.php (modified) (4 diffs)
-
tags/1.0.1/readme.txt (modified) (2 diffs)
-
trunk/assets/admin.css (modified) (1 diff)
-
trunk/mark-ai.php (modified) (4 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
mark-ai/assets/icon-128x128.png
-
Property
svn:mime-type
changed from
application/octet-streamtoimage/png
-
Property
svn:mime-type
changed from
-
mark-ai/assets/icon-256x256.png
-
Property
svn:mime-type
changed from
application/octet-streamtoimage/png
-
Property
svn:mime-type
changed from
-
mark-ai/tags/1.0.1/assets/admin.css
r3459981 r3463894 95 95 font-weight: bold; 96 96 font-size: 12px; 97 } 98 99 /* Hide third-party admin notices on the connect page */ 100 .admin_page_markai .notice:not(.markai-notice), 101 .admin_page_markai .update-nag, 102 .admin_page_markai .updated:not(.markai-notice), 103 .admin_page_markai .error:not(.markai-notice) { 104 display: none !important; 97 105 } 98 106 -
mark-ai/tags/1.0.1/mark-ai.php
r3459981 r3463894 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. 05 * Version: 1.0.1 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. 0');39 define('MARKAI_VERSION', '1.0.1'); 40 40 define('MARKAI_PLUGIN_DIR', plugin_dir_path(__FILE__)); 41 41 define('MARKAI_PLUGIN_URL', plugin_dir_url(__FILE__)); … … 3245 3245 add_action('admin_post_markai_authorize_connection', [$this, 'handle_authorize']); 3246 3246 add_action('admin_enqueue_scripts', [$this, 'enqueue_connect_styles']); 3247 add_action('in_admin_header', [$this, 'hide_admin_notices'], 1000); 3247 3248 } 3248 3249 … … 3256 3257 [$this, 'render_connect_page'] 3257 3258 ); 3259 } 3260 3261 public function hide_admin_notices() { 3262 $screen = get_current_screen(); 3263 if ( ! $screen || $screen->id !== 'admin_page_markai' ) { 3264 return; 3265 } 3266 remove_all_actions( 'admin_notices' ); 3267 remove_all_actions( 'all_admin_notices' ); 3258 3268 } 3259 3269 -
mark-ai/tags/1.0.1/readme.txt
r3459981 r3463894 4 4 Requires at least: 5.6 5 5 Tested up to: 6.9 6 Stable tag: 1.0. 06 Stable tag: 1.0.1 7 7 Requires PHP: 7.4 8 8 License: GPLv2 or later … … 81 81 82 82 == Changelog == 83 84 = 1.0.1 = 85 * Hide third-party admin notices on the connection authorization page 83 86 84 87 = 1.0.0 = -
mark-ai/trunk/assets/admin.css
r3459981 r3463894 95 95 font-weight: bold; 96 96 font-size: 12px; 97 } 98 99 /* Hide third-party admin notices on the connect page */ 100 .admin_page_markai .notice:not(.markai-notice), 101 .admin_page_markai .update-nag, 102 .admin_page_markai .updated:not(.markai-notice), 103 .admin_page_markai .error:not(.markai-notice) { 104 display: none !important; 97 105 } 98 106 -
mark-ai/trunk/mark-ai.php
r3459981 r3463894 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. 05 * Version: 1.0.1 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. 0');39 define('MARKAI_VERSION', '1.0.1'); 40 40 define('MARKAI_PLUGIN_DIR', plugin_dir_path(__FILE__)); 41 41 define('MARKAI_PLUGIN_URL', plugin_dir_url(__FILE__)); … … 3245 3245 add_action('admin_post_markai_authorize_connection', [$this, 'handle_authorize']); 3246 3246 add_action('admin_enqueue_scripts', [$this, 'enqueue_connect_styles']); 3247 add_action('in_admin_header', [$this, 'hide_admin_notices'], 1000); 3247 3248 } 3248 3249 … … 3256 3257 [$this, 'render_connect_page'] 3257 3258 ); 3259 } 3260 3261 public function hide_admin_notices() { 3262 $screen = get_current_screen(); 3263 if ( ! $screen || $screen->id !== 'admin_page_markai' ) { 3264 return; 3265 } 3266 remove_all_actions( 'admin_notices' ); 3267 remove_all_actions( 'all_admin_notices' ); 3258 3268 } 3259 3269 -
mark-ai/trunk/readme.txt
r3459981 r3463894 4 4 Requires at least: 5.6 5 5 Tested up to: 6.9 6 Stable tag: 1.0. 06 Stable tag: 1.0.1 7 7 Requires PHP: 7.4 8 8 License: GPLv2 or later … … 81 81 82 82 == Changelog == 83 84 = 1.0.1 = 85 * Hide third-party admin notices on the connection authorization page 83 86 84 87 = 1.0.0 =
Note: See TracChangeset
for help on using the changeset viewer.