Skip to content

Commit

Permalink
Updated README. Version bump.
Browse files Browse the repository at this point in the history
  • Loading branch information
Brugman committed Dec 4, 2020
1 parent c1933d1 commit e9b5c9c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,16 @@

> WordPress cookie notice plugin for developers.
Let's be honest. Is your website really going to get audited? With this plugin you've got *something* and no extra headaches.
![screenshot](/screenshot.png)

Let's be honest. Is your website really going to get audited?\
With this plugin you've got *something* and no extra headaches.

:heavy_check_mark: Tiny.\
:heavy_check_mark: Configure with hooks.\
:heavy_check_mark: Configured with hooks.\
:heavy_check_mark: No added backend menus.\
:heavy_check_mark: No added database crap.

![screenshot](/screenshot.png)

## Installation

1. Download the ZIP.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "we-use-cookies",
"version": "0.1.0",
"version": "1.0.0",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "npx gulp --env=prod"
Expand Down
6 changes: 3 additions & 3 deletions we-use-cookies.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/**
* Plugin Name: We Use Cookies
* Description: Let your visitors know that your website uses cookies.
* Version: 0.1.0
* Version: 1.0.0
* Plugin URI: https://timbr.dev/
* Author: Tim Brugman
* Author URI: https://timbr.dev/
Expand All @@ -26,10 +26,10 @@

add_action( 'wp_enqueue_scripts', function () {

wp_enqueue_script( 'we-use-cookies', plugin_dir_url( __FILE__ ).'we-use-cookies.min.js', [], '0.1.0', true );
wp_enqueue_script( 'we-use-cookies', plugin_dir_url( __FILE__ ).'we-use-cookies.min.js', [], '1.0.0', true );

if ( apply_filters( 'wuc_css', true ) )
wp_enqueue_style( 'we-use-cookies', plugin_dir_url( __FILE__ ).'we-use-cookies.min.css', [], '0.1.0', 'all' );
wp_enqueue_style( 'we-use-cookies', plugin_dir_url( __FILE__ ).'we-use-cookies.min.css', [], '1.0.0', 'all' );
});

/**
Expand Down

0 comments on commit e9b5c9c

Please sign in to comment.