Changeset 3037063
- Timestamp:
- 02/17/2024 08:14:33 AM (2 years ago)
- Location:
- easy-invoice
- Files:
-
- 16 edited
- 1 copied
-
tags/1.1.1 (copied) (copied from easy-invoice/trunk)
-
tags/1.1.1/changelog.txt (modified) (1 diff)
-
tags/1.1.1/easy-invoice.php (modified) (2 diffs)
-
tags/1.1.1/includes/Admin/Init.php (modified) (1 diff)
-
tags/1.1.1/includes/Admin/Settings/EmailsSettings.php (modified) (1 diff)
-
tags/1.1.1/includes/Helpers/template.php (modified) (1 diff)
-
tags/1.1.1/includes/Meta/Invoice.php (modified) (2 diffs)
-
tags/1.1.1/includes/Meta/Quote.php (modified) (2 diffs)
-
tags/1.1.1/readme.txt (modified) (4 diffs)
-
trunk/changelog.txt (modified) (1 diff)
-
trunk/easy-invoice.php (modified) (2 diffs)
-
trunk/includes/Admin/Init.php (modified) (1 diff)
-
trunk/includes/Admin/Settings/EmailsSettings.php (modified) (1 diff)
-
trunk/includes/Helpers/template.php (modified) (1 diff)
-
trunk/includes/Meta/Invoice.php (modified) (2 diffs)
-
trunk/includes/Meta/Quote.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
easy-invoice/tags/1.1.1/changelog.txt
r3024036 r3037063 1 = 1.1 - 2024-01-19 = 2 * Added - Quotation feature 3 * Added - Report features 4 1 5 = 1.0.9 - 2023-12-17 = 2 6 * Fixed - WP Compatibility fixed -
easy-invoice/tags/1.1.1/easy-invoice.php
r3024036 r3037063 6 6 * Author: MatrixAddons 7 7 * Author URI: https://profiles.wordpress.org/matrixaddons 8 * Version: 1.1 8 * Version: 1.1.1 9 9 * License: GPL2+ 10 10 * License URI: https://www.gnu.org/licenses/gpl-2.0.txt … … 28 28 // Define EASY_INVOICE_VERSION. 29 29 if (!defined('EASY_INVOICE_VERSION')) { 30 define('EASY_INVOICE_VERSION', '1.1 ');30 define('EASY_INVOICE_VERSION', '1.1.1'); 31 31 } 32 32 -
easy-invoice/tags/1.1.1/includes/Admin/Init.php
r3024036 r3037063 64 64 array($this, 'dashboard'), 65 65 'dashicons-money-alt', 66 3066 28 67 67 ); 68 68 add_submenu_page( -
easy-invoice/tags/1.1.1/includes/Admin/Settings/EmailsSettings.php
r3024036 r3037063 283 283 'id' => 'easy_invoice_email_from_address', 284 284 'type' => 'text', 285 'default' => 'wordpress@' . easy_invoice_get_domain()285 'default' => get_option('admin_email'), 286 286 ), 287 287 -
easy-invoice/tags/1.1.1/includes/Helpers/template.php
r3024036 r3037063 140 140 'current_date' => date_i18n(get_option('date_format'), (int)current_time('timestamp')), 141 141 'is_was' => $is_was 142 ) 142 ), 143 $object_id 143 144 ); 144 145 } -
easy-invoice/tags/1.1.1/includes/Meta/Invoice.php
r3024036 r3037063 45 45 46 46 47 remove_meta_box('postcustom', Constant::INVOICE_POST_TYPE, 'high'); // remove custom fields metabox on easy invoice screen48 49 // Remove Astra Theme Setting Metabox for Easy Invoice Screen50 remove_meta_box('astra_settings_meta_box', Constant::INVOICE_POST_TYPE, 'high');51 52 47 add_action('post_submitbox_misc_actions', array($this, 'before_save_post')); 53 48 … … 246 241 add_action('save_post', array($self, 'save')); 247 242 add_action('admin_enqueue_scripts', array($self, 'scripts'), 10); 248 249 } 243 add_action('do_meta_boxes', array($self, 'remove_metabox'), 1, 3); 244 } 245 246 public function remove_metabox($post_type, $context, $post) 247 { 248 if ($post_type !== Constant::INVOICE_POST_TYPE) { 249 return; 250 } 251 252 remove_meta_box('astra_settings_meta_box', $post_type, $context); 253 remove_meta_box('postcustom', $post_type, $context); 254 255 } 256 250 257 251 258 } -
easy-invoice/tags/1.1.1/includes/Meta/Quote.php
r3024036 r3037063 50 50 51 51 52 remove_meta_box('postcustom', Constant::QUOTE_POST_TYPE, 'high'); // remove custom fields metabox on easy invoice screen53 54 // Remove Astra Theme Setting Metabox for Easy Invoice Screen55 remove_meta_box('astra_settings_meta_box', Constant::QUOTE_POST_TYPE, 'high');56 57 52 add_action('post_submitbox_misc_actions', array($this, 'before_save_post')); 58 53 … … 272 267 add_action('save_post', array($self, 'save')); 273 268 add_action('admin_enqueue_scripts', array($self, 'scripts'), 10); 274 275 } 276 269 add_action('do_meta_boxes', array($self, 'remove_metabox'), 1, 3); 270 } 271 272 public function remove_metabox($post_type, $context, $post) 273 { 274 if ($post_type !== Constant::QUOTE_POST_TYPE) { 275 return; 276 } 277 278 remove_meta_box('astra_settings_meta_box', $post_type, $context); 279 remove_meta_box('postcustom', $post_type, $context); 280 281 } 277 282 } 278 283 -
easy-invoice/tags/1.1.1/readme.txt
r3024036 r3037063 1 === Easy Invoice - WordPress Invoice Plugin, Invoices for WordPress, Quotation for WordPress ===1 === Easy Invoice - WordPress Invoice Plugin, PDF Invoice, Quotation for WordPress === 2 2 Contributors: MatrixAddons 3 3 Tags: invoice, pdf invoice, quotes, wordpress invoice … … 5 5 Tested up to: 6.4 6 6 Requires PHP: 5.6 7 Stable tag: 1.1 7 Stable tag: 1.1.1 8 8 License: GPLv3 9 9 License URI: https://opensource.org/licenses/GPL-3.0 … … 28 28 * Unlimited Invoices & Quotes Creation 29 29 * Client & Email option 30 * Invoice Download & PDF generation 30 * Invoice Download & PDF generation & PDF invoice 31 31 * Tax Option 32 32 * Discount on invoice … … 95 95 == Changelog == 96 96 97 = 1.1 - 2024-01-19=98 * Added - Quotation feature99 * Added - Report features97 = 1.1.1 - 2024-02-17 = 98 * Fixed - Astra Compatibility fixed 99 * Added - Minor fixes -
easy-invoice/trunk/changelog.txt
r3024036 r3037063 1 = 1.1 - 2024-01-19 = 2 * Added - Quotation feature 3 * Added - Report features 4 1 5 = 1.0.9 - 2023-12-17 = 2 6 * Fixed - WP Compatibility fixed -
easy-invoice/trunk/easy-invoice.php
r3024036 r3037063 6 6 * Author: MatrixAddons 7 7 * Author URI: https://profiles.wordpress.org/matrixaddons 8 * Version: 1.1 8 * Version: 1.1.1 9 9 * License: GPL2+ 10 10 * License URI: https://www.gnu.org/licenses/gpl-2.0.txt … … 28 28 // Define EASY_INVOICE_VERSION. 29 29 if (!defined('EASY_INVOICE_VERSION')) { 30 define('EASY_INVOICE_VERSION', '1.1 ');30 define('EASY_INVOICE_VERSION', '1.1.1'); 31 31 } 32 32 -
easy-invoice/trunk/includes/Admin/Init.php
r3024036 r3037063 64 64 array($this, 'dashboard'), 65 65 'dashicons-money-alt', 66 3066 28 67 67 ); 68 68 add_submenu_page( -
easy-invoice/trunk/includes/Admin/Settings/EmailsSettings.php
r3024036 r3037063 283 283 'id' => 'easy_invoice_email_from_address', 284 284 'type' => 'text', 285 'default' => 'wordpress@' . easy_invoice_get_domain()285 'default' => get_option('admin_email'), 286 286 ), 287 287 -
easy-invoice/trunk/includes/Helpers/template.php
r3024036 r3037063 140 140 'current_date' => date_i18n(get_option('date_format'), (int)current_time('timestamp')), 141 141 'is_was' => $is_was 142 ) 142 ), 143 $object_id 143 144 ); 144 145 } -
easy-invoice/trunk/includes/Meta/Invoice.php
r3024036 r3037063 45 45 46 46 47 remove_meta_box('postcustom', Constant::INVOICE_POST_TYPE, 'high'); // remove custom fields metabox on easy invoice screen48 49 // Remove Astra Theme Setting Metabox for Easy Invoice Screen50 remove_meta_box('astra_settings_meta_box', Constant::INVOICE_POST_TYPE, 'high');51 52 47 add_action('post_submitbox_misc_actions', array($this, 'before_save_post')); 53 48 … … 246 241 add_action('save_post', array($self, 'save')); 247 242 add_action('admin_enqueue_scripts', array($self, 'scripts'), 10); 248 249 } 243 add_action('do_meta_boxes', array($self, 'remove_metabox'), 1, 3); 244 } 245 246 public function remove_metabox($post_type, $context, $post) 247 { 248 if ($post_type !== Constant::INVOICE_POST_TYPE) { 249 return; 250 } 251 252 remove_meta_box('astra_settings_meta_box', $post_type, $context); 253 remove_meta_box('postcustom', $post_type, $context); 254 255 } 256 250 257 251 258 } -
easy-invoice/trunk/includes/Meta/Quote.php
r3024036 r3037063 50 50 51 51 52 remove_meta_box('postcustom', Constant::QUOTE_POST_TYPE, 'high'); // remove custom fields metabox on easy invoice screen53 54 // Remove Astra Theme Setting Metabox for Easy Invoice Screen55 remove_meta_box('astra_settings_meta_box', Constant::QUOTE_POST_TYPE, 'high');56 57 52 add_action('post_submitbox_misc_actions', array($this, 'before_save_post')); 58 53 … … 272 267 add_action('save_post', array($self, 'save')); 273 268 add_action('admin_enqueue_scripts', array($self, 'scripts'), 10); 274 275 } 276 269 add_action('do_meta_boxes', array($self, 'remove_metabox'), 1, 3); 270 } 271 272 public function remove_metabox($post_type, $context, $post) 273 { 274 if ($post_type !== Constant::QUOTE_POST_TYPE) { 275 return; 276 } 277 278 remove_meta_box('astra_settings_meta_box', $post_type, $context); 279 remove_meta_box('postcustom', $post_type, $context); 280 281 } 277 282 } 278 283 -
easy-invoice/trunk/readme.txt
r3024036 r3037063 1 === Easy Invoice - WordPress Invoice Plugin, Invoices for WordPress, Quotation for WordPress ===1 === Easy Invoice - WordPress Invoice Plugin, PDF Invoice, Quotation for WordPress === 2 2 Contributors: MatrixAddons 3 3 Tags: invoice, pdf invoice, quotes, wordpress invoice … … 5 5 Tested up to: 6.4 6 6 Requires PHP: 5.6 7 Stable tag: 1.1 7 Stable tag: 1.1.1 8 8 License: GPLv3 9 9 License URI: https://opensource.org/licenses/GPL-3.0 … … 28 28 * Unlimited Invoices & Quotes Creation 29 29 * Client & Email option 30 * Invoice Download & PDF generation 30 * Invoice Download & PDF generation & PDF invoice 31 31 * Tax Option 32 32 * Discount on invoice … … 95 95 == Changelog == 96 96 97 = 1.1 - 2024-01-19=98 * Added - Quotation feature99 * Added - Report features97 = 1.1.1 - 2024-02-17 = 98 * Fixed - Astra Compatibility fixed 99 * Added - Minor fixes
Note: See TracChangeset
for help on using the changeset viewer.