Plugin Directory

Changeset 3190133


Ignore:
Timestamp:
11/16/2024 10:59:18 AM (14 months ago)
Author:
issey7
Message:

version 1.8.1

Location:
shop-calendar
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • shop-calendar/tags/1.8.1/readme.txt

    r3189246 r3190133  
    44Requires at least: 4.0
    55Tested up to: 6.7
    6 Stable tag: 1.8
     6Stable tag: 1.8.1
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    2929
    3030== Changelog ==
     31= 1.8.1 =
     32Forgot to add the version number.
     33
    3134= 1.8 =
    3235Supports PHP 8.3.9 & WP 6.7
  • shop-calendar/tags/1.8.1/shop-calendar.php

    r3189246 r3190133  
    44Plugin URI: http://raizzenet.com/
    55Description: 店舗向けのカレンダーで、店休日をウェジットに表示するプラグインです。
    6 Version: 1.7.1
     6Version: 1.8.1
    77Author: Kazunari Matsumoto
    88Author URI: http://raizzenet.com/
    99*/
    10 const MY_VERSION = '1.7.1';
     10const TABLE_VERSION = '1.7.1';
    1111
    1212if (class_exists('ShopCalendar')) {
     
    3535        if ($this->options == false) {
    3636            $setting = array(
    37                 'version' => MY_VERSION,
     37                'version' => TABLE_VERSION,
    3838                'holiday' => array(),
    3939                'holiday1st' => 0,
     
    9292        } else if (count($this->options) == 11 || count($this->options) == 10) {
    9393            $setting = array(
    94                 'version' => MY_VERSION,
     94                'version' => TABLE_VERSION,
    9595                'holiday' => $this->options['holiday'],
    9696                'holiday1st' => $this->options['holiday1st'],
     
    149149        } else if (count($this->options) == 14) {
    150150            $setting = array(
    151                 'version' => MY_VERSION,
     151                'version' => TABLE_VERSION,
    152152                'holiday' => $this->options['holiday'],
    153153                'holiday1st' => $this->options['holiday1st'],
     
    986986        $new_input = array();
    987987        $this->options = get_option('shop_calendar');
    988         $new_input['version'] = MY_VERSION;
     988        $new_input['version'] = TABLE_VERSION;
    989989        /*
    990990            店休日
  • shop-calendar/trunk/readme.txt

    r3189246 r3190133  
    44Requires at least: 4.0
    55Tested up to: 6.7
    6 Stable tag: 1.8
     6Stable tag: 1.8.1
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    2929
    3030== Changelog ==
     31= 1.8.1 =
     32Forgot to add the version number.
     33
    3134= 1.8 =
    3235Supports PHP 8.3.9 & WP 6.7
  • shop-calendar/trunk/shop-calendar.php

    r3189246 r3190133  
    44Plugin URI: http://raizzenet.com/
    55Description: 店舗向けのカレンダーで、店休日をウェジットに表示するプラグインです。
    6 Version: 1.7.1
     6Version: 1.8.1
    77Author: Kazunari Matsumoto
    88Author URI: http://raizzenet.com/
    99*/
    10 const MY_VERSION = '1.7.1';
     10const TABLE_VERSION = '1.7.1';
    1111
    1212if (class_exists('ShopCalendar')) {
     
    3535        if ($this->options == false) {
    3636            $setting = array(
    37                 'version' => MY_VERSION,
     37                'version' => TABLE_VERSION,
    3838                'holiday' => array(),
    3939                'holiday1st' => 0,
     
    9292        } else if (count($this->options) == 11 || count($this->options) == 10) {
    9393            $setting = array(
    94                 'version' => MY_VERSION,
     94                'version' => TABLE_VERSION,
    9595                'holiday' => $this->options['holiday'],
    9696                'holiday1st' => $this->options['holiday1st'],
     
    149149        } else if (count($this->options) == 14) {
    150150            $setting = array(
    151                 'version' => MY_VERSION,
     151                'version' => TABLE_VERSION,
    152152                'holiday' => $this->options['holiday'],
    153153                'holiday1st' => $this->options['holiday1st'],
     
    986986        $new_input = array();
    987987        $this->options = get_option('shop_calendar');
    988         $new_input['version'] = MY_VERSION;
     988        $new_input['version'] = TABLE_VERSION;
    989989        /*
    990990            店休日
Note: See TracChangeset for help on using the changeset viewer.