Plugin Directory

Changeset 1085158


Ignore:
Timestamp:
02/08/2015 09:41:45 PM (11 years ago)
Author:
birchpress
Message:

release version 1.10

Location:
birchschedule/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • birchschedule/trunk/birchschedule.php

    r1026583 r1085158  
    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.9
     7  Version: 1.10
    88  Author: BirchPress
    99  Author URI: http://www.birchpress.com
     
    1111 */
    1212
    13 if (!defined('ABSPATH'))
    14     exit;
     13if ( defined( 'ABSPATH' ) && !defined( 'BIRCHSCHEDULE' ) ) {
    1514
    16 require_once 'framework/includes/birchpress.inc.php';
     15    define( 'BIRCHSCHEDULE', true );
    1716
    18 require_once 'includes/package.php';
    19 require_once 'includes/legacy_hooks.php';
     17    require_once 'lib/vendor/autoload.php';
    2018
    21 global $birchschedule, $birchpress;
     19    require_once 'framework/includes/birchpress.inc.php';
    2220
    23 $birchschedule->set_plugin_file_path(__FILE__);
    24 $birchpress->set_plugin_url($birchschedule->plugin_url());
     21    require_once 'includes/legacy_hooks.php';
    2522
    26 $birchschedule->product_version = '1.9';
    27 $birchschedule->product_name = 'BirchPress Scheduler';
    28 $birchschedule->product_code = 'birchschedule';
     23    require_once 'includes/package.php';
    2924
    30 $birchschedule->run();
     25    global $birchschedule, $birchpress;
    3126
     27    $birchschedule->set_plugin_file_path( __FILE__ );
     28    $birchpress->set_plugin_url( $birchschedule->plugin_url() );
     29
     30    $birchschedule->set_product_version( '1.10' );
     31    $birchschedule->set_product_name( 'BirchPress Scheduler' );
     32    $birchschedule->set_product_code( 'birchschedule' );
     33
     34    $birchschedule->run();
     35
     36}
  • birchschedule/trunk/readme.txt

    r1026583 r1085158  
    33Tags: appointment, appointment booking, appointment booking calendar, appointment calendar, appointment scheduling, book appointment, booking calendar, scheduling, booking form, reservation, online scheduling
    44Requires at least: 3.7
    5 Tested up to: 4.0
    6 Stable tag: 1.9
     5Tested up to: 4.1
     6Stable tag: 1.10
    77
    88BirchPress Scheduler is an appointment booking and online scheduling plugin that allows service businesses to take online bookings.
     
    9191== Changelog ==
    9292
     93= 1.10 =
     94* Improvement: open ‘Edit Appointment’ page in a new browser tab by right clicking the appointment title in Admin calendar.
     95* Bug Fix: remove the white part overlapping the menu of the dashboard on the left side.
     96* Improvement: performance improvements on appointment editting.
     97
    9398= 1.9 =
    9499* Enhancement: improve the performance of the admin calendar.
Note: See TracChangeset for help on using the changeset viewer.