Changeset 2834089
- Timestamp:
- 12/14/2022 10:32:24 PM (3 years ago)
- Location:
- content-visibility-rss-feed
- Files:
-
- 6 edited
- 1 copied
-
tags/0.1.3 (copied) (copied from content-visibility-rss-feed/trunk)
-
tags/0.1.3/content-visibility-rss-feed.php (modified) (1 diff)
-
tags/0.1.3/includes/content-visibility-rss-feed.php (modified) (1 diff)
-
tags/0.1.3/readme.txt (modified) (2 diffs)
-
trunk/content-visibility-rss-feed.php (modified) (1 diff)
-
trunk/includes/content-visibility-rss-feed.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
content-visibility-rss-feed/tags/0.1.3/content-visibility-rss-feed.php
r2568523 r2834089 12 12 * Plugin URI: https://richardtape.com/content-visibility/ 13 13 * Description: [Content Visibility Add-On] Show or hide your content for those folks consuming your content with RSS. 14 * Version: 0.1. 214 * Version: 0.1.3 15 15 * Author: Richard Tape 16 16 * Author URI: https://richardtape.com -
content-visibility-rss-feed/tags/0.1.3/includes/content-visibility-rss-feed.php
r2506375 r2834089 23 23 function enqueue_editor_assets() { // phpcs:ignore 24 24 25 $prereqs = array( 26 'wp-blocks', 27 'wp-i18n', 28 'wp-element', 29 'wp-plugins', 30 'wp-dom-ready', 31 ); 32 33 // The 5.8 widgets screen requires a special editor?! Feelsbadman. 34 $CVEditor = new \RichardTape\ContentVisibility\Editor(); 35 if ( $CVEditor->on_widgets_screen() ) { 36 $prereqs[] = 'wp-edit-widgets'; 37 } else { 38 $prereqs[] = 'wp-editor'; 39 } 40 25 41 // Register and then load our dashboard javascript. 26 42 wp_register_script( 27 43 'content-visibility-rss-feed', 28 44 plugins_url( '/build/index.js', dirname( __FILE__ ) ), 29 array( 'wp-blocks', 'wp-i18n', 'wp-element', 'wp-editor', 'wp-plugins', 'wp-edit-post' ),45 $prereqs, 30 46 filemtime( plugin_dir_path( __DIR__ ) . 'build/index.js' ), 31 47 true -
content-visibility-rss-feed/tags/0.1.3/readme.txt
r2568523 r2834089 4 4 Tags: contentvisibility, block, content, visibility, rss, feed 5 5 Requires at least: 5.0 6 Tested up to: 5.8.07 Stable tag: 0.1. 26 Tested up to: 6.1.1 7 Stable tag: 0.1.3 8 8 Requires PHP: 7.0 9 9 License: GPLv2 or later … … 35 35 == Changelog == 36 36 37 = 0.1.3 = 38 * WP 6.1.1 compatibility. 39 * Fixed warning in widgets screen. 40 37 41 = 0.1.2 = 38 42 * Added small icon to indicate when a block has RSS Feed rules. -
content-visibility-rss-feed/trunk/content-visibility-rss-feed.php
r2568523 r2834089 12 12 * Plugin URI: https://richardtape.com/content-visibility/ 13 13 * Description: [Content Visibility Add-On] Show or hide your content for those folks consuming your content with RSS. 14 * Version: 0.1. 214 * Version: 0.1.3 15 15 * Author: Richard Tape 16 16 * Author URI: https://richardtape.com -
content-visibility-rss-feed/trunk/includes/content-visibility-rss-feed.php
r2506375 r2834089 23 23 function enqueue_editor_assets() { // phpcs:ignore 24 24 25 $prereqs = array( 26 'wp-blocks', 27 'wp-i18n', 28 'wp-element', 29 'wp-plugins', 30 'wp-dom-ready', 31 ); 32 33 // The 5.8 widgets screen requires a special editor?! Feelsbadman. 34 $CVEditor = new \RichardTape\ContentVisibility\Editor(); 35 if ( $CVEditor->on_widgets_screen() ) { 36 $prereqs[] = 'wp-edit-widgets'; 37 } else { 38 $prereqs[] = 'wp-editor'; 39 } 40 25 41 // Register and then load our dashboard javascript. 26 42 wp_register_script( 27 43 'content-visibility-rss-feed', 28 44 plugins_url( '/build/index.js', dirname( __FILE__ ) ), 29 array( 'wp-blocks', 'wp-i18n', 'wp-element', 'wp-editor', 'wp-plugins', 'wp-edit-post' ),45 $prereqs, 30 46 filemtime( plugin_dir_path( __DIR__ ) . 'build/index.js' ), 31 47 true -
content-visibility-rss-feed/trunk/readme.txt
r2568523 r2834089 4 4 Tags: contentvisibility, block, content, visibility, rss, feed 5 5 Requires at least: 5.0 6 Tested up to: 5.8.07 Stable tag: 0.1. 26 Tested up to: 6.1.1 7 Stable tag: 0.1.3 8 8 Requires PHP: 7.0 9 9 License: GPLv2 or later … … 35 35 == Changelog == 36 36 37 = 0.1.3 = 38 * WP 6.1.1 compatibility. 39 * Fixed warning in widgets screen. 40 37 41 = 0.1.2 = 38 42 * Added small icon to indicate when a block has RSS Feed rules.
Note: See TracChangeset
for help on using the changeset viewer.