Changeset 3422995
- Timestamp:
- 12/18/2025 02:34:31 PM (3 months ago)
- Location:
- atchr-messaging
- Files:
-
- 3 added
- 1 deleted
- 3 edited
-
assets/banner-1544x500.jpg (added)
-
assets/banner-772x250.jpg (added)
-
trunk/assets/icon.png (added)
-
trunk/assets/icon.svg (deleted)
-
trunk/assets/php/atchr-messaging-functions.php (modified) (3 diffs)
-
trunk/atchr-messaging.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
atchr-messaging/trunk/assets/php/atchr-messaging-functions.php
r3301507 r3422995 6 6 function atchr_messaging_menu() 7 7 { 8 $icon_svg = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 95 95"><path d="M48.4 84.8c0 1.8 1.8 1.8 3.7 1.8 5.5-1.8 11.1-11.1 14.7-14.7 1.8-1.8 9.2-11.1 9.2-11.1.5-.8.9-1.5 1.2-2 1.5-3-1.5-1.7-3-1.7L48.4 71.9v12.9z" fill="#a7aaad"/><circle cx="46.6" cy="43.2" r="1.8" fill="#a7aaad" stroke="#a7aaad" stroke-width="8" stroke-miterlimit="10"/><circle cx="46.6" cy="43.2" r="28.4" fill="none" stroke="#a7aaad" stroke-width="12" stroke-miterlimit="10"/></svg>'; 9 $icon_base64 = 'data:image/svg+xml;base64,' . base64_encode($icon_svg); 10 8 11 add_menu_page( 9 12 'Atchr Messaging Settings', … … 12 15 'atchr-messaging', 13 16 'atchr_messaging_settings_page', 14 esc_url(ATCHR_MESSAGING_PLUGIN_URL . 'assets/images/menu-icon.svg'),17 $icon_base64, 15 18 100 16 19 ); … … 59 62 <table> 60 63 <tr> 61 <td style="width: 90px">62 <?php echo wp_kses_post(atchr_get_plugin_image('logo-dark.png', 'Atchr Logo', [63 'width' => '90',64 'height' => '60',65 'class' => 'atchr-logo'66 ])); ?>67 </td>68 64 <td><h1 class="title">Widget Settings</h1></td> 69 65 </tr> -
atchr-messaging/trunk/atchr-messaging.php
r3301507 r3422995 4 4 * Plugin URI: https://atchr.com 5 5 * Description: Atchr by Chromesque is a secure AI Chatbot, Instant messaging & Analytics platform for organizations, businesses, teams and individuals. Atchr provides a secure communications platform that bridges the divide between you, your customers and your team. 6 * Version: 1.0. 06 * Version: 1.0.1 7 7 * Author: Chromesque, LLC 8 8 * Author URI: https://chromesque.com … … 32 32 } 33 33 34 define('ATCHR_MESSAGING_VERSION', '1.0.0'); 35 define('ATCHR_MESSAGING_PLUGIN_DIR', plugin_dir_path(__FILE__)); 36 define('ATCHR_MESSAGING_PLUGIN_URL', plugin_dir_url(__FILE__)); 34 if (!defined('ATCHR_MESSAGING_VERSION')) { 35 define('ATCHR_MESSAGING_VERSION', '1.0.1'); 36 } 37 if (!defined('ATCHR_MESSAGING_PLUGIN_DIR')) { 38 define('ATCHR_MESSAGING_PLUGIN_DIR', plugin_dir_path(__FILE__)); 39 } 40 if (!defined('ATCHR_MESSAGING_PLUGIN_URL')) { 41 define('ATCHR_MESSAGING_PLUGIN_URL', plugin_dir_url(__FILE__)); 42 } 37 43 38 44 include_once(ATCHR_MESSAGING_PLUGIN_DIR . 'assets/php/atchr-messaging-functions.php'); -
atchr-messaging/trunk/readme.txt
r3301507 r3422995 1 1 === Atchr Messaging === 2 Contributors: Chromesque ,LLC2 Contributors: Chromesque LLC 3 3 Tags: atchr, webchat, chat, widget, bubble 4 4 Requires at least: 5.0 5 5 Tested up to: 6.8 6 Stable tag: 1.0. 06 Stable tag: 1.0.1 7 7 Requires PHP: 7.2 8 8 License: GPLv2 or later … … 56 56 == Changelog == 57 57 58 = 1.0.1 = 59 * Fixed menu icon display issues across all admin pages 60 * Resolved PHP constant redefinition warnings 61 * Improved SVG icon rendering with base64 encoding 62 58 63 = 1.0.0 = 59 64 * Initial release
Note: See TracChangeset
for help on using the changeset viewer.