Skip to content

Commit 2b933a7

Browse files
Andrei EugenAndrei Eugen
authored andcommitted
updated Readme
1 parent acbe537 commit 2b933a7

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

README.txt

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Contributors: pixelgrade, jumparound
33
Tags: restaurant, bar, business hours, currently open, date, hours, opening hours, osteria, overview, shortcode, status, table, time, widget
44
Requires at least: 4.6.1
55
Tested up to: 4.7.2
6-
Stable tag: 1.0.0
6+
Stable tag: 1.0.1
77
License: GPLv2 or later
88
License URI: http://www.gnu.org/licenses/gpl-2.0.html
99

@@ -23,5 +23,10 @@ Made with love by Pixelgrade!
2323

2424
== Changelog ==
2525

26+
= 1.0.1 =
27+
* fixed php 5.2 compatibility issues
28+
* added default schedule example
29+
* removed 'use short day name' option from the current status widget
30+
2631
= 1.0.0 =
2732
* Plugin init

includes/class-open.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ class OpenPlugin {
3131
*
3232
* @since 1.0.0
3333
*/
34-
public function __construct() {
34+
public function __construct( $file, $version ) {
3535

3636
$this->plugin_name = 'open';
37-
$this->version = '1.0.0';
37+
$this->version = $version;
3838

3939
$this->define_hooks();
4040
}

open-hours.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,23 @@
22

33
/**
44
* @package Open Hours
5-
* @version 1.0
5+
* @version 1.1
66
*/
77

88
/*
99
Plugin Name: Open Hours
1010
Plugin URI: https://pixelgrade.com
1111
Description: An easy to use opening hours WordPress plugin manager for any kind of venue.
1212
Author: pixelgrade
13-
Version: 1.0
13+
Version: 1.0.1
1414
Author URI: https://pixelgrade.com
1515
*/
1616

1717
defined( 'ABSPATH' ) or die( 'No script kiddies please!' );
1818

1919
function OpenPlugin() {
2020
require_once( plugin_dir_path( __FILE__ ) . '/includes/class-open.php' );
21-
$instance = new OpenPlugin( __FILE__, '1.0.0' );
21+
$instance = new OpenPlugin( __FILE__, '1.0.1' );
2222

2323
return $instance;
2424
}

0 commit comments

Comments
 (0)