Plugin Directory

Changeset 1649996


Ignore:
Timestamp:
05/02/2017 10:57:40 PM (9 years ago)
Author:
birchpress
Message:

version 1.11.0

Location:
birchschedule/trunk
Files:
412 added
2 edited

Legend:

Unmodified
Added
Removed
  • birchschedule/trunk/birchschedule.php

    r1474349 r1649996  
    55  Plugin URI: http://www.birchpress.com
    66  Description: An appointment booking and online scheduling plugin that allows service businesses to take online bookings.
    7   Version: 1.10.10
     7  Version: 1.11.0
    88  Author: BirchPress
    99  Author URI: http://www.birchpress.com
     
    1515    function birchschedule_main() {
    1616
    17         require_once 'lib/vendor/autoload.php';
     17        if ( version_compare( PHP_VERSION, '7.0.0' ) >= 0 ) {
     18            require_once 'lib/sabre4/autoload.php';
     19        } else {
     20            require_once 'lib/vendor/autoload.php';
     21        }
    1822        require_once 'loader.php';
    1923
    2024        birchschedule_load( array(
    2125                'plugin_file_path' => __FILE__,
    22                 'product_version' => '1.10.10',
     26                'product_version' => '1.11.0',
    2327                'product_name' => 'BirchPress Scheduler',
    2428                'product_code' => 'birchschedule',
  • birchschedule/trunk/readme.txt

    r1474349 r1649996  
    55Requires at least: 3.7
    66Tested up to: 4.6
    7 Stable tag: 1.10.10
     7Stable tag: 1.11.0
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    9494== Changelog ==
    9595
     96= 1.11.0
     97* Improvement: Upgrade the select2 lib
     98* Improvement: Optimize the UX of admin calendar
     99* Improvement: Remove the lessphp lib
     100* Improvement: Tested with PHP 7
     101* Bug Fix: Fixed a State display problem in the admin
     102
    96103= 1.10.10 =
    97104* tested with WP 4.6
Note: See TracChangeset for help on using the changeset viewer.