Plugin Directory

Changeset 3037600


Ignore:
Timestamp:
02/18/2024 11:43:01 PM (22 months ago)
Author:
Lwangaman
Message:

Update to version 8.0 from GitHub

Location:
bibleget-io
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • bibleget-io/tags/8.0/bibleget-io.php

    r3037594 r3037600  
    44 * Plugin URI: https://www.bibleget.io/
    55 * 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.9
     6 * Version: 8.0
    77 * Requires at least: 5.6
    88 * Requires PHP: 7.4
    99 * Author: John Romano D'Orazio
    1010 * Author URI: https://www.johnromanodorazio.com/
    11  * License: GPLv3
     11 * License: GPLv2 or later
    1212 * Text Domain: bibleget-io
    1313 * Domain Path: /languages/
     
    3131
    3232
    33 define("BIBLEGETPLUGINVERSION", "v7_9");
     33define("BIBLEGETPLUGINVERSION", "v8_0");
    3434
    3535if (!defined('ABSPATH')) {
     
    318318        if( $isShortcode ) {
    319319            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);
    321321            //it shouldn't be necessary to call update_option here,
    322322            //because even though it's theoretically possible now to set all options inside the shortcode
     
    658658    wp_enqueue_style('wp-jquery-ui-dialog');
    659659    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);
    661661    if (!wp_style_is('fontawesome', 'enqueued')) {
    662662        if ( false === isFontAwesomeEnqueued() ) {
  • bibleget-io/tags/8.0/includes/BibleGetSettingsPage.php

    r3037594 r3037600  
    760760                            curl_setopt($ch2, CURLOPT_RETURNTRANSFER, TRUE);
    761761                            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']);
    763763                            }
    764764                            if (ini_get('open_basedir') === false) {
     
    781781                                    curl_setopt($ch3, CURLOPT_RETURNTRANSFER, TRUE);
    782782                                    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']);
    784784                                    }
    785785                                    //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  
    22    'root' => array(
    33        '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',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    1212    'versions' => array(
    1313        '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',
    1717            'type' => 'wordpress-plugin',
    1818            'install_path' => __DIR__ . '/../../',
  • bibleget-io/trunk/bibleget-io.php

    r3037594 r3037600  
    44 * Plugin URI: https://www.bibleget.io/
    55 * 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.9
     6 * Version: 8.0
    77 * Requires at least: 5.6
    88 * Requires PHP: 7.4
    99 * Author: John Romano D'Orazio
    1010 * Author URI: https://www.johnromanodorazio.com/
    11  * License: GPLv3
     11 * License: GPLv2 or later
    1212 * Text Domain: bibleget-io
    1313 * Domain Path: /languages/
     
    3131
    3232
    33 define("BIBLEGETPLUGINVERSION", "v7_9");
     33define("BIBLEGETPLUGINVERSION", "v8_0");
    3434
    3535if (!defined('ABSPATH')) {
     
    318318        if( $isShortcode ) {
    319319            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);
    321321            //it shouldn't be necessary to call update_option here,
    322322            //because even though it's theoretically possible now to set all options inside the shortcode
     
    658658    wp_enqueue_style('wp-jquery-ui-dialog');
    659659    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);
    661661    if (!wp_style_is('fontawesome', 'enqueued')) {
    662662        if ( false === isFontAwesomeEnqueued() ) {
  • bibleget-io/trunk/includes/BibleGetSettingsPage.php

    r3037594 r3037600  
    760760                            curl_setopt($ch2, CURLOPT_RETURNTRANSFER, TRUE);
    761761                            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']);
    763763                            }
    764764                            if (ini_get('open_basedir') === false) {
     
    781781                                    curl_setopt($ch3, CURLOPT_RETURNTRANSFER, TRUE);
    782782                                    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']);
    784784                                    }
    785785                                    //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  
    22    'root' => array(
    33        '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',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    1212    'versions' => array(
    1313        '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',
    1717            'type' => 'wordpress-plugin',
    1818            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.