Changeset 2833198
- Timestamp:
- 12/13/2022 06:28:46 PM (3 years ago)
- Location:
- content-visibility-user-role
- Files:
-
- 6 edited
- 1 copied
-
tags/0.1.4 (copied) (copied from content-visibility-user-role/trunk)
-
tags/0.1.4/content-visibility-user-role.php (modified) (1 diff)
-
tags/0.1.4/includes/block-visibility-user-role.php (modified) (1 diff)
-
tags/0.1.4/readme.txt (modified) (2 diffs)
-
trunk/content-visibility-user-role.php (modified) (1 diff)
-
trunk/includes/block-visibility-user-role.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
content-visibility-user-role/tags/0.1.4/content-visibility-user-role.php
r2568522 r2833198 12 12 * Plugin URI: https://richardtape.com/content-visibility/ 13 13 * Description: [Content Visibility Add-On] Determine which user role(s) can see the content blocks of your choosing. 14 * Version: 0.1. 314 * Version: 0.1.4 15 15 * Author: Richard Tape 16 16 * Author URI: https://richardtape.com -
content-visibility-user-role/tags/0.1.4/includes/block-visibility-user-role.php
r2482514 r2833198 24 24 function enqueue_editor_assets() { // phpcs:ignore 25 25 26 $prereqs = array( 27 'wp-blocks', 28 'wp-i18n', 29 'wp-element', 30 'wp-plugins', 31 'wp-dom-ready', 32 ); 33 34 // The 5.8 widgets screen requires a special editor?! Feelsbadman. 35 $CVEditor = new \RichardTape\ContentVisibility\Editor(); 36 if ( $CVEditor->on_widgets_screen() ) { 37 $prereqs[] = 'wp-edit-widgets'; 38 } else { 39 $prereqs[] = 'wp-editor'; 40 } 41 26 42 wp_register_script( 27 43 'content-visibility-user-role', 28 44 plugins_url( '/build/index.js', dirname( __FILE__ ) ), 29 array( 30 'wp-blocks', 31 'wp-i18n', 32 'wp-element', 33 'wp-editor', 34 'wp-plugins', 35 'wp-edit-post', 36 ), 45 $prereqs, 37 46 filemtime( plugin_dir_path( __DIR__ ) . 'build/index.js' ), 38 47 true -
content-visibility-user-role/tags/0.1.4/readme.txt
r2568522 r2833198 5 5 Requires at least: 5.0 6 6 Tested up to: 5.8.0 7 Stable tag: 0.1. 37 Stable tag: 0.1.4 8 8 Requires PHP: 7.0 9 9 License: GPLv2 or later … … 40 40 == Changelog == 41 41 42 = 0.1.4 = 43 * WP 6.1.1 compatibility. 44 * Fixed warning in widgets screen which said we were using the incorrect editor. 45 42 46 = 0.1.3 = 43 47 * Added the icon to show when a rule is selected for a block to make it easier to see which rules are active for a block. -
content-visibility-user-role/trunk/content-visibility-user-role.php
r2568522 r2833198 12 12 * Plugin URI: https://richardtape.com/content-visibility/ 13 13 * Description: [Content Visibility Add-On] Determine which user role(s) can see the content blocks of your choosing. 14 * Version: 0.1. 314 * Version: 0.1.4 15 15 * Author: Richard Tape 16 16 * Author URI: https://richardtape.com -
content-visibility-user-role/trunk/includes/block-visibility-user-role.php
r2482514 r2833198 24 24 function enqueue_editor_assets() { // phpcs:ignore 25 25 26 $prereqs = array( 27 'wp-blocks', 28 'wp-i18n', 29 'wp-element', 30 'wp-plugins', 31 'wp-dom-ready', 32 ); 33 34 // The 5.8 widgets screen requires a special editor?! Feelsbadman. 35 $CVEditor = new \RichardTape\ContentVisibility\Editor(); 36 if ( $CVEditor->on_widgets_screen() ) { 37 $prereqs[] = 'wp-edit-widgets'; 38 } else { 39 $prereqs[] = 'wp-editor'; 40 } 41 26 42 wp_register_script( 27 43 'content-visibility-user-role', 28 44 plugins_url( '/build/index.js', dirname( __FILE__ ) ), 29 array( 30 'wp-blocks', 31 'wp-i18n', 32 'wp-element', 33 'wp-editor', 34 'wp-plugins', 35 'wp-edit-post', 36 ), 45 $prereqs, 37 46 filemtime( plugin_dir_path( __DIR__ ) . 'build/index.js' ), 38 47 true -
content-visibility-user-role/trunk/readme.txt
r2568522 r2833198 5 5 Requires at least: 5.0 6 6 Tested up to: 5.8.0 7 Stable tag: 0.1. 37 Stable tag: 0.1.4 8 8 Requires PHP: 7.0 9 9 License: GPLv2 or later … … 40 40 == Changelog == 41 41 42 = 0.1.4 = 43 * WP 6.1.1 compatibility. 44 * Fixed warning in widgets screen which said we were using the incorrect editor. 45 42 46 = 0.1.3 = 43 47 * Added the icon to show when a rule is selected for a block to make it easier to see which rules are active for a block.
Note: See TracChangeset
for help on using the changeset viewer.