Version Description
- WordPress 4.3 compatibility tested.
- Updated the menu position constant (string instead of number).
- Removed translation of the Groups menu title (related to a consistent appearance and would also be affected by a a core bug).
- Fixed padding for the header checkbox on the Groups and Capabilities screens.
Download this release
Release Info
Developer | itthinx |
Plugin | Groups |
Version | 1.7.2 |
Comparing to | |
See all releases |
Code changes from version 1.7.1 to 1.7.2
- css/groups_admin.css +4 -1
- groups.php +2 -2
- lib/admin/class-groups-admin.php +2 -2
- readme.txt +10 -4
css/groups_admin.css
CHANGED
@@ -118,7 +118,10 @@ div.capability.edit label {
|
|
118 |
display: inline;
|
119 |
width: 250px;
|
120 |
}
|
121 |
-
|
|
|
|
|
|
|
122 |
.groups-overview th.edit,
|
123 |
.groups-overview th.group_id,
|
124 |
.groups-overview th.remove,
|
118 |
display: inline;
|
119 |
width: 250px;
|
120 |
}
|
121 |
+
.groups-overview th.check-column,
|
122 |
+
.capabilities-overview th.check-column {
|
123 |
+
padding: 10px 0 0 3px;
|
124 |
+
}
|
125 |
.groups-overview th.edit,
|
126 |
.groups-overview th.group_id,
|
127 |
.groups-overview th.remove,
|
groups.php
CHANGED
@@ -21,7 +21,7 @@
|
|
21 |
* Plugin Name: Groups
|
22 |
* Plugin URI: http://www.itthinx.com/plugins/groups
|
23 |
* Description: Groups provides group-based user membership management, group-based capabilities and content access control.
|
24 |
-
* Version: 1.7.
|
25 |
* Author: itthinx
|
26 |
* Author URI: http://www.itthinx.com
|
27 |
* Donate-Link: http://www.itthinx.com
|
@@ -30,7 +30,7 @@
|
|
30 |
if ( !defined( 'ABSPATH' ) ) {
|
31 |
exit;
|
32 |
}
|
33 |
-
define( 'GROUPS_CORE_VERSION', '1.7.
|
34 |
define( 'GROUPS_FILE', __FILE__ );
|
35 |
if ( !defined( 'GROUPS_CORE_DIR' ) ) {
|
36 |
define( 'GROUPS_CORE_DIR', untrailingslashit( plugin_dir_path( __FILE__ ) ) );
|
21 |
* Plugin Name: Groups
|
22 |
* Plugin URI: http://www.itthinx.com/plugins/groups
|
23 |
* Description: Groups provides group-based user membership management, group-based capabilities and content access control.
|
24 |
+
* Version: 1.7.2
|
25 |
* Author: itthinx
|
26 |
* Author URI: http://www.itthinx.com
|
27 |
* Donate-Link: http://www.itthinx.com
|
30 |
if ( !defined( 'ABSPATH' ) ) {
|
31 |
exit;
|
32 |
}
|
33 |
+
define( 'GROUPS_CORE_VERSION', '1.7.2' );
|
34 |
define( 'GROUPS_FILE', __FILE__ );
|
35 |
if ( !defined( 'GROUPS_CORE_DIR' ) ) {
|
36 |
define( 'GROUPS_CORE_DIR', untrailingslashit( plugin_dir_path( __FILE__ ) ) );
|
lib/admin/class-groups-admin.php
CHANGED
@@ -33,7 +33,7 @@ class Groups_Admin {
|
|
33 |
*
|
34 |
* @var int
|
35 |
*/
|
36 |
-
const MENU_POSITION = 38.381;
|
37 |
|
38 |
/**
|
39 |
* Holds admin messages.
|
@@ -155,7 +155,7 @@ class Groups_Admin {
|
|
155 |
// main
|
156 |
$page = add_menu_page(
|
157 |
_x( 'Groups', 'page-title', GROUPS_PLUGIN_DOMAIN ),
|
158 |
-
|
159 |
GROUPS_ADMINISTER_GROUPS,
|
160 |
'groups-admin',
|
161 |
apply_filters( 'groups_add_menu_page_function', 'groups_admin_groups' ),
|
33 |
*
|
34 |
* @var int
|
35 |
*/
|
36 |
+
const MENU_POSITION = '38.381';
|
37 |
|
38 |
/**
|
39 |
* Holds admin messages.
|
155 |
// main
|
156 |
$page = add_menu_page(
|
157 |
_x( 'Groups', 'page-title', GROUPS_PLUGIN_DOMAIN ),
|
158 |
+
'Groups', // don't translate, reasons: a) Groups menu title consistency and b) http://core.trac.wordpress.org/ticket/18857 translation affects $screen->id
|
159 |
GROUPS_ADMINISTER_GROUPS,
|
160 |
'groups-admin',
|
161 |
apply_filters( 'groups_add_menu_page_function', 'groups_admin_groups' ),
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: itthinx
|
|
3 |
Donate link: http://www.itthinx.com/plugins/groups
|
4 |
Tags: access, access control, capability, capabilities, content, download, downloads, file, file access, files, group, groups, member, members, membership, memberships, paypal, permission, permissions, subscription, subscriptions, woocommerce
|
5 |
Requires at least: 4.0
|
6 |
-
Tested up to: 4.
|
7 |
-
Stable tag: 1.7.
|
8 |
License: GPLv3
|
9 |
|
10 |
Groups is an efficient and powerful solution, providing group-based user membership management, group-based capabilities and content access control.
|
@@ -181,6 +181,12 @@ See also [Groups](http://www.itthinx.com/plugins/groups/)
|
|
181 |
|
182 |
== Changelog ==
|
183 |
|
|
|
|
|
|
|
|
|
|
|
|
|
184 |
= 1.7.1 =
|
185 |
* Fixes an issue with map_meta_cap filtering where no valid post ID is provided.
|
186 |
|
@@ -477,5 +483,5 @@ Some installations wouldn't work correctly, showing no capabilities and making i
|
|
477 |
|
478 |
== Upgrade Notice ==
|
479 |
|
480 |
-
= 1.7.
|
481 |
-
This release
|
3 |
Donate link: http://www.itthinx.com/plugins/groups
|
4 |
Tags: access, access control, capability, capabilities, content, download, downloads, file, file access, files, group, groups, member, members, membership, memberships, paypal, permission, permissions, subscription, subscriptions, woocommerce
|
5 |
Requires at least: 4.0
|
6 |
+
Tested up to: 4.3
|
7 |
+
Stable tag: 1.7.2
|
8 |
License: GPLv3
|
9 |
|
10 |
Groups is an efficient and powerful solution, providing group-based user membership management, group-based capabilities and content access control.
|
181 |
|
182 |
== Changelog ==
|
183 |
|
184 |
+
= 1.7.2 =
|
185 |
+
* WordPress 4.3 compatibility tested.
|
186 |
+
* Updated the menu position constant (string instead of number).
|
187 |
+
* Removed translation of the Groups menu title (related to a consistent appearance and would also be affected by a a core bug).
|
188 |
+
* Fixed padding for the header checkbox on the Groups and Capabilities screens.
|
189 |
+
|
190 |
= 1.7.1 =
|
191 |
* Fixes an issue with map_meta_cap filtering where no valid post ID is provided.
|
192 |
|
483 |
|
484 |
== Upgrade Notice ==
|
485 |
|
486 |
+
= 1.7.2 =
|
487 |
+
This release has been tested with WordPress 4.3 and contains minor internal changes related to the Groups menu, Groups and Capabilities screens.
|