Skip to content

Commit

Permalink
Prepared for v2.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sohelamin committed Jan 12, 2017
1 parent b709176 commit cdf4fba
Show file tree
Hide file tree
Showing 8 changed files with 301 additions and 157 deletions.
10 changes: 9 additions & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,14 @@ module.exports = function(grunt) {
}
},

uglify: {
minify: {
files: {
'<%= dirs.js %>/frontend-form.min.js': ['<%= dirs.js %>/frontend-form.js'],
}
}
},

watch: {
less: {
files: ['<%= dirs.css %>/*.less'],
Expand Down Expand Up @@ -178,7 +186,7 @@ module.exports = function(grunt) {
grunt.loadNpmTasks( 'grunt-ssh' );

grunt.registerTask( 'default', [
'makepot',
'makepot', 'uglify'
]);

grunt.registerTask( 'zip', [
Expand Down
2 changes: 1 addition & 1 deletion assets/js/frontend-form.min.js
100755 → 100644

Large diffs are not rendered by default.

38 changes: 38 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,41 @@
= v2.4.1 (12 January, 2017) =

* [new] Added a function `wpuf_get_countries()`
* [fix] Enable paynow url on dashboard if a new post is submitted as draft
* [fix] Invalid post id for editing
* [fix] Removed subscription trial cost
* [new] Showing messages when there is no form associated with an id or deleted or not published yet
* [new] Added dynamic action hooks `wpuf_cancel_payment_{gateway}`, `wpuf_cancel_subscription_{gateway}`
* [fix] User profile url on transaction's list
* [fix] Multistep form button & validations
* [fix] Replaced some raw query to builder
* [new] jQuery added on preview form
* [fix] Some undefined variables issue
* [fix] Replaced `$wpdb->escape()` to `$wpdb->prepare()` for depreciation
* [fix] Missing data when saving draft post
* [fix] Updated some textdomains
* [fix] `wpuf-ajax-tag-search` priv/nopriv ajax request


= v2.4 (26 October, 2016) =

* [fix] Plupload string translations
* [fix] Post expiration logic updated
* [fix] Ignore google map error when the API key is not inserted
* [fix] Upload error from admin panel, nonce issue
* [fix] reCaptcha lib constructor for strict standard
* [fix] tinyMCE and textarea word limit fixed
* [fix] User profile edit warning issue fixed for PHP 7
* [fix] Tag suggestion showing -1
* [fix] Showing -1 in case of unlimited remaining post count
* [fix] Google map on a multi-step section
* [improved] Settings API v1.3 updated
* [improved] Added links to transaction packs in admin area
* [new] Post template feature added with simple post and WooCommerce form template
* [new] Added filter on text area editor args
* [new] Content restriction added on *pro* version


= v2.3.15 (11 August, 2016) =

* [fix] License renewal prompt fix
Expand Down
Loading

0 comments on commit cdf4fba

Please sign in to comment.