Changeset 3344028
- Timestamp:
- 08/13/2025 10:26:54 AM (6 months ago)
- Location:
- emw-multiple-order-management
- Files:
-
- 32 added
- 1 deleted
- 3 edited
-
tags/1.0.0 (added)
-
tags/1.0.0/CHANGELOG.md (added)
-
tags/1.0.0/assets (added)
-
tags/1.0.0/assets/css (added)
-
tags/1.0.0/assets/css/admin-settings.css (added)
-
tags/1.0.0/assets/css/order-edit.css (added)
-
tags/1.0.0/assets/js (added)
-
tags/1.0.0/assets/js/admin-settings.js (added)
-
tags/1.0.0/emw-multiple-order-management.php (added)
-
tags/1.0.0/includes (added)
-
tags/1.0.0/includes/class-emw-mom-admin.php (added)
-
tags/1.0.0/includes/class-emw-mom-email-notifier.php (added)
-
tags/1.0.0/includes/class-emw-mom-handler.php (added)
-
tags/1.0.0/includes/class-emw-mom-install.php (added)
-
tags/1.0.0/includes/class-emw-mom-loader.php (added)
-
tags/1.0.0/includes/class-emw-mom-logger.php (added)
-
tags/1.0.0/includes/class-emw-mom-order-fetcher.php (added)
-
tags/1.0.0/includes/class-emw-mom-orders-table.php (added)
-
tags/1.0.0/includes/class-emw-mom-rest-api.php (added)
-
tags/1.0.0/includes/class-emw-mom-settings.php (added)
-
tags/1.0.0/languages (added)
-
tags/1.0.0/languages/emw-multiple-order-management.pot (added)
-
tags/1.0.0/license.txt (added)
-
tags/1.0.0/readme.MD (added)
-
tags/1.0.0/templates (added)
-
tags/1.0.0/templates/admin-page.php (added)
-
tags/1.0.0/templates/criteria-settings.php (added)
-
tags/1.0.0/templates/general-settings.php (added)
-
tags/1.0.0/templates/group-details-popup.php (added)
-
tags/1.0.0/templates/notifications-settings.php (added)
-
tags/1.0.0/templates/pro-version-settings.php (added)
-
tags/1.0.0/templates/rest-api-settings.php (added)
-
tags/1.0.1 (deleted)
-
trunk/CHANGELOG.md (modified) (1 diff)
-
trunk/emw-multiple-order-management.php (modified) (2 diffs)
-
trunk/readme.MD (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
emw-multiple-order-management/trunk/CHANGELOG.md
r3344012 r3344028 2 2 3 3 All notable changes to this plugin will be documented in this file. 4 5 ## [1.0.1] - 2025-08-046 ### Fixed7 - Corrected plugin author URI and plugin URL to avoid 404 errors.8 - Added proper nonce verification and user capability checks to AJAX requests.9 - Replaced direct file writes in plugin folder with use of the WordPress uploads directory for logs.10 - Updated all function, class, and option names to use unique prefixes avoiding conflicts.11 - Enqueued all JavaScript and CSS files correctly using WordPress enqueue functions.12 - Removed disallowed files such as log files from the plugin package.13 - Added the WordPress.org username to the Contributors list in readme.txt.14 - Addressed trademark warning by clarifying use of “WP” in plugin name.15 - Fixed menu slug and admin page slugs to use unique, non-generic prefixes.16 17 ### Security18 - Improved input sanitization and validation for all user inputs.19 - Secured AJAX endpoints with nonce and permission checks.20 21 ---22 4 23 5 ## [1.0.0] - 2025-07-22 -
emw-multiple-order-management/trunk/emw-multiple-order-management.php
r3344025 r3344028 3 3 * Plugin Name: Multiple Order Management For WooCommerce 4 4 * Description: A plugin to manage and link multiple WooCommerce orders based on custom criteria. 5 * Version: 1.0. 15 * Version: 1.0.0 6 6 * Author: Kiran M S 7 7 * Author URI: https://profiles.wordpress.org/kiranms1996/ … … 21 21 * Define plugin constants. 22 22 */ 23 define( 'EMW_MOM_VERSION', '1.0. 1' );23 define( 'EMW_MOM_VERSION', '1.0.0' ); 24 24 define( 'EMW_MOM_PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); 25 25 define( 'EMW_MOM_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); -
emw-multiple-order-management/trunk/readme.MD
r3344026 r3344028 1 1 === Multiple Order Management For WooCommerce === 2 2 Contributors: kiranms1996 3 Tags: multiple order, woocommerce, order management, link orders, multiple orders, e-commerce, woo, order, multiple, wordpress, plugins,3 Tags: multiple, order, management, link orders, woocommerce 4 4 Requires at least: 5.0 5 5 Tested up to: 6.8 6 Stable tag: 1.0. 16 Stable tag: 1.0.0 7 7 Requires PHP: 7.2 8 8 License: GPLv2 or later
Note: See TracChangeset
for help on using the changeset viewer.