mirror of
https://github.com/10h30/ultimatemember.git
synced 2026-07-11 18:56:10 +09:00
- prepared to release;
This commit is contained in:
+17
-1
@@ -1,11 +1,12 @@
|
||||
== Changelog ==
|
||||
|
||||
= 2.8.6 April xx, 2024 =
|
||||
= 2.8.6 May 22, 2024 =
|
||||
|
||||
* Enhancements:
|
||||
|
||||
- Added: Member Directory > Admin Filtering supports datepicker and timepicker filter-types with only "From" or "To" filled value
|
||||
- Added: Ability to customize modal templates upload-single.php and view-photo.php
|
||||
- Added: New FontAwesome library. Version 6.5.2
|
||||
|
||||
* Bugfixes:
|
||||
|
||||
@@ -14,6 +15,21 @@
|
||||
- Fixed: YouTube validation when field value is empty
|
||||
- Fixed: Social URLs sanitizing where user can put his social username (e.g. Instagram, Facebook)
|
||||
- Fixed: Using only published forms and member directories IDs on predefined pages installation
|
||||
- Fixed: Member Directory before query hook when custom meta table is active
|
||||
- Fixed: Unique email validation
|
||||
- Fixed: Displaying asterisk on the Profile > View Mode
|
||||
- Fixed: PHP errors while upgrade from 1.3.x version
|
||||
- Fixed: Rating field view
|
||||
- Fixed: Sorting by last login value when "Hide my last login" is set
|
||||
- Fixed: PHP errors while uploading files
|
||||
- Fixed: Parsing error on the license activation
|
||||
|
||||
* Templates required update:
|
||||
|
||||
- Renamed templates/modal/um_upload_single.php → templates/modal/upload-single.php
|
||||
- Renamed templates/modal/um_view_photo.php → templates/modal/view-photo.php
|
||||
|
||||
* Cached and optimized/minified assets(JS/CSS) must be flushed/re-generated after upgrade
|
||||
|
||||
= 2.8.5: April 9, 2024 =
|
||||
|
||||
|
||||
@@ -41,7 +41,7 @@ class Site_Health {
|
||||
}
|
||||
|
||||
$first_activation_date = get_option( 'um_first_activation_date', false );
|
||||
if ( ! empty( $first_activation_date ) && $first_activation_date < 1713342395 ) {
|
||||
if ( ! empty( $first_activation_date ) && $first_activation_date < 1716336000 ) {
|
||||
$tests['direct']['um_outdated_icons'] = array(
|
||||
'label' => esc_html__( 'Are the icons in Ultimate Member Forms and Settings out of date?', 'ultimate-member' ),
|
||||
'test' => array( $this, 'outdated_icons_test' ),
|
||||
|
||||
@@ -559,7 +559,7 @@ if ( ! class_exists( 'um\admin\core\Admin_Forms' ) ) {
|
||||
$first_activation_date = get_option( 'um_first_activation_date', false );
|
||||
|
||||
// @todo new version
|
||||
if ( empty( $first_activation_date ) || $first_activation_date >= 1713342395 || empty( $value ) || array_key_exists( $value, $um_icons_list ) ) {
|
||||
if ( empty( $first_activation_date ) || $first_activation_date >= 1716336000 || empty( $value ) || array_key_exists( $value, $um_icons_list ) ) {
|
||||
$html .= '<select ' . $name_attr . ' ' . $id_attr . ' class="um-icon-select-field" data-placeholder="' . esc_attr__( 'Select Icon', 'ultimate-member' ) . '" ><option value="">' . esc_html__( 'Select Icon', 'ultimate-member' ) . '</option>';
|
||||
if ( ! empty( $value ) && array_key_exists( $value, $um_icons_list ) ) {
|
||||
$html .= '<option ' . $value_attr . ' selected>' . esc_html( $um_icons_list[ $value ]['label'] ) . '</option>';
|
||||
|
||||
@@ -1569,7 +1569,7 @@ if ( ! class_exists( 'um\admin\core\Admin_Metabox' ) ) {
|
||||
$wrapper_classes = implode( ' ', $wrapper_classes );
|
||||
|
||||
// @todo new version
|
||||
if ( empty( $first_activation_date ) || $first_activation_date >= 1713342395 || empty( $this->edit_mode_value ) || array_key_exists( $this->edit_mode_value, $um_icons_list ) ) {
|
||||
if ( empty( $first_activation_date ) || $first_activation_date >= 1716336000 || empty( $this->edit_mode_value ) || array_key_exists( $this->edit_mode_value, $um_icons_list ) ) {
|
||||
?>
|
||||
<p class="<?php echo esc_attr( $wrapper_classes ); ?>">
|
||||
<label for="_icon"><?php esc_html_e( 'Icon', 'ultimate-member' ); ?> <?php UM()->tooltip( __( 'Select an icon to appear in the field. Leave blank if you do not want an icon to show in the field.', 'ultimate-member' ) ); ?></label>
|
||||
|
||||
@@ -6,7 +6,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
||||
|
||||
$first_activation_date = get_option( 'um_first_activation_date', false );
|
||||
// @todo new version
|
||||
if ( ! empty( $first_activation_date ) && $first_activation_date < 1713342395 ) {
|
||||
if ( ! empty( $first_activation_date ) && $first_activation_date < 1716336000 ) {
|
||||
?>
|
||||
<div id="UM_fonticons" style="display:none">
|
||||
|
||||
|
||||
+17
-3
@@ -6,7 +6,7 @@ Tags: community, member, membership, user-profile, user-registration
|
||||
Requires PHP: 5.6
|
||||
Requires at least: 5.5
|
||||
Tested up to: 6.5
|
||||
Stable tag: 2.8.5
|
||||
Stable tag: 2.8.6
|
||||
License: GPLv3
|
||||
License URI: http://www.gnu.org/licenses/gpl-3.0.txt
|
||||
|
||||
@@ -166,13 +166,13 @@ No specific extensions are needed. But we highly recommended keep active these P
|
||||
|
||||
IMPORTANT: PLEASE UPDATE THE PLUGIN TO AT LEAST VERSION 2.6.7 IMMEDIATELY. VERSION 2.6.7 PATCHES SECURITY PRIVILEGE ESCALATION VULNERABILITY. PLEASE SEE [THIS ARTICLE](https://docs.ultimatemember.com/article/1866-security-incident-update-and-recommended-actions) FOR MORE INFORMATION
|
||||
|
||||
= 2.8.6 2024-04-xx =
|
||||
= 2.8.6 2024-05-22 =
|
||||
|
||||
**Enhancements**
|
||||
|
||||
* Added: Member Directory > Admin Filtering supports datepicker and timepicker filter-types with only "From" or "To" filled value
|
||||
* Added: Ability to customize modal templates upload-single.php and view-photo.php
|
||||
* Added: New FA. Find this string `1713342395` and change to the current time of the version release
|
||||
* Added: New FontAwesome library. Version 6.5.2
|
||||
|
||||
**Bugfixes**
|
||||
|
||||
@@ -182,6 +182,20 @@ IMPORTANT: PLEASE UPDATE THE PLUGIN TO AT LEAST VERSION 2.6.7 IMMEDIATELY. VERSI
|
||||
* Fixed: Social URLs sanitizing where user can put his social username (e.g. Instagram, Facebook)
|
||||
* Fixed: Using only published forms and member directories IDs on predefined pages installation
|
||||
* Fixed: Member Directory before query hook when custom meta table is active
|
||||
* Fixed: Unique email validation
|
||||
* Fixed: Displaying asterisk on the Profile > View Mode
|
||||
* Fixed: PHP errors while upgrade from 1.3.x version
|
||||
* Fixed: Rating field view
|
||||
* Fixed: Sorting by last login value when "Hide my last login" is set
|
||||
* Fixed: PHP errors while uploading files
|
||||
* Fixed: Parsing error on the license activation
|
||||
|
||||
**Templates required update**
|
||||
|
||||
* Renamed templates/modal/um_upload_single.php → templates/modal/upload-single.php
|
||||
* Renamed templates/modal/um_view_photo.php → templates/modal/view-photo.php
|
||||
|
||||
**Cached and optimized/minified assets(JS/CSS) must be flushed/re-generated after upgrade**
|
||||
|
||||
= 2.8.5 2024-04-09 =
|
||||
|
||||
|
||||
Reference in New Issue
Block a user