Plugin Directory

Changeset 3224624


Ignore:
Timestamp:
01/17/2025 08:25:45 PM (15 months ago)
Author:
sophoservices
Message:

version 3.0.4, fixing a plan issue and date picker problem

Location:
bible-reading-plans/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • bible-reading-plans/trunk/README.md

    r3188026 r3224624  
    88Requires at least: 2.8
    99
    10 Tested up to: 6.7
     10Tested up to: 6.7.1
    1111
    1212Requires PHP: 5.6
     
    1414Tested up to PHP: 8.3
    1515
    16 Stable branch: 3.0.3
     16Stable branch: 3.0.4
    1717
    1818License: GPLv3 or later
     
    165165## Upgrade Notice
    166166
     167## 3.0.4
     168
     169Bug fix: Using datepicker on ESV or ASB source would result in fatal exception
     170Bug fix: Corrects a Scripture reference for Book of Common Prayer, 2019, Anglican Church in North America -- Evening Prayer for 10 November.
     171
    167172## 3.0.3
    168173
  • bible-reading-plans/trunk/bible-reading-plans-class.inc.php

    r3184935 r3224624  
    12021202 */
    12031203    protected function add_date_picker_ui () {
    1204         $language_name   = $this->dbp_versions[$this->lng_code_iso][0]['language_name'];
     1204        if (is_array($this->dbp_versions)) {
     1205            $language_name   = $this->dbp_versions[$this->lng_code_iso][0]['language_name'];
     1206        } else { // assume english
     1207            $language_name = "English";
     1208        }
    12051209        if (isset($this->lng_name_to_2_ltr_cd[$language_name]) && $this->lng_name_to_2_ltr_cd[$language_name]) {
    12061210            $lang_code_2ltr = $this->lng_name_to_2_ltr_cd[$language_name];
  • bible-reading-plans/trunk/bible-reading-plans.php

    r3188026 r3224624  
    1010 * Description:         This plugin provides the ability to embed Bible reading plans into a post or page using shortcode of the form <code>[bible-reading-plan source="DBP" reading_plan="mcheyne" bible_id="ENGNAS" bible_all_audio_id="" bible_ot_audio_id="" bible_nt_audio_id=""]</code>. **The last three parameters are new Version 3.0 and provide access to audio versions of the Scriptures, this shortcode applies only to the DBP source and *provides access to over 2000 Bible versions in nearly 1900 languages,* with more versions and languages being added regularly.** Three sources for the Scriptures displayed for each plan are available: American Bible Society API, Version 1 (API.Bible), The Bible Brain (aka Digital Bible Platform) API, Version 4 (faithcomesbyhearing.com/bible-brain/developer-documentation), and the ESV Bible Web Service API, Version 3 (api.esv.org). There are 16 different Bible reading plans available with the plugin, plus the ability to create ones own reading plan using an auxiliary, premium plugin.
    1111
    12  * Version:             3.0.3
     12 * Version:             3.0.4
    1313 * Requires at least:   2.8
    14  * Tested up to:        6.7
     14 * Tested up to:        6.7.1
    1515 * Requires PHP:        5.6
    1616 * Tested up to PHP:    8.3
  • bible-reading-plans/trunk/includes/plans/bcp19-acna-evening.php

    r3184935 r3224624  
    1005510055    2 =>
    1005610056    array (
    10057       'passage' => 'Luke 4:3',
     10057      'passage' => 'Luke 4:3-end',
    1005810058      'verses' =>
    1005910059      array (
  • bible-reading-plans/trunk/readme.txt

    r3188026 r3224624  
    33Tags: Bible reading plans, shortcode, Bible, audio Bible reading plans, daily Bible readings
    44Requires at least: 2.8
    5 Tested up to: 6.7
     5Tested up to: 6.7.1
    66Requires PHP: 5.6
    77Tested up to PHP: 8.3
    8 Stable tag: 3.0.3
     8Stable tag: 3.0.4
    99License: GPLv3 or later
    1010License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    158158== Upgrade Notice ==
    159159
     160= 3.0.4 =
     161
     162Bug fix: Using datepicker on ESV or ASB source would result in fatal exception
     163
     164Bug fix: Corrects a Scripture reference for Book of Common Prayer, 2019, Anglican Church in North America -- Evening Prayer for 10 November.
     165
    160166= 3.0.3 =
    161167
Note: See TracChangeset for help on using the changeset viewer.