Plugin Directory

Changeset 2510989


Ignore:
Timestamp:
04/07/2021 04:48:22 PM (5 years ago)
Author:
iamfriendly
Message:

Update to version 0.2.4 from GitHub

Location:
content-visibility
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • content-visibility/tags/0.2.4/build/index.asset.php

    r2510964 r2510989  
    1 <?php return array('dependencies' => array('react', 'wp-blockEditor', 'wp-components', 'wp-compose', 'wp-element', 'wp-hooks', 'wp-i18n', 'wp-plugins', 'wp-polyfill'), 'version' => 'f2c1b1fc56917e5e84b71612446c7752');
     1<?php return array('dependencies' => array('react', 'wp-blockEditor', 'wp-components', 'wp-compose', 'wp-element', 'wp-hooks', 'wp-i18n', 'wp-plugins', 'wp-polyfill'), 'version' => '609efb85338aa7a2f8177ec1f4cb9e12');
  • content-visibility/tags/0.2.4/content-visibility.php

    r2510964 r2510989  
    1212 * Plugin URI:  https://richardtape.com/content-visibility/
    1313 * Description: Content Visibility allows you to decide when, where, and to whom your blocks are visible.
    14  * Version:     0.2.2
     14 * Version:     0.2.4
    1515 * Author:      Rich Tape
    1616 * Author URI:  https://richardtape.com/
  • content-visibility/tags/0.2.4/includes/editor/class-editor.php

    r2489866 r2510989  
    7777            'post',
    7878            'page',
     79            'wp_block',
    7980            $this->get_widget_screen_id(),
    8081        );
  • content-visibility/tags/0.2.4/readme.txt

    r2510964 r2510989  
    55Requires at least: 5.0
    66Tested up to: 5.7.0
    7 Stable tag: 0.2.2
     7Stable tag: 0.2.4
    88Requires PHP: 7.0
    99License: GPLv2 or later
     
    1414== Description ==
    1515
    16 Content Visibility provides a set of controls to say whether each discrete piece of content (or 'block' in WordPress parlance) should be shown to users who are signed in to your site or not. Additional add-ons provide controls for [**role-based**](https://github.com/richardtape/content-visibility-user-role) visibility and [**time-based**](https://wordpress.org/plugins/content-visibility-date-and-time/) visibility.
     16Your Content. Your Rules. Decide who sees what and when. No setup or complex settings. Write content, decide who should see it, and press publish.
     17
     18Content Visibility provides a set of controls to say whether each discrete piece of content (or 'block' in WordPress parlance) should be shown to users who are signed in to your site or not. Additional add-ons provide controls for [**role-based**](https://github.com/richardtape/content-visibility-user-role) visibility, [**time-based**](https://wordpress.org/plugins/content-visibility-date-and-time/) visibility, and [**location-based**](https://wordpress.org/plugins/content-visibility-geolocation/) visibility. You can also show or hide blocks to folks using [RSS](https://wordpress.org/plugins/content-visibility-rss-feed/) Readers.
    1719
    1820## Individual Block Controls
    1921
    20 Every individual block on all posts and pages on your site can have their own controls. Mix and match the visibility of blocks on a single page. Need some blocks to show to everyone and a few to only be available to your site's subscribers? No problem. Only want a message to appear on Christmas Day? You got it. Only want those who are signed in to your site to see certain pieces of content? Easy peasy.
     22Every individual block on all posts and pages (and custom post types) on your site can have their own controls. Mix and match the visibility of blocks on a single page. Need some blocks to show to everyone and a few to only be available to your site's subscribers? No problem. Only want a message to appear on Christmas Day? You got it. Only want those who are signed in to your site to see certain pieces of content? Easy peasy.
    2123
    2224## At a glance
     
    4143 - [ ] REST API exploration. Should be fine for non-authenticated requests, but need to dive deeper for auth'd requests
    4244 - [ ] Non-trivial dates. Think things like "Every Wednesday between 3pm and 4pm" or "First two weeks in November"
    43  - [ ] Geolocation: Show this block only to users whose connection is in France
     45 - [x] [Geolocation](https://wordpress.org/plugins/content-visibility-geolocation/): Show this block only to users whose connection is in France.
    4446 - [ ] Specific Users: Only show a block when a specific user is signed in
    4547 - [ ] Specific 3rd-party plugin integrations. Show a block when someone has purchased something from your WooCommerce store. Or when someone has submitted a specific Gravity Form.
     
    6466
    6567== Changelog ==
     68
     69= 0.2.4 =
     70* WordPress 5.7.0 compatibility.
     71* Nothing really to see here. Fixed an issue with the build script which prevented 0.2.3 from being available in the plugins repo.
     72
     73= 0.2.3 =
     74* Content Visibility controls now show on the reusable blocks edit screen in addition to when you insert a reusable block.
    6675
    6776= 0.2.2 =
  • content-visibility/trunk/build/index.asset.php

    r2510964 r2510989  
    1 <?php return array('dependencies' => array('react', 'wp-blockEditor', 'wp-components', 'wp-compose', 'wp-element', 'wp-hooks', 'wp-i18n', 'wp-plugins', 'wp-polyfill'), 'version' => 'f2c1b1fc56917e5e84b71612446c7752');
     1<?php return array('dependencies' => array('react', 'wp-blockEditor', 'wp-components', 'wp-compose', 'wp-element', 'wp-hooks', 'wp-i18n', 'wp-plugins', 'wp-polyfill'), 'version' => '609efb85338aa7a2f8177ec1f4cb9e12');
  • content-visibility/trunk/content-visibility.php

    r2510964 r2510989  
    1212 * Plugin URI:  https://richardtape.com/content-visibility/
    1313 * Description: Content Visibility allows you to decide when, where, and to whom your blocks are visible.
    14  * Version:     0.2.2
     14 * Version:     0.2.4
    1515 * Author:      Rich Tape
    1616 * Author URI:  https://richardtape.com/
  • content-visibility/trunk/includes/editor/class-editor.php

    r2489866 r2510989  
    7777            'post',
    7878            'page',
     79            'wp_block',
    7980            $this->get_widget_screen_id(),
    8081        );
  • content-visibility/trunk/readme.txt

    r2510964 r2510989  
    55Requires at least: 5.0
    66Tested up to: 5.7.0
    7 Stable tag: 0.2.2
     7Stable tag: 0.2.4
    88Requires PHP: 7.0
    99License: GPLv2 or later
     
    1414== Description ==
    1515
    16 Content Visibility provides a set of controls to say whether each discrete piece of content (or 'block' in WordPress parlance) should be shown to users who are signed in to your site or not. Additional add-ons provide controls for [**role-based**](https://github.com/richardtape/content-visibility-user-role) visibility and [**time-based**](https://wordpress.org/plugins/content-visibility-date-and-time/) visibility.
     16Your Content. Your Rules. Decide who sees what and when. No setup or complex settings. Write content, decide who should see it, and press publish.
     17
     18Content Visibility provides a set of controls to say whether each discrete piece of content (or 'block' in WordPress parlance) should be shown to users who are signed in to your site or not. Additional add-ons provide controls for [**role-based**](https://github.com/richardtape/content-visibility-user-role) visibility, [**time-based**](https://wordpress.org/plugins/content-visibility-date-and-time/) visibility, and [**location-based**](https://wordpress.org/plugins/content-visibility-geolocation/) visibility. You can also show or hide blocks to folks using [RSS](https://wordpress.org/plugins/content-visibility-rss-feed/) Readers.
    1719
    1820## Individual Block Controls
    1921
    20 Every individual block on all posts and pages on your site can have their own controls. Mix and match the visibility of blocks on a single page. Need some blocks to show to everyone and a few to only be available to your site's subscribers? No problem. Only want a message to appear on Christmas Day? You got it. Only want those who are signed in to your site to see certain pieces of content? Easy peasy.
     22Every individual block on all posts and pages (and custom post types) on your site can have their own controls. Mix and match the visibility of blocks on a single page. Need some blocks to show to everyone and a few to only be available to your site's subscribers? No problem. Only want a message to appear on Christmas Day? You got it. Only want those who are signed in to your site to see certain pieces of content? Easy peasy.
    2123
    2224## At a glance
     
    4143 - [ ] REST API exploration. Should be fine for non-authenticated requests, but need to dive deeper for auth'd requests
    4244 - [ ] Non-trivial dates. Think things like "Every Wednesday between 3pm and 4pm" or "First two weeks in November"
    43  - [ ] Geolocation: Show this block only to users whose connection is in France
     45 - [x] [Geolocation](https://wordpress.org/plugins/content-visibility-geolocation/): Show this block only to users whose connection is in France.
    4446 - [ ] Specific Users: Only show a block when a specific user is signed in
    4547 - [ ] Specific 3rd-party plugin integrations. Show a block when someone has purchased something from your WooCommerce store. Or when someone has submitted a specific Gravity Form.
     
    6466
    6567== Changelog ==
     68
     69= 0.2.4 =
     70* WordPress 5.7.0 compatibility.
     71* Nothing really to see here. Fixed an issue with the build script which prevented 0.2.3 from being available in the plugins repo.
     72
     73= 0.2.3 =
     74* Content Visibility controls now show on the reusable blocks edit screen in addition to when you insert a reusable block.
    6675
    6776= 0.2.2 =
Note: See TracChangeset for help on using the changeset viewer.