You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Improvement: rewrite the way the plugin loads file, which allows developers to include the plugin into themes/plugins simply by include the main file. The new loading mechanism also uses autoloading feature which prevents loading files twice and saves memory.
Improvement: rewrite user, post, taxonomy fields using the same codebase as they're native WordPress objects and sharing similar options. Also changes the syntax of query parameters for these fields (old syntax still works). Please see docs for details.
Improvement: add srcset in the returned value of helper function for image fields
Improvement: better sanitize value for url field
Improvement: prevent issues with dashes in field types
Improvement: remove redundant value in checkbox
Improvement: update CSS for date, time fields
Improvement: select2 now updated to 4.0.1
Improvement: optimize code for file_advanced and image_advanced fields which now submit array of values when saving instead of single CSV value
Improvement: add collapse option to checkbox_list and checkbox_tree in user, taxonomy, post fields which prevents plugin save parent values.
Improvement: secure password field so it is no longer saved in plain text. To check if a password matches the hash, please use wp_check_password.
Improvement: change the output of color field in the helper function. Now it shows the color instead of hex value.
Improvement: add color:change and color:clear JavaScript event for detecting changes in color field.
Improvement: refactor code for better structure and security
Fix: rewrite the JavaScript for cloning which causes bugs for date field.