Changeset 2833258
- Timestamp:
- 12/13/2022 07:40:25 PM (3 years ago)
- Location:
- content-visibility-specific-users
- Files:
-
- 6 edited
- 1 copied
-
tags/0.1.1 (copied) (copied from content-visibility-specific-users/trunk)
-
tags/0.1.1/content-visibility-specific-users.php (modified) (1 diff)
-
tags/0.1.1/includes/content-visibility-specific-users.php (modified) (1 diff)
-
tags/0.1.1/readme.txt (modified) (2 diffs)
-
trunk/content-visibility-specific-users.php (modified) (1 diff)
-
trunk/includes/content-visibility-specific-users.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
content-visibility-specific-users/tags/0.1.1/content-visibility-specific-users.php
r2568525 r2833258 12 12 * Plugin URI: https://richardtape.com/content-visibility/ 13 13 * Description: [Content Visibility Add-On] Show or hide your blocks to specific users. 14 * Version: 0.1. 014 * Version: 0.1.1 15 15 * Author: Richard Tape 16 16 * Author URI: https://richardtape.com -
content-visibility-specific-users/tags/0.1.1/includes/content-visibility-specific-users.php
r2568525 r2833258 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-specificusers', 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-specific-users/tags/0.1.1/readme.txt
r2568525 r2833258 4 4 Tags: contentvisibility, block, content, visibility, user, users 5 5 Requires at least: 5.0 6 Tested up to: 5.8.07 Stable tag: 0.1. 06 Tested up to: 6.1.1 7 Stable tag: 0.1.1 8 8 Requires PHP: 7.0 9 9 License: GPLv2 or later … … 41 41 == Changelog == 42 42 43 = 0.1.1 = 44 * WP 6.1.1 compatibility. 45 * Fixed warning on Widgets screen. 46 43 47 = 0.1.0 = 44 48 * First public release. -
content-visibility-specific-users/trunk/content-visibility-specific-users.php
r2568525 r2833258 12 12 * Plugin URI: https://richardtape.com/content-visibility/ 13 13 * Description: [Content Visibility Add-On] Show or hide your blocks to specific users. 14 * Version: 0.1. 014 * Version: 0.1.1 15 15 * Author: Richard Tape 16 16 * Author URI: https://richardtape.com -
content-visibility-specific-users/trunk/includes/content-visibility-specific-users.php
r2568525 r2833258 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-specificusers', 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-specific-users/trunk/readme.txt
r2568525 r2833258 4 4 Tags: contentvisibility, block, content, visibility, user, users 5 5 Requires at least: 5.0 6 Tested up to: 5.8.07 Stable tag: 0.1. 06 Tested up to: 6.1.1 7 Stable tag: 0.1.1 8 8 Requires PHP: 7.0 9 9 License: GPLv2 or later … … 41 41 == Changelog == 42 42 43 = 0.1.1 = 44 * WP 6.1.1 compatibility. 45 * Fixed warning on Widgets screen. 46 43 47 = 0.1.0 = 44 48 * First public release.
Note: See TracChangeset
for help on using the changeset viewer.