Changeset 3190133
- Timestamp:
- 11/16/2024 10:59:18 AM (14 months ago)
- Location:
- shop-calendar
- Files:
-
- 4 edited
- 1 copied
-
tags/1.8.1 (copied) (copied from shop-calendar/trunk)
-
tags/1.8.1/readme.txt (modified) (2 diffs)
-
tags/1.8.1/shop-calendar.php (modified) (5 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/shop-calendar.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
shop-calendar/tags/1.8.1/readme.txt
r3189246 r3190133 4 4 Requires at least: 4.0 5 5 Tested up to: 6.7 6 Stable tag: 1.8 6 Stable tag: 1.8.1 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 29 29 30 30 == Changelog == 31 = 1.8.1 = 32 Forgot to add the version number. 33 31 34 = 1.8 = 32 35 Supports PHP 8.3.9 & WP 6.7 -
shop-calendar/tags/1.8.1/shop-calendar.php
r3189246 r3190133 4 4 Plugin URI: http://raizzenet.com/ 5 5 Description: 店舗向けのカレンダーで、店休日をウェジットに表示するプラグインです。 6 Version: 1. 7.16 Version: 1.8.1 7 7 Author: Kazunari Matsumoto 8 8 Author URI: http://raizzenet.com/ 9 9 */ 10 const MY_VERSION = '1.7.1';10 const TABLE_VERSION = '1.7.1'; 11 11 12 12 if (class_exists('ShopCalendar')) { … … 35 35 if ($this->options == false) { 36 36 $setting = array( 37 'version' => MY_VERSION,37 'version' => TABLE_VERSION, 38 38 'holiday' => array(), 39 39 'holiday1st' => 0, … … 92 92 } else if (count($this->options) == 11 || count($this->options) == 10) { 93 93 $setting = array( 94 'version' => MY_VERSION,94 'version' => TABLE_VERSION, 95 95 'holiday' => $this->options['holiday'], 96 96 'holiday1st' => $this->options['holiday1st'], … … 149 149 } else if (count($this->options) == 14) { 150 150 $setting = array( 151 'version' => MY_VERSION,151 'version' => TABLE_VERSION, 152 152 'holiday' => $this->options['holiday'], 153 153 'holiday1st' => $this->options['holiday1st'], … … 986 986 $new_input = array(); 987 987 $this->options = get_option('shop_calendar'); 988 $new_input['version'] = MY_VERSION;988 $new_input['version'] = TABLE_VERSION; 989 989 /* 990 990 店休日 -
shop-calendar/trunk/readme.txt
r3189246 r3190133 4 4 Requires at least: 4.0 5 5 Tested up to: 6.7 6 Stable tag: 1.8 6 Stable tag: 1.8.1 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 29 29 30 30 == Changelog == 31 = 1.8.1 = 32 Forgot to add the version number. 33 31 34 = 1.8 = 32 35 Supports PHP 8.3.9 & WP 6.7 -
shop-calendar/trunk/shop-calendar.php
r3189246 r3190133 4 4 Plugin URI: http://raizzenet.com/ 5 5 Description: 店舗向けのカレンダーで、店休日をウェジットに表示するプラグインです。 6 Version: 1. 7.16 Version: 1.8.1 7 7 Author: Kazunari Matsumoto 8 8 Author URI: http://raizzenet.com/ 9 9 */ 10 const MY_VERSION = '1.7.1';10 const TABLE_VERSION = '1.7.1'; 11 11 12 12 if (class_exists('ShopCalendar')) { … … 35 35 if ($this->options == false) { 36 36 $setting = array( 37 'version' => MY_VERSION,37 'version' => TABLE_VERSION, 38 38 'holiday' => array(), 39 39 'holiday1st' => 0, … … 92 92 } else if (count($this->options) == 11 || count($this->options) == 10) { 93 93 $setting = array( 94 'version' => MY_VERSION,94 'version' => TABLE_VERSION, 95 95 'holiday' => $this->options['holiday'], 96 96 'holiday1st' => $this->options['holiday1st'], … … 149 149 } else if (count($this->options) == 14) { 150 150 $setting = array( 151 'version' => MY_VERSION,151 'version' => TABLE_VERSION, 152 152 'holiday' => $this->options['holiday'], 153 153 'holiday1st' => $this->options['holiday1st'], … … 986 986 $new_input = array(); 987 987 $this->options = get_option('shop_calendar'); 988 $new_input['version'] = MY_VERSION;988 $new_input['version'] = TABLE_VERSION; 989 989 /* 990 990 店休日
Note: See TracChangeset
for help on using the changeset viewer.