Version Description
(25 February 2021) =
- Removed the promotional notice being displayed when the folders are accessed directly.
Download this release
Release Info
Developer | tychesoftwares |
Plugin | WP Content Copy Protection |
Version | 2.0.4 |
Comparing to | |
See all releases |
Code changes from version 2.0.3 to 2.0.4
- index.php +0 -4
- readme.txt +5 -1
- wpccpl.php +4 -4
index.php
CHANGED
@@ -16,7 +16,3 @@
|
|
16 |
<center>
|
17 |
Sorry, you are not authorized to access this area ! Goodbye !
|
18 |
</center>
|
19 |
-
<br /><br />
|
20 |
-
<center>
|
21 |
-
Protect your online content with <a href="https://www.tychesoftwares.com/premium-plugins/">WP Content Copy Protection Pro</a> - The No.1 WordPress Copy Protection Plugin on the Web
|
22 |
-
</center>
|
16 |
<center>
|
17 |
Sorry, you are not authorized to access this area ! Goodbye !
|
18 |
</center>
|
|
|
|
|
|
|
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Contributors: tychesoftwares, dhruvin
|
|
4 |
Donate link: https://www.paypal.me/TycheSoftwares
|
5 |
Tags: protection, copyright, theft, no right click, content protection, image protection, image protect, copyprotect, security, copy protection, protect blog, plagiarism, duplicate, seo, context menu
|
6 |
Requires at least: 3.0
|
7 |
-
Tested up to: 5.
|
8 |
Stable tag: trunk
|
9 |
License: GPLv2 or Later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
@@ -168,6 +168,10 @@ This plugin inheritently disables right click/copy/save functions on your defaul
|
|
168 |
|
169 |
== Changelog ==
|
170 |
|
|
|
|
|
|
|
|
|
171 |
= 2.0.3 (22 December 2020) =
|
172 |
|
173 |
* Fixed an issue where Fatal error was thrown when WooCommerce was not activate
|
4 |
Donate link: https://www.paypal.me/TycheSoftwares
|
5 |
Tags: protection, copyright, theft, no right click, content protection, image protection, image protect, copyprotect, security, copy protection, protect blog, plagiarism, duplicate, seo, context menu
|
6 |
Requires at least: 3.0
|
7 |
+
Tested up to: 5.8
|
8 |
Stable tag: trunk
|
9 |
License: GPLv2 or Later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
168 |
|
169 |
== Changelog ==
|
170 |
|
171 |
+
= 2.0.4 (25 February 2021) =
|
172 |
+
|
173 |
+
* Removed the promotional notice being displayed when the folders are accessed directly.
|
174 |
+
|
175 |
= 2.0.3 (22 December 2020) =
|
176 |
|
177 |
* Fixed an issue where Fatal error was thrown when WooCommerce was not activate
|
wpccpl.php
CHANGED
@@ -5,13 +5,13 @@
|
|
5 |
* Description: WP Content Copy Protection prevents plagiarism and protects your valuable online content (such as source code, text and images) from being copied illegally. Copy methods are disabled via mouse and keyboard.
|
6 |
* Author: Tyche Softwares
|
7 |
* Author URI: https://www.tychesoftwares.com/
|
8 |
-
* Version: 2.0.
|
9 |
* Text Domain: wpccp
|
10 |
* Domain Path: /languages
|
11 |
* Tags: content, protection,
|
12 |
* Requires at least: 3.0.1
|
13 |
-
* Tested up to: 5.
|
14 |
-
* Stable tag: 2.0.
|
15 |
* License: GPLv2 or later
|
16 |
* License URI: http://www.gnu.org/licenses/gpl-2.0.html/
|
17 |
*
|
@@ -27,7 +27,7 @@ if ( ! defined( 'WPINC' ) ) {
|
|
27 |
*/
|
28 |
// Plugin version.
|
29 |
if ( ! defined( 'WPCCP_VERSION' ) ) {
|
30 |
-
define( 'WPCCP_VERSION', '2.0.
|
31 |
}
|
32 |
// Plugin Root File.
|
33 |
if ( ! defined( 'WPCCP_PLUGIN_FILE' ) ) {
|
5 |
* Description: WP Content Copy Protection prevents plagiarism and protects your valuable online content (such as source code, text and images) from being copied illegally. Copy methods are disabled via mouse and keyboard.
|
6 |
* Author: Tyche Softwares
|
7 |
* Author URI: https://www.tychesoftwares.com/
|
8 |
+
* Version: 2.0.4
|
9 |
* Text Domain: wpccp
|
10 |
* Domain Path: /languages
|
11 |
* Tags: content, protection,
|
12 |
* Requires at least: 3.0.1
|
13 |
+
* Tested up to: 5.8
|
14 |
+
* Stable tag: 2.0.4
|
15 |
* License: GPLv2 or later
|
16 |
* License URI: http://www.gnu.org/licenses/gpl-2.0.html/
|
17 |
*
|
27 |
*/
|
28 |
// Plugin version.
|
29 |
if ( ! defined( 'WPCCP_VERSION' ) ) {
|
30 |
+
define( 'WPCCP_VERSION', '2.0.4' );
|
31 |
}
|
32 |
// Plugin Root File.
|
33 |
if ( ! defined( 'WPCCP_PLUGIN_FILE' ) ) {
|