Changeset 3037600
- Timestamp:
- 02/18/2024 11:43:01 PM (22 months ago)
- Location:
- bibleget-io
- Files:
-
- 6 edited
- 1 copied
-
tags/8.0 (copied) (copied from bibleget-io/trunk)
-
tags/8.0/bibleget-io.php (modified) (4 diffs)
-
tags/8.0/includes/BibleGetSettingsPage.php (modified) (2 diffs)
-
tags/8.0/vendor/composer/installed.php (modified) (2 diffs)
-
trunk/bibleget-io.php (modified) (4 diffs)
-
trunk/includes/BibleGetSettingsPage.php (modified) (2 diffs)
-
trunk/vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
bibleget-io/tags/8.0/bibleget-io.php
r3037594 r3037600 4 4 * Plugin URI: https://www.bibleget.io/ 5 5 * Description: Easily insert Bible quotes from a choice of Bible versions into your articles or pages with the "Bible quote" block or with the shortcode [bibleget]. 6 * Version: 7.96 * Version: 8.0 7 7 * Requires at least: 5.6 8 8 * Requires PHP: 7.4 9 9 * Author: John Romano D'Orazio 10 10 * Author URI: https://www.johnromanodorazio.com/ 11 * License: GPLv 311 * License: GPLv2 or later 12 12 * Text Domain: bibleget-io 13 13 * Domain Path: /languages/ … … 31 31 32 32 33 define("BIBLEGETPLUGINVERSION", "v 7_9");33 define("BIBLEGETPLUGINVERSION", "v8_0"); 34 34 35 35 if (!defined('ABSPATH')) { … … 318 318 if( $isShortcode ) { 319 319 wp_enqueue_script('bibleget-script', plugins_url('js/shortcode.js', __FILE__), array('jquery'), '1.0', true); 320 wp_enqueue_script('htmlentities-script', plugins_url('//cdn.jsdelivr.net/gh/mathiasbynens/[email protected]/he.min.js', __FILE__), array('jquery'), '1.2.0', true);320 wp_enqueue_script('htmlentities-script', '//cdn.jsdelivr.net/gh/mathiasbynens/[email protected]/he.min.js', array('jquery'), '1.2.0', true); 321 321 //it shouldn't be necessary to call update_option here, 322 322 //because even though it's theoretically possible now to set all options inside the shortcode … … 658 658 wp_enqueue_style('wp-jquery-ui-dialog'); 659 659 wp_enqueue_style('bibleget-popup', plugins_url('css/popup.css', __FILE__)); 660 wp_enqueue_script('htmlentities-script', plugins_url('//cdn.jsdelivr.net/gh/mathiasbynens/[email protected]/he.min.js', __FILE__), array('jquery'), '1.2.0', true);660 wp_enqueue_script('htmlentities-script', '//cdn.jsdelivr.net/gh/mathiasbynens/[email protected]/he.min.js', array('jquery'), '1.2.0', true); 661 661 if (!wp_style_is('fontawesome', 'enqueued')) { 662 662 if ( false === isFontAwesomeEnqueued() ) { -
bibleget-io/tags/8.0/includes/BibleGetSettingsPage.php
r3037594 r3037600 760 760 curl_setopt($ch2, CURLOPT_RETURNTRANSFER, TRUE); 761 761 if( false === self::isLocalIp( $_SERVER['SERVER_ADDR'] ) ) { 762 curl_setopt($ch , CURLOPT_INTERFACE, $_SERVER['SERVER_ADDR']);762 curl_setopt($ch2, CURLOPT_INTERFACE, $_SERVER['SERVER_ADDR']); 763 763 } 764 764 if (ini_get('open_basedir') === false) { … … 781 781 curl_setopt($ch3, CURLOPT_RETURNTRANSFER, TRUE); 782 782 if( false === self::isLocalIp( $_SERVER['SERVER_ADDR'] ) ) { 783 curl_setopt($ch , CURLOPT_INTERFACE, $_SERVER['SERVER_ADDR']);783 curl_setopt($ch3, CURLOPT_INTERFACE, $_SERVER['SERVER_ADDR']); 784 784 } 785 785 //declaring acceptance of woff2 will make it possible to download the compressed version of the font with only the requested characters -
bibleget-io/tags/8.0/vendor/composer/installed.php
r3037594 r3037600 2 2 'root' => array( 3 3 'name' => 'johnrdorazio/bibleget-wordpress', 4 'pretty_version' => ' 7.9',5 'version' => ' 7.9.0.0',6 'reference' => ' 61404f08eee28a28cac780ecbb16dd382c538117',4 'pretty_version' => '8.0', 5 'version' => '8.0.0.0', 6 'reference' => 'a0829761f32786d6f5e552d56d22cb704af569fc', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 12 12 'versions' => array( 13 13 'johnrdorazio/bibleget-wordpress' => array( 14 'pretty_version' => ' 7.9',15 'version' => ' 7.9.0.0',16 'reference' => ' 61404f08eee28a28cac780ecbb16dd382c538117',14 'pretty_version' => '8.0', 15 'version' => '8.0.0.0', 16 'reference' => 'a0829761f32786d6f5e552d56d22cb704af569fc', 17 17 'type' => 'wordpress-plugin', 18 18 'install_path' => __DIR__ . '/../../', -
bibleget-io/trunk/bibleget-io.php
r3037594 r3037600 4 4 * Plugin URI: https://www.bibleget.io/ 5 5 * Description: Easily insert Bible quotes from a choice of Bible versions into your articles or pages with the "Bible quote" block or with the shortcode [bibleget]. 6 * Version: 7.96 * Version: 8.0 7 7 * Requires at least: 5.6 8 8 * Requires PHP: 7.4 9 9 * Author: John Romano D'Orazio 10 10 * Author URI: https://www.johnromanodorazio.com/ 11 * License: GPLv 311 * License: GPLv2 or later 12 12 * Text Domain: bibleget-io 13 13 * Domain Path: /languages/ … … 31 31 32 32 33 define("BIBLEGETPLUGINVERSION", "v 7_9");33 define("BIBLEGETPLUGINVERSION", "v8_0"); 34 34 35 35 if (!defined('ABSPATH')) { … … 318 318 if( $isShortcode ) { 319 319 wp_enqueue_script('bibleget-script', plugins_url('js/shortcode.js', __FILE__), array('jquery'), '1.0', true); 320 wp_enqueue_script('htmlentities-script', plugins_url('//cdn.jsdelivr.net/gh/mathiasbynens/[email protected]/he.min.js', __FILE__), array('jquery'), '1.2.0', true);320 wp_enqueue_script('htmlentities-script', '//cdn.jsdelivr.net/gh/mathiasbynens/[email protected]/he.min.js', array('jquery'), '1.2.0', true); 321 321 //it shouldn't be necessary to call update_option here, 322 322 //because even though it's theoretically possible now to set all options inside the shortcode … … 658 658 wp_enqueue_style('wp-jquery-ui-dialog'); 659 659 wp_enqueue_style('bibleget-popup', plugins_url('css/popup.css', __FILE__)); 660 wp_enqueue_script('htmlentities-script', plugins_url('//cdn.jsdelivr.net/gh/mathiasbynens/[email protected]/he.min.js', __FILE__), array('jquery'), '1.2.0', true);660 wp_enqueue_script('htmlentities-script', '//cdn.jsdelivr.net/gh/mathiasbynens/[email protected]/he.min.js', array('jquery'), '1.2.0', true); 661 661 if (!wp_style_is('fontawesome', 'enqueued')) { 662 662 if ( false === isFontAwesomeEnqueued() ) { -
bibleget-io/trunk/includes/BibleGetSettingsPage.php
r3037594 r3037600 760 760 curl_setopt($ch2, CURLOPT_RETURNTRANSFER, TRUE); 761 761 if( false === self::isLocalIp( $_SERVER['SERVER_ADDR'] ) ) { 762 curl_setopt($ch , CURLOPT_INTERFACE, $_SERVER['SERVER_ADDR']);762 curl_setopt($ch2, CURLOPT_INTERFACE, $_SERVER['SERVER_ADDR']); 763 763 } 764 764 if (ini_get('open_basedir') === false) { … … 781 781 curl_setopt($ch3, CURLOPT_RETURNTRANSFER, TRUE); 782 782 if( false === self::isLocalIp( $_SERVER['SERVER_ADDR'] ) ) { 783 curl_setopt($ch , CURLOPT_INTERFACE, $_SERVER['SERVER_ADDR']);783 curl_setopt($ch3, CURLOPT_INTERFACE, $_SERVER['SERVER_ADDR']); 784 784 } 785 785 //declaring acceptance of woff2 will make it possible to download the compressed version of the font with only the requested characters -
bibleget-io/trunk/vendor/composer/installed.php
r3037594 r3037600 2 2 'root' => array( 3 3 'name' => 'johnrdorazio/bibleget-wordpress', 4 'pretty_version' => ' 7.9',5 'version' => ' 7.9.0.0',6 'reference' => ' 61404f08eee28a28cac780ecbb16dd382c538117',4 'pretty_version' => '8.0', 5 'version' => '8.0.0.0', 6 'reference' => 'a0829761f32786d6f5e552d56d22cb704af569fc', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 12 12 'versions' => array( 13 13 'johnrdorazio/bibleget-wordpress' => array( 14 'pretty_version' => ' 7.9',15 'version' => ' 7.9.0.0',16 'reference' => ' 61404f08eee28a28cac780ecbb16dd382c538117',14 'pretty_version' => '8.0', 15 'version' => '8.0.0.0', 16 'reference' => 'a0829761f32786d6f5e552d56d22cb704af569fc', 17 17 'type' => 'wordpress-plugin', 18 18 'install_path' => __DIR__ . '/../../',
Note: See TracChangeset
for help on using the changeset viewer.