in the meantime you can edit this file docs-rights.php and change line 60 to return false;
function mdocs_check_post_rights($the_mdoc) {
global $current_user;
if(empty($current_user->roles)) $current_user->roles[0] = 'none';
$hide_all_post = get_option('mdocs-hide-all-posts');
$hide_all_post_non_members = get_option('mdocs-hide-all-posts-non-members');
$mdocs_view_private = get_option('mdocs-view-private');
$post_status = get_post_status($the_mdoc['parent']);
$is_allow = false;
// ADMINS GET FULL RIGHTS FOR EVERY FILE
if(current_user_can( 'manage_options' )) $is_allowed = true;
// OWNER RIGHTS
if($current_user->user_login == $the_mdoc['owner']) $is_allowed = true;
// VIEW PRIVATE POSTS
foreach($mdocs_view_private as $index => $role) {
if(in_array($index, $current_user->roles)) { $is_allow = true; break; }
}
// PUBLIC POST ONLY
if($post_status == 'publish') {
// HIDE ALL POSTS
if($hide_all_post == false && $hide_all_post_non_members == false) $is_allow = true;
// HIDE ALL POST NON MEMBERS
if(is_user_logged_in() == true && $hide_all_post_non_members == true) $is_allow = true;
}
return false;
}