Version Description
Download this release
Release Info
Developer | nsinelnikov |
Plugin | Ultimate Member – User Profile & Membership Plugin |
Version | 2.0.31 |
Comparing to | |
See all releases |
Code changes from version 2.0.30 to 2.0.31
- includes/core/class-enqueue.php +13 -8
- languages/ultimate-member-en_US.mo +0 -0
- languages/ultimate-member-en_US.po +9 -9
- readme.txt +6 -1
- ultimate-member.php +1 -1
includes/core/class-enqueue.php
CHANGED
@@ -88,17 +88,15 @@ if ( ! class_exists( 'um\core\Enqueue' ) ) {
|
|
88 |
wp_register_script( 'um_fileupload', $this->js_baseurl . 'um-fileupload' . $this->suffix . '.js', array( 'jquery', 'um_jquery_form' ), ultimatemember_version, true );
|
89 |
|
90 |
|
91 |
-
$
|
|
|
|
|
|
|
92 |
// load a localized version for date/time
|
93 |
$locale = get_locale();
|
94 |
if ( $locale && file_exists( um_path . 'assets/js/pickadate/translations/' . $locale . '.js' ) ) {
|
95 |
-
wp_register_script('um_datetime_locale', um_url . 'assets/js/pickadate/translations/' . $locale . '.js', array( 'jquery' ), ultimatemember_version, true );
|
96 |
-
$datetime_deps[] = 'um_datetime_locale';
|
97 |
}
|
98 |
-
wp_register_script( 'um_datetime', $this->js_baseurl . 'pickadate/picker.js', $datetime_deps, ultimatemember_version, true );
|
99 |
-
wp_register_script( 'um_datetime_date', $this->js_baseurl . 'pickadate/picker.date.js', array( 'jquery', 'um_datetime' ), ultimatemember_version, true );
|
100 |
-
wp_register_script( 'um_datetime_time', $this->js_baseurl . 'pickadate/picker.time.js', array( 'jquery', 'um_datetime' ), ultimatemember_version, true );
|
101 |
-
wp_register_script( 'um_datetime_legacy', $this->js_baseurl . 'pickadate/legacy.js', array( 'jquery', 'um_datetime' ), ultimatemember_version, true );
|
102 |
|
103 |
wp_register_script( 'um_tipsy', $this->js_baseurl . 'um-tipsy' . $this->suffix . '.js', array( 'jquery' ), ultimatemember_version, true );
|
104 |
wp_register_script( 'um_raty', $this->js_baseurl . 'um-raty' . $this->suffix . '.js', array( 'jquery' ), ultimatemember_version, true );
|
@@ -110,7 +108,7 @@ if ( ! class_exists( 'um\core\Enqueue' ) ) {
|
|
110 |
wp_register_script('um_functions', $this->js_baseurl . 'um-functions' . $this->suffix . '.js', array( 'jquery', 'jquery-masonry', 'wp-util', 'um_scrollbar' ), ultimatemember_version, true );
|
111 |
wp_register_script( 'um-gdpr', $this->js_baseurl . 'um-gdpr' . $this->suffix . '.js', array( 'jquery' ), ultimatemember_version, false );
|
112 |
wp_register_script('um_conditional', $this->js_baseurl . 'um-conditional' . $this->suffix . '.js', array( 'jquery' ), ultimatemember_version, true );
|
113 |
-
wp_register_script('um_scripts', $this->js_baseurl . 'um-scripts' . $this->suffix . '.js', array( 'jquery', 'wp-util', 'um_conditional' ), ultimatemember_version, true );
|
114 |
/**
|
115 |
* UM hook
|
116 |
*
|
@@ -327,6 +325,13 @@ if ( ! class_exists( 'um\core\Enqueue' ) ) {
|
|
327 |
wp_enqueue_script('um_datetime_date');
|
328 |
wp_enqueue_script('um_datetime_time');
|
329 |
wp_enqueue_script('um_datetime_legacy');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
330 |
wp_enqueue_style('um_datetime');
|
331 |
wp_enqueue_style('um_datetime_date');
|
332 |
wp_enqueue_style('um_datetime_time');
|
88 |
wp_register_script( 'um_fileupload', $this->js_baseurl . 'um-fileupload' . $this->suffix . '.js', array( 'jquery', 'um_jquery_form' ), ultimatemember_version, true );
|
89 |
|
90 |
|
91 |
+
wp_register_script( 'um_datetime', $this->js_baseurl . 'pickadate/picker.js', array( 'jquery' ), ultimatemember_version, true );
|
92 |
+
wp_register_script( 'um_datetime_date', $this->js_baseurl . 'pickadate/picker.date.js', array( 'jquery', 'um_datetime' ), ultimatemember_version, true );
|
93 |
+
wp_register_script( 'um_datetime_time', $this->js_baseurl . 'pickadate/picker.time.js', array( 'jquery', 'um_datetime' ), ultimatemember_version, true );
|
94 |
+
wp_register_script( 'um_datetime_legacy', $this->js_baseurl . 'pickadate/legacy.js', array( 'jquery', 'um_datetime' ), ultimatemember_version, true );
|
95 |
// load a localized version for date/time
|
96 |
$locale = get_locale();
|
97 |
if ( $locale && file_exists( um_path . 'assets/js/pickadate/translations/' . $locale . '.js' ) ) {
|
98 |
+
wp_register_script('um_datetime_locale', um_url . 'assets/js/pickadate/translations/' . $locale . '.js', array( 'jquery', 'um_datetime' ), ultimatemember_version, true );
|
|
|
99 |
}
|
|
|
|
|
|
|
|
|
100 |
|
101 |
wp_register_script( 'um_tipsy', $this->js_baseurl . 'um-tipsy' . $this->suffix . '.js', array( 'jquery' ), ultimatemember_version, true );
|
102 |
wp_register_script( 'um_raty', $this->js_baseurl . 'um-raty' . $this->suffix . '.js', array( 'jquery' ), ultimatemember_version, true );
|
108 |
wp_register_script('um_functions', $this->js_baseurl . 'um-functions' . $this->suffix . '.js', array( 'jquery', 'jquery-masonry', 'wp-util', 'um_scrollbar' ), ultimatemember_version, true );
|
109 |
wp_register_script( 'um-gdpr', $this->js_baseurl . 'um-gdpr' . $this->suffix . '.js', array( 'jquery' ), ultimatemember_version, false );
|
110 |
wp_register_script('um_conditional', $this->js_baseurl . 'um-conditional' . $this->suffix . '.js', array( 'jquery' ), ultimatemember_version, true );
|
111 |
+
wp_register_script('um_scripts', $this->js_baseurl . 'um-scripts' . $this->suffix . '.js', array( 'jquery', 'wp-util', 'um_conditional', 'um_datetime', 'um_datetime_date', 'um_datetime_time', 'um_datetime_legacy' ), ultimatemember_version, true );
|
112 |
/**
|
113 |
* UM hook
|
114 |
*
|
325 |
wp_enqueue_script('um_datetime_date');
|
326 |
wp_enqueue_script('um_datetime_time');
|
327 |
wp_enqueue_script('um_datetime_legacy');
|
328 |
+
|
329 |
+
// load a localized version for date/time
|
330 |
+
$locale = get_locale();
|
331 |
+
if ( $locale && file_exists( um_path . 'assets/js/pickadate/translations/' . $locale . '.js' ) ) {
|
332 |
+
wp_enqueue_script('um_datetime_locale' );
|
333 |
+
}
|
334 |
+
|
335 |
wp_enqueue_style('um_datetime');
|
336 |
wp_enqueue_style('um_datetime_date');
|
337 |
wp_enqueue_style('um_datetime_time');
|
languages/ultimate-member-en_US.mo
CHANGED
Binary file
|
languages/ultimate-member-en_US.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Ultimate Member\n"
|
4 |
-
"POT-Creation-Date: 2018-11-
|
5 |
-
"PO-Revision-Date: 2018-11-
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: en_US\n"
|
@@ -3536,8 +3536,8 @@ msgstr ""
|
|
3536 |
#: includes/core/um-actions-profile.php:554
|
3537 |
#: includes/core/um-actions-profile.php:693
|
3538 |
#: includes/core/um-actions-profile.php:726
|
3539 |
-
#: includes/core/um-actions-profile.php:
|
3540 |
-
#: includes/core/um-actions-profile.php:
|
3541 |
msgid "Cancel"
|
3542 |
msgstr ""
|
3543 |
|
@@ -3900,7 +3900,7 @@ msgid "Members"
|
|
3900 |
msgstr ""
|
3901 |
|
3902 |
#: includes/class-config.php:133 includes/class-config.php:738
|
3903 |
-
#: includes/core/um-actions-profile.php:
|
3904 |
#: includes/core/um-actions-user.php:15
|
3905 |
msgid "Logout"
|
3906 |
msgstr ""
|
@@ -6913,17 +6913,17 @@ msgstr ""
|
|
6913 |
msgid "Tell us a bit about yourself..."
|
6914 |
msgstr ""
|
6915 |
|
6916 |
-
#: includes/core/um-actions-profile.php:
|
6917 |
#, php-format
|
6918 |
msgid "This user account status is %s"
|
6919 |
msgstr ""
|
6920 |
|
6921 |
-
#: includes/core/um-actions-profile.php:
|
6922 |
-
#: includes/core/um-actions-profile.php:
|
6923 |
msgid "Edit Profile"
|
6924 |
msgstr ""
|
6925 |
|
6926 |
-
#: includes/core/um-actions-profile.php:
|
6927 |
msgid "My Account"
|
6928 |
msgstr ""
|
6929 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Ultimate Member\n"
|
4 |
+
"POT-Creation-Date: 2018-11-14 11:06+0200\n"
|
5 |
+
"PO-Revision-Date: 2018-11-14 11:06+0200\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: en_US\n"
|
3536 |
#: includes/core/um-actions-profile.php:554
|
3537 |
#: includes/core/um-actions-profile.php:693
|
3538 |
#: includes/core/um-actions-profile.php:726
|
3539 |
+
#: includes/core/um-actions-profile.php:1071
|
3540 |
+
#: includes/core/um-actions-profile.php:1078
|
3541 |
msgid "Cancel"
|
3542 |
msgstr ""
|
3543 |
|
3900 |
msgstr ""
|
3901 |
|
3902 |
#: includes/class-config.php:133 includes/class-config.php:738
|
3903 |
+
#: includes/core/um-actions-profile.php:1077
|
3904 |
#: includes/core/um-actions-user.php:15
|
3905 |
msgid "Logout"
|
3906 |
msgstr ""
|
6913 |
msgid "Tell us a bit about yourself..."
|
6914 |
msgstr ""
|
6915 |
|
6916 |
+
#: includes/core/um-actions-profile.php:905
|
6917 |
#, php-format
|
6918 |
msgid "This user account status is %s"
|
6919 |
msgstr ""
|
6920 |
|
6921 |
+
#: includes/core/um-actions-profile.php:1044
|
6922 |
+
#: includes/core/um-actions-profile.php:1075
|
6923 |
msgid "Edit Profile"
|
6924 |
msgstr ""
|
6925 |
|
6926 |
+
#: includes/core/um-actions-profile.php:1076
|
6927 |
msgid "My Account"
|
6928 |
msgstr ""
|
6929 |
|
readme.txt
CHANGED
@@ -6,7 +6,7 @@ Donate link:
|
|
6 |
Tags: community, member, membership, user-profile, user-registration
|
7 |
Requires at least: 4.7
|
8 |
Tested up to: 4.9
|
9 |
-
Stable tag: 2.0.
|
10 |
License: GNU Version 2 or Any Later Version
|
11 |
License URI: http://www.gnu.org/licenses/gpl-3.0.txt
|
12 |
|
@@ -137,6 +137,11 @@ The plugin works with popular caching plugins by automatically excluding Ultimat
|
|
137 |
|
138 |
= Important: UM2.0+ is a significant update to the code base from 1.3.88. Please make sure you take a full-site backup with restore point before updating the plugin =
|
139 |
|
|
|
|
|
|
|
|
|
|
|
140 |
= 2.0.30: November 12, 2018 =
|
141 |
|
142 |
* Bugfixes:
|
6 |
Tags: community, member, membership, user-profile, user-registration
|
7 |
Requires at least: 4.7
|
8 |
Tested up to: 4.9
|
9 |
+
Stable tag: 2.0.31
|
10 |
License: GNU Version 2 or Any Later Version
|
11 |
License URI: http://www.gnu.org/licenses/gpl-3.0.txt
|
12 |
|
137 |
|
138 |
= Important: UM2.0+ is a significant update to the code base from 1.3.88. Please make sure you take a full-site backup with restore point before updating the plugin =
|
139 |
|
140 |
+
= 2.0.31: November 14, 2018 =
|
141 |
+
|
142 |
+
* Bugfixes:
|
143 |
+
- Fixed compatibility with JS/CSS cache plugins
|
144 |
+
|
145 |
= 2.0.30: November 12, 2018 =
|
146 |
|
147 |
* Bugfixes:
|
ultimate-member.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Ultimate Member
|
4 |
Plugin URI: http://ultimatemember.com/
|
5 |
Description: The easiest way to create powerful online communities and beautiful user profiles with WordPress
|
6 |
-
Version: 2.0.
|
7 |
Author: Ultimate Member
|
8 |
Author URI: http://ultimatemember.com/
|
9 |
Text Domain: ultimate-member
|
3 |
Plugin Name: Ultimate Member
|
4 |
Plugin URI: http://ultimatemember.com/
|
5 |
Description: The easiest way to create powerful online communities and beautiful user profiles with WordPress
|
6 |
+
Version: 2.0.31
|
7 |
Author: Ultimate Member
|
8 |
Author URI: http://ultimatemember.com/
|
9 |
Text Domain: ultimate-member
|