Skip to content

Commit

Permalink
Merge pull request #103 from pressidium/next
Browse files Browse the repository at this point in the history
1.7.1
  • Loading branch information
over-engineer authored Dec 12, 2024
2 parents 2d99bb5 + 4d0d74e commit 6d031b6
Show file tree
Hide file tree
Showing 8 changed files with 128 additions and 102 deletions.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
[![WordPress Plugin Version](https://img.shields.io/wordpress/plugin/v/pressidium-cookie-consent)](https://wordpress.org/plugins/pressidium-cookie-consent/)
[![WordPress Plugin: Tested WP Version](https://img.shields.io/wordpress/plugin/tested/pressidium-cookie-consent)](https://wordpress.org/plugins/pressidium-cookie-consent/)
[![WordPress Plugin Rating](https://img.shields.io/wordpress/plugin/stars/pressidium-cookie-consent)](https://wordpress.org/plugins/pressidium-cookie-consent/)
[![WordPress Plugin Active Installs](https://img.shields.io/wordpress/plugin/installs/pressidium-cookie-consent)](https://wordpress.org/plugins/pressidium-cookie-consent/)

🍪 Pressidium Cookie Consent makes it easy to add a stylish, customizable cookie consent banner to your website and conditionally load third-party scripts (preferences, analytics, targeting, etc.) based on the user-selected preferences to help you comply with EU GDPR cookie law, CCPA, and similar regulations.

Expand All @@ -18,6 +19,7 @@
* [Features](#features)
* [Credits](#credits)
* [License](#license)
* [About Pressidium](#about-pressidium)

## Setup

Expand Down Expand Up @@ -123,3 +125,13 @@ Programmatically control the plugin. Conditionally show/hide the cookie consent
## License

GNU GPL v2 or later, check the [`LICENSE`](./LICENSE) file.

## About Pressidium

<p align="center">
<a href="https://pressidium.com/free-trial/?utm_source=pccplugin&utm_medium=ghreadme&utm_campaign=wpplugins">
<img width="850" src="./assets/images/banner.png" />
</a>
</p>

This is a free and open source WordPress plugin developed by Pressidium®. Pressidium offers Managed WordPress hosting for web professionals designed to optimize the performance, security, and scalability of WordPress websites. With a strong emphasis on reliability, Pressidium utilizes high-available architecture to ensure your website’s uptime.
Binary file added assets/images/banner.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions pressidium-cookie-consent.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: Pressidium Cookie Consent
* Plugin URI: https://github.com/pressidium/pressidium-cookie-consent/
* Description: Lightweight, user-friendly and customizable cookie consent banner to help you comply with the EU GDPR cookie law and CCPA regulations.
* Version: 1.7.0
* Version: 1.7.1
* Author: Pressidium
* Author URI: https://pressidium.com/
* Text Domain: pressidium-cookie-consent
Expand All @@ -27,7 +27,7 @@
*/
function setup_constants(): void {
if ( ! defined( 'Pressidium\WP\CookieConsent\VERSION' ) ) {
define( 'Pressidium\WP\CookieConsent\VERSION', '1.7.0' );
define( 'Pressidium\WP\CookieConsent\VERSION', '1.7.1' );
}

if ( ! defined( 'Pressidium\WP\CookieConsent\PLUGIN_DIR' ) ) {
Expand Down
11 changes: 9 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
== Pressidium Cookie Consent ==
Author URI: https://pressidium.com/
Plugin URI: https://github.com/pressidium/pressidium-cookie-consent/
Plugin URI: https://pressidium.com/open-source/cookie-consent-plugin/
Contributors: pressidium, overengineer
Tags: cookie, consent, gdpr, ccpa, cookies
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
Stable Tag: 1.7.0
Stable Tag: 1.7.1
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -173,6 +173,13 @@ If you have spotted any bugs, or would like to request additional features from

== Changelog ==

= 1.7.1: Dec 12, 2024 =

* Fix an issue where the floating button was being rendered behind other content
* Fix an issue where the cookies tab was hidden in the Brave browser
* Fix an issue where closing the settings modal without saving would cause the necessary cookies toggle to be disabled
* Update the cookieconsent library to version 2.9.2

= 1.7.0: Nov 18, 2024 =

* Update language codes to be consistent with locale codes used in WordPress
Expand Down
2 changes: 1 addition & 1 deletion src/admin/components/SettingsPanel.js
Original file line number Diff line number Diff line change
Expand Up @@ -617,7 +617,7 @@ function SettingsPanel() {
{
name: 'cookies',
title: __('Cookies', 'pressidium-cookie-consent'),
className: 'tab-cookies',
className: 'tab-cookies-list',
Component: CookiesTab,
},
{
Expand Down
4 changes: 4 additions & 0 deletions src/client/lib/cookieconsent.css
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,10 @@
border-color: transparent;
}

.cc_div .c-bn > span {
pointer-events: none
}

/* Make elements "animatable" */
.c--anim #cm,
.c--anim #s-cnt,
Expand Down
Loading

0 comments on commit 6d031b6

Please sign in to comment.