-
Notifications
You must be signed in to change notification settings - Fork 0
/
change_log.txt
136 lines (114 loc) · 6.35 KB
/
change_log.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
------------------------------------------------------------
Version 1.0
- Ported from Paypal to Payer
Changelog from Paypal plugin:
------------------------------------------------------------
Version 1.5
- Added support for negative line items.
- Fixed error message which still referred to Donation fields
- Added new hook: "gform_paypal_get_feeds", allows the filtering of return configuration feeds
- Updated logging to use the GF Logging plugin
- Fixed issue with "business" variable not being sent via the IPN message
- Added new conditional logic options (greater than, less than, contains starts with, ends with) and support for other conditional fields
- Fixed notices
- Added ability to edit payment status when not set to Approved and not a subscription
- Added ability to edit payment details (amount, transaction id, date) for all payments types
------------------------------------------------------------
Version 1.4
- Added additional log messages
- Increased timeout value used when sending IPN message to PayPal for validation
- Added feed_id and gateway type to entry meta to facilitate integration with other Add-Ons
- Fixed notice
- Added logging support
- Added support for multiple feeds to be created for a form. Feed to be executed will be determined by the configured Feed Condition when the form is submitted
- Fixed issue where RG_CURRENT_PAGE constant was not available when GF is deactivated
- Updated get_product_query_string() to include quantity when calculating the total
- Fixed issue with drop down values being displayed on PayPal pages, instead of text
- Added function rgars() if it does not already exist
------------------------------------------------------------
Version 1.3.1
- Added function rgars() if it does not already exist
------------------------------------------------------------
Version 1.3
- Fixed issue with delay notification and delay post settings not behaving correctly when paypal condition is not met
- Fixed notice messages
- Changed PayPal request to add charset=UTF-8 variable
- Added currency.js file to remove dependency on script from Gravity Forms
- Fixed issue on validation that failed when emails had extra blank spaces
- Added support for sending product fields to PayPal when feed is a donation
- Added support for using Form Total as an option for the recurring amount
- Changed CURL's setting to disable SSL peer validation
- Fixed UI issue on feeds page that displayed the "Add New" button when PayPal was not configured
- Fixed issue with notification settings not displaying the saved values correctly
------------------------------------------------------------
Version 1.2
- Cleaned up notices
- Fixed issue when using condition on a field with multiple single quote characters in the label
- Fixed issue when creating a feed using forms with HTML markup in field labels
- Fixed database index error when upgrading plugin
------------------------------------------------------------
Version 1.1.1
- Cleaned up Notice debug messages
------------------------------------------------------------
Version 1.1
- Fixed issue with delay notification hooks causing emails to be sent in the wrong time when the "send email after payment is received" option is enabled
------------------------------------------------------------
Version 1.0.beta6.2
- Added "gform_paypal_config_validation" hook to validate custom options created for the PayPal feed
- Updated PayPal config validation code to support muliple validation errors
- Renamed "gforms_paypal_save_config" to "gform_paypal_save_config"
- Removed extraneous code
------------------------------------------------------------
Version 1.0.beta6.1
- Added a hook to allow users to modify the query string sent to PayPal: gform_paypal_query
add_filter("gform_paypal_query_12", "update_paypal_query", 10, 3);
function update_paypal_query($query_string, $form, $entry){
return $query_string;
}
- Added "Cancel" button to the Edit page
------------------------------------------------------------
Version 1.0.beta6
- Fixed issue with thank you page displaying "Oops, could not locate your form" message when coming back from Paypal.
- Fixed issue with IPN not locating entry properly
------------------------------------------------------------
Version 1.0.beta5
- Fixed issue where recurring times were not reflecting changes made to PayPal feed
- Defaulting invoice id to blank. It can be specified if needed via the gform_paypal_invoice hook
- Fixed issue where recurring times were not getting sent to paypal
------------------------------------------------------------
Version 1.0.beta4
- Changed invoice number so that is has a unique number appended to it.
- Added a hook to allow users to change the invoice number
add_filter("gform_paypal_invoice", "change_invoice", 10, 3);
function change_invoice($invoice_id, $form, $entry){
return $entry["id"];
}
-----------------------------------------------------------
Version 1.0.beta3
- Added javascript form object as a parameter for the "paypalFormSelected" jQuery action
-----------------------------------------------------------
Version 1.0.beta2
- Added condition so that PayPal can be bypassed based on selected values in the form
- Bypassing PayPal if there are no products selected
-----------------------------------------------------------
Version 0.9
- displaying summary boxes even when graph is empty
- added disclaimer for free trials and no payments
- fixed issue with double fulfillment for subscriptions with paid trials
-----------------------------------------------------------
Version 0.8
- added transaction table and modified graph to pull data from it
-----------------------------------------------------------
Version 0.7
- added suppport for shipping field
-----------------------------------------------------------
Version 0.6
- added option to change post status after subscription is cancelled
-----------------------------------------------------------
Version 0.5
- added graphical stats page
- added link to entries page
-----------------------------------------------------------
Version 0.4
- added tooltips to admin page
- implemented confirmation when returning from paypal