Skip to content

Commit b8e9429

Browse files
committed
2.1.1
1 parent 1b16539 commit b8e9429

File tree

6 files changed

+33
-6
lines changed

6 files changed

+33
-6
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
## Changelog ##
22

3+
*** 2.1.1 ***
4+
5+
* FIX: saving and loading selected usermeta fields works as expected.
6+
37
*** 2.1.0 ***
48

59
* Excel 2007 export option added - thanks to @reyneke-vosz - https://github.com/qstudio/export-user-data/pull/5
@@ -33,7 +37,7 @@
3337

3438
*** 1.3.0 ***
3539

36-
* Added extra data sanitization before outputting to file - thanks to Hely Shah <[email protected]> for te heads-up
40+
* Added extra data sanitization before outputting to file - thanks to Hely Shah <[email protected]> for the heads-up
3741

3842
*** 1.2.8 ***
3943

export-user-data.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/*
44
* Plugin Name: Export User Date
55
* Description: Export User data and metadata.
6-
* Version: 2.1.0
6+
* Version: 2.1.1
77
* Author: Q Studio
88
* Author URI: http://qstudio.us/
99
* License: GPL2
@@ -25,7 +25,7 @@ class q_export_user_data {
2525
private static $instance = null;
2626

2727
// Plugin Settings
28-
const version = '2.1.0';
28+
const version = '2.1.1';
2929
static $debug = false;
3030
const text_domain = 'q-export-user-data'; // for translation ##
3131

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "export-user-data",
3-
"version": "2.1.0",
3+
"version": "2.1.1",
44
"description": "Q Plugins ~ Export User data and metadata",
55
"author": "Q Studio",
66
"homepage": "https://qstudio.us",

readme.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
**Requires PHP:** 6.0
66
**Requires at least:** 5.0
77
**Tested up to:** 5.5
8-
**Stable tag:** 2.1.0
8+
**Stable tag:** 2.1.1
99
**License:** GPLv2
1010

1111
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
1818

1919
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.
2020

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/categories/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+
2129
### Features ###
2230

2331
* Exports all standard users fields
2432
* Exports users meta
2533
* Exports users by role
2634
* Exports users by date range
35+
* NEW: Filters to control format, add common

readme.txt

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,25 +17,39 @@ Includes an option to export the users by role, registration date range, usermet
1717

1818
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.
1919

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/categories/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+
2028
== Features ==
2129

2230
* Exports all standard users fields
2331
* Exports users meta
2432
* Exports users by role
2533
* Exports users by date range
34+
* NEW: Filters to control format, add common
2635

2736
== Screenshots ==
2837

2938
1. Example of Admin Export View
3039

3140
== Changelog ==
3241

42+
= 2.1.1 =
43+
44+
* FIX: saving and loading selected usermeta fields works as expected.
45+
3346
= 2.1.0 =
3447

3548
* Excel 2007 export option added - thanks to @reyneke-vosz - https://github.com/qstudio/export-user-data/pull/5
3649
* Excell 2003 export option removed, as no suitable open-source library available
3750
* Validated as working in WP 5.5.0
3851
* 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.
3953

4054
= 2.0.3 =
4155

0 commit comments

Comments
 (0)