From bb90b0310da50a0cff674410948eb8e9d46d9615 Mon Sep 17 00:00:00 2001 From: Vlad Olaru Date: Mon, 15 Aug 2022 12:13:49 +0300 Subject: [PATCH] Version bump to v1.0.9 --- README.txt | 10 +++++++--- js/HoursParser.js | 1 + open-hours.php | 4 ++-- 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/README.txt b/README.txt index 5c36bd2..ddafc17 100644 --- a/README.txt +++ b/README.txt @@ -2,8 +2,8 @@ Contributors: pixelgrade, jumparound, vlad.olaru Tags: restaurant, bar, business hours, currently open, date, hours, opening hours, osteria, overview, shortcode, status, table, time, widget Requires at least: 4.9.0 -Tested up to: 5.2.0 -Stable tag: 1.0.8 +Tested up to: 6.0 +Stable tag: 1.0.9 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -23,6 +23,10 @@ Made with love by Pixelgrade! == Changelog == += 1.0.9 = +* Better handling of broken schedules +* Ensure compatibility with the latest WordPress version (6.0) + = 1.0.8 = * We did several compatibility checks with the latest WordPress releases, so everything will be working smoothly @@ -51,4 +55,4 @@ Made with love by Pixelgrade! * removed 'use short day name' option from the current status widget = 1.0.0 = -* Plugin init \ No newline at end of file +* Plugin init diff --git a/js/HoursParser.js b/js/HoursParser.js index 0cb8901..22fdb9e 100755 --- a/js/HoursParser.js +++ b/js/HoursParser.js @@ -1,4 +1,5 @@ // Copyright 2014 Foursquare Labs Inc. All Rights Reserved. +// https://github.com/foursquare/hoursparser.js var fourSq = fourSq || {}; fourSq.util = fourSq.util || {} diff --git a/open-hours.php b/open-hours.php index acbb4b5..7c458b0 100644 --- a/open-hours.php +++ b/open-hours.php @@ -4,7 +4,7 @@ Plugin URI: https://pixelgrade.com Description: An easy to use opening hours WordPress plugin manager for any kind of venue. Author: pixelgrade -Version: 1.0.7 +Version: 1.0.9 Author URI: https://pixelgrade.com Text Domain: open-hours */ @@ -13,7 +13,7 @@ function OpenPlugin() { require_once( plugin_dir_path( __FILE__ ) . 'includes/class-open.php' ); - $instance = OpenPlugin::instance( __FILE__, '1.0.8' ); + $instance = OpenPlugin::instance( __FILE__, '1.0.9' ); return $instance; }