Changeset 2833254
- Timestamp:
- 12/13/2022 07:34:00 PM (3 years ago)
- Location:
- content-visibility-geolocation
- Files:
-
- 6 edited
- 1 copied
-
tags/0.1.2 (copied) (copied from content-visibility-geolocation/trunk)
-
tags/0.1.2/content-visibility-geolocation.php (modified) (1 diff)
-
tags/0.1.2/includes/content-visibility-geolocation.php (modified) (1 diff)
-
tags/0.1.2/readme.txt (modified) (2 diffs)
-
trunk/content-visibility-geolocation.php (modified) (1 diff)
-
trunk/includes/content-visibility-geolocation.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
content-visibility-geolocation/tags/0.1.2/content-visibility-geolocation.php
r2568524 r2833254 12 12 * Plugin URI: https://richardtape.com/content-visibility/ 13 13 * Description: [Content Visibility Add-On] Show or hide your blocks to visitors from specific countries. 14 * Version: 0.1. 114 * Version: 0.1.2 15 15 * Author: Richard Tape 16 16 * Author URI: https://richardtape.com -
content-visibility-geolocation/tags/0.1.2/includes/content-visibility-geolocation.php
r2510965 r2833254 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 wp_register_script( 26 42 'content-visibility-geolocation', 27 43 plugins_url( '/build/index.js', dirname( __FILE__ ) ), 28 array( 29 'wp-blocks', 30 'wp-i18n', 31 'wp-element', 32 'wp-editor', 33 'wp-plugins', 34 'wp-edit-post', 35 ), 44 $prereqs, 36 45 filemtime( plugin_dir_path( __DIR__ ) . 'build/index.js' ), 37 46 true -
content-visibility-geolocation/tags/0.1.2/readme.txt
r2568524 r2833254 4 4 Tags: contentvisibility, block, content, visibility, geolocation, location 5 5 Requires at least: 5.0 6 Tested up to: 5.8.07 Stable tag: 0.1. 16 Tested up to: 6.1.1 7 Stable tag: 0.1.2 8 8 Requires PHP: 7.0 9 9 License: GPLv2 or later … … 51 51 == Changelog == 52 52 53 = 0.1.2 = 54 * WP 6.1.1 compatibility. 55 * Fixed warning on widgets screen. 56 53 57 = 0.1.1 = 54 58 * Added indicator to show when a country is selected to more easily determine when a block has rules. -
content-visibility-geolocation/trunk/content-visibility-geolocation.php
r2568524 r2833254 12 12 * Plugin URI: https://richardtape.com/content-visibility/ 13 13 * Description: [Content Visibility Add-On] Show or hide your blocks to visitors from specific countries. 14 * Version: 0.1. 114 * Version: 0.1.2 15 15 * Author: Richard Tape 16 16 * Author URI: https://richardtape.com -
content-visibility-geolocation/trunk/includes/content-visibility-geolocation.php
r2510965 r2833254 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 wp_register_script( 26 42 'content-visibility-geolocation', 27 43 plugins_url( '/build/index.js', dirname( __FILE__ ) ), 28 array( 29 'wp-blocks', 30 'wp-i18n', 31 'wp-element', 32 'wp-editor', 33 'wp-plugins', 34 'wp-edit-post', 35 ), 44 $prereqs, 36 45 filemtime( plugin_dir_path( __DIR__ ) . 'build/index.js' ), 37 46 true -
content-visibility-geolocation/trunk/readme.txt
r2568524 r2833254 4 4 Tags: contentvisibility, block, content, visibility, geolocation, location 5 5 Requires at least: 5.0 6 Tested up to: 5.8.07 Stable tag: 0.1. 16 Tested up to: 6.1.1 7 Stable tag: 0.1.2 8 8 Requires PHP: 7.0 9 9 License: GPLv2 or later … … 51 51 == Changelog == 52 52 53 = 0.1.2 = 54 * WP 6.1.1 compatibility. 55 * Fixed warning on widgets screen. 56 53 57 = 0.1.1 = 54 58 * Added indicator to show when a country is selected to more easily determine when a block has rules.
Note: See TracChangeset
for help on using the changeset viewer.