Changeset 3337481
- Timestamp:
- 07/31/2025 08:10:12 PM (8 months ago)
- Location:
- hippoo/trunk
- Files:
-
- 1 added
- 3 edited
-
app/web_api.php (modified) (1 diff)
-
app/web_api_notification.php (added)
-
hippoo.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
hippoo/trunk/app/web_api.php
r3310002 r3337481 530 530 return $response; 531 531 } 532 533 534 /* 535 * Custom Event Notification API Route 536 */ 537 add_action('plugins_loaded', function () { 538 if (class_exists('WC_REST_Controller')) { 539 require_once __DIR__ . '/web_api_notification.php'; 540 $controller = new HippooEventNotificationController(); 541 $current_db_version = get_option('hippoo_notification_db_version'); 542 if ($current_db_version !== HippooEventNotificationController::DB_VERSION) { 543 $controller->init_database(); 544 } 545 $controller->register_hooks(); 546 add_action('rest_api_init', function () use ($controller) { 547 $controller->register_routes(); 548 }); 549 } 550 }, 999); -
hippoo/trunk/hippoo.php
r3310002 r3337481 2 2 /** 3 3 * Plugin Name: Hippoo Mobile app for WooCommerce 4 * Version: 1.5.1 44 * Version: 1.5.15 5 5 * Plugin URI: https://Hippoo.app/ 6 6 * Description: Best WooCommerce App Alternative – Manage orders and products on the go with real-time notifications, seamless order and product management, and powerful add-ons. Available for Android & iOS. 🚀. … … 30 30 } 31 31 32 define('hippoo_version', '1.5.1 3');32 define('hippoo_version', '1.5.15'); 33 33 define('hippoo_path', dirname(__file__).DIRECTORY_SEPARATOR); 34 34 define('hippoo_main_file_path', __file__); -
hippoo/trunk/readme.txt
r3310002 r3337481 5 5 Requires at least: 5.3 6 6 Tested up to: 6.7 7 Stable tag: 1.5.1 47 Stable tag: 1.5.15 8 8 License: GPL3 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 71 71 72 72 == Changelog == 73 * 1.5.15 - Customize Notifications 73 74 * 1.5.14 - Minor Improvements 74 75 * 1.5.13 - Fix scripts.js url
Note: See TracChangeset
for help on using the changeset viewer.