Skip to content

Commit

Permalink
Version 2.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
benhuson committed Jan 10, 2019
1 parent c243960 commit efe8e26
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 4 deletions.
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,19 @@ This project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [2.2.3] - 2019-01-10

### Fixed
- Restrict REST-API-access only if password protection is active.

### Added
- Added viewport meta tag to login page.
- Added `password_protected_show_login` filter.

### Changed
- Cookie name is not editable in the admin so display just for reference.
- Use default WordPress text domain for “Remember Me” and “Log In” buttons.

## [2.2.2] - 2018-05-29

### Changed
Expand Down Expand Up @@ -199,7 +212,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
### Added
- First Release. If you spot any bugs or issues please [log them here](https://github.com/benhuson/password-protected/issues).

[Unreleased]: https://github.com/benhuson/password-protected/compare/2.2.2...HEAD
[Unreleased]: https://github.com/benhuson/password-protected/compare/2.2.3...HEAD
[2.2.3]: https://github.com/benhuson/password-protected/compare/2.2.2...2.2.3
[2.2.2]: https://github.com/benhuson/password-protected/compare/2.2.1...2.2.2
[2.2.1]: https://github.com/benhuson/password-protected/compare/2.2...2.2.1
[2.2]: https://github.com/benhuson/password-protected/compare/2.1...2.2
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,9 @@ More instructions can be found at [wp-translations.org](http://wp-translations.o
Upgrade Notice
--------------

### 2.2.3
Restrict REST-API-access only if password protection is active. Added viewport meta tag to login page.

### 2.2.2
Fix REST option and always allow access to REST API for logged in users. Change locked admin bar icon to green.

Expand Down
4 changes: 2 additions & 2 deletions password-protected.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Plugin Name: Password Protected
Plugin URI: https://wordpress.org/plugins/password-protected/
Description: A very simple way to quickly password protect your WordPress site with a single password. Please note: This plugin does not restrict access to uploaded files and images and does not work with some caching setups.
Version: 2.2.2
Version: 2.2.3
Author: Ben Huson
Text Domain: password-protected
Author URI: http://github.com/benhuson/password-protected/
Expand Down Expand Up @@ -42,7 +42,7 @@

class Password_Protected {

var $version = '2.2.2';
var $version = '2.2.3';
var $admin = null;
var $errors = null;

Expand Down
12 changes: 11 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Tags: password, protect, password protect, login
Requires at least: 3.9
Tested up to: 4.9.6
Requires PHP: 5.6
Stable tag: 2.2.2
Stable tag: 2.2.3
License: GPLv2 or later

A very simple way to quickly password protect your WordPress site with a single password.
Expand Down Expand Up @@ -82,6 +82,13 @@ More instructions can be found at [wp-translations.org](http://wp-translations.o

== Changelog ==

= 2.2.3 =
- Restrict REST-API-access only if password protection is active.
- Added viewport meta tag to login page.
- Added `password_protected_show_login` filter.
- Cookie name is not editable in the admin so display just for reference.
- Use default WordPress text domain for “Remember Me” and “Log In” buttons.

= 2.2.2 =
- Change locked admin bar icon to green.
- Fix REST option and always allow access to REST API for logged in users.
Expand Down Expand Up @@ -199,6 +206,9 @@ More instructions can be found at [wp-translations.org](http://wp-translations.o

== Upgrade Notice ==

= 2.2.3 =
Restrict REST-API-access only if password protection is active. Added viewport meta tag to login page.

= 2.2.2 =
Fix REST option and always allow access to REST API for logged in users. Change locked admin bar icon to green.

Expand Down

0 comments on commit efe8e26

Please sign in to comment.