Version Description
- FIX: saving and loading selected usermeta fields works as expected.
Download this release
Release Info
Developer | qlstudio |
Plugin | Export User Data |
Version | 2.1.1 |
Comparing to | |
See all releases |
Code changes from version 2.1.0 to 2.1.1
- CHANGELOG.md +5 -1
- export-user-data.php +2 -2
- package-lock.json +1 -1
- package.json +1 -1
- readme.md +10 -1
- readme.txt +14 -0
CHANGELOG.md
CHANGED
@@ -1,5 +1,9 @@
|
|
1 |
## Changelog ##
|
2 |
|
|
|
|
|
|
|
|
|
3 |
*** 2.1.0 ***
|
4 |
|
5 |
* Excel 2007 export option added - thanks to @reyneke-vosz - https://github.com/qstudio/export-user-data/pull/5
|
@@ -33,7 +37,7 @@
|
|
33 |
|
34 |
*** 1.3.0 ***
|
35 |
|
36 |
-
* Added extra data sanitization before outputting to file - thanks to Hely Shah <helyhshah@gmail.com> for
|
37 |
|
38 |
*** 1.2.8 ***
|
39 |
|
1 |
## Changelog ##
|
2 |
|
3 |
+
*** 2.1.1 ***
|
4 |
+
|
5 |
+
* FIX: saving and loading selected usermeta fields works as expected.
|
6 |
+
|
7 |
*** 2.1.0 ***
|
8 |
|
9 |
* Excel 2007 export option added - thanks to @reyneke-vosz - https://github.com/qstudio/export-user-data/pull/5
|
37 |
|
38 |
*** 1.3.0 ***
|
39 |
|
40 |
+
* Added extra data sanitization before outputting to file - thanks to Hely Shah <helyhshah@gmail.com> for the heads-up
|
41 |
|
42 |
*** 1.2.8 ***
|
43 |
|
export-user-data.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
/*
|
4 |
* Plugin Name: Export User Date
|
5 |
* Description: Export User data and metadata.
|
6 |
-
* Version: 2.1.
|
7 |
* Author: Q Studio
|
8 |
* Author URI: http://qstudio.us/
|
9 |
* License: GPL2
|
@@ -25,7 +25,7 @@ if ( ! class_exists( 'q_export_user_data' ) ) {
|
|
25 |
private static $instance = null;
|
26 |
|
27 |
// Plugin Settings
|
28 |
-
const version = '2.1.
|
29 |
static $debug = false;
|
30 |
const text_domain = 'q-export-user-data'; // for translation ##
|
31 |
|
3 |
/*
|
4 |
* Plugin Name: Export User Date
|
5 |
* Description: Export User data and metadata.
|
6 |
+
* Version: 2.1.1
|
7 |
* Author: Q Studio
|
8 |
* Author URI: http://qstudio.us/
|
9 |
* License: GPL2
|
25 |
private static $instance = null;
|
26 |
|
27 |
// Plugin Settings
|
28 |
+
const version = '2.1.1';
|
29 |
static $debug = false;
|
30 |
const text_domain = 'q-export-user-data'; // for translation ##
|
31 |
|
package-lock.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
{
|
2 |
"name": "export-user-data",
|
3 |
-
"version": "2.1.
|
4 |
"lockfileVersion": 1,
|
5 |
"requires": true
|
6 |
}
|
1 |
{
|
2 |
"name": "export-user-data",
|
3 |
+
"version": "2.1.1",
|
4 |
"lockfileVersion": 1,
|
5 |
"requires": true
|
6 |
}
|
package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
{
|
2 |
"name": "export-user-data",
|
3 |
-
"version": "2.1.
|
4 |
"description": "Q Plugins ~ Export User data and metadata",
|
5 |
"author": "Q Studio",
|
6 |
"homepage": "https://qstudio.us",
|
1 |
{
|
2 |
"name": "export-user-data",
|
3 |
+
"version": "2.1.1",
|
4 |
"description": "Q Plugins ~ Export User data and metadata",
|
5 |
"author": "Q Studio",
|
6 |
"homepage": "https://qstudio.us",
|
readme.md
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
**Requires PHP:** 6.0
|
6 |
**Requires at least:** 5.0
|
7 |
**Tested up to:** 5.5
|
8 |
-
**Stable tag:** 2.1.
|
9 |
**License:** GPLv2
|
10 |
|
11 |
Export users data and metadata to a csv or Excel file
|
@@ -18,9 +18,18 @@ Includes an option to export the users by role, registration date range, usermet
|
|
18 |
|
19 |
This plugin is designed to export user data stored in the 2 standard WordPress user data tables wp_users and wp_usermeta, if you use a plugin which stores data in its own database tables, this plugin will not export this data, without customization.
|
20 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
### Features ###
|
22 |
|
23 |
* Exports all standard users fields
|
24 |
* Exports users meta
|
25 |
* Exports users by role
|
26 |
* Exports users by date range
|
|
5 |
**Requires PHP:** 6.0
|
6 |
**Requires at least:** 5.0
|
7 |
**Tested up to:** 5.5
|
8 |
+
**Stable tag:** 2.1.1
|
9 |
**License:** GPLv2
|
10 |
|
11 |
Export users data and metadata to a csv or Excel file
|
18 |
|
19 |
This plugin is designed to export user data stored in the 2 standard WordPress user data tables wp_users and wp_usermeta, if you use a plugin which stores data in its own database tables, this plugin will not export this data, without customization.
|
20 |
|
21 |
+
In version 2.1.0 we added some additional filters and API controls which control the returned value formats, pulling data from custom post types and builinf lists of "common" usermeta fields to export - you can read more on the [Q Studio Website](https://qstudio.us/releases/export-user-data-wordpress-plugin/)
|
22 |
+
|
23 |
+
---
|
24 |
+
|
25 |
+
For feature request and bug reports, [please use the Q Support Website](https://qstudio.us/support/topic/export-user-data/).
|
26 |
+
|
27 |
+
Please do not use the Wordpress.org forum to report bugs, as we no longer monitor or respond to questions there.
|
28 |
+
|
29 |
### Features ###
|
30 |
|
31 |
* Exports all standard users fields
|
32 |
* Exports users meta
|
33 |
* Exports users by role
|
34 |
* Exports users by date range
|
35 |
+
* NEW: Filters to control format, add common
|
readme.txt
CHANGED
@@ -17,12 +17,21 @@ Includes an option to export the users by role, registration date range, usermet
|
|
17 |
|
18 |
This plugin is designed to export user data stored in the 2 standard WordPress user data tables wp_users and wp_usermeta, if you use a plugin which stores data in its own database tables, this plugin will not export this data, without customization.
|
19 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
== Features ==
|
21 |
|
22 |
* Exports all standard users fields
|
23 |
* Exports users meta
|
24 |
* Exports users by role
|
25 |
* Exports users by date range
|
|
|
26 |
|
27 |
== Screenshots ==
|
28 |
|
@@ -30,12 +39,17 @@ This plugin is designed to export user data stored in the 2 standard WordPress u
|
|
30 |
|
31 |
== Changelog ==
|
32 |
|
|
|
|
|
|
|
|
|
33 |
= 2.1.0 =
|
34 |
|
35 |
* Excel 2007 export option added - thanks to @reyneke-vosz - https://github.com/qstudio/export-user-data/pull/5
|
36 |
* Excell 2003 export option removed, as no suitable open-source library available
|
37 |
* Validated as working in WP 5.5.0
|
38 |
* BuddyPress support removed... sorry, but this plugin now only supports exporting data from native WordPress tables
|
|
|
39 |
|
40 |
= 2.0.3 =
|
41 |
|
17 |
|
18 |
This plugin is designed to export user data stored in the 2 standard WordPress user data tables wp_users and wp_usermeta, if you use a plugin which stores data in its own database tables, this plugin will not export this data, without customization.
|
19 |
|
20 |
+
In version 2.1.0 we added some additional filters and API controls which control the returned value formats, pulling data from custom post types and builinf lists of "common" usermeta fields to export - you can read more on the [Q Studio Website](https://qstudio.us/releases/export-user-data-wordpress-plugin/)
|
21 |
+
|
22 |
+
---
|
23 |
+
|
24 |
+
For feature request and bug reports, [please use the Q Support Website](https://qstudio.us/support/topic/export-user-data/).
|
25 |
+
|
26 |
+
Please do not use the Wordpress.org forum to report bugs, as we no longer monitor or respond to questions there.
|
27 |
+
|
28 |
== Features ==
|
29 |
|
30 |
* Exports all standard users fields
|
31 |
* Exports users meta
|
32 |
* Exports users by role
|
33 |
* Exports users by date range
|
34 |
+
* NEW: Filters to control format, add common
|
35 |
|
36 |
== Screenshots ==
|
37 |
|
39 |
|
40 |
== Changelog ==
|
41 |
|
42 |
+
= 2.1.1 =
|
43 |
+
|
44 |
+
* FIX: saving and loading selected usermeta fields works as expected.
|
45 |
+
|
46 |
= 2.1.0 =
|
47 |
|
48 |
* Excel 2007 export option added - thanks to @reyneke-vosz - https://github.com/qstudio/export-user-data/pull/5
|
49 |
* Excell 2003 export option removed, as no suitable open-source library available
|
50 |
* Validated as working in WP 5.5.0
|
51 |
* BuddyPress support removed... sorry, but this plugin now only supports exporting data from native WordPress tables
|
52 |
+
* FIX: saving and loading selected usermeta fields works as expected.
|
53 |
|
54 |
= 2.0.3 =
|
55 |
|