Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wpcomsp-simple-events",
"version": "2.0.6",
"version": "2.0.7",
"description": "A simple Gutenberg-first event management plugin that integrates with WooCommerce Box Office.",
"author": {
"name": "WordPress.com Special Projects Team",
Expand Down Expand Up @@ -65,4 +65,4 @@
"dependencies": {
"ajv": "^8.17.1"
}
}
}
6 changes: 3 additions & 3 deletions plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Simple Events Plugin bootstrap file.
*
* @since 1.0.0
* @version 2.0.6
* @version 2.0.7
* @author WordPress.com Special Projects
* @license GPL-3.0-or-later
*
Expand All @@ -13,7 +13,7 @@
* Description: Event management frontend for WooCommerce Box Office.
* Requires at least: 6.2
* Tested up to: 6.4
* Version: 2.0.6
* Version: 2.0.7
* Requires PHP: 8.0
* Author: WordPress.com Special Projects
* Author URI: https://wpspecialprojects.wordpress.com
Expand All @@ -31,7 +31,7 @@
function_exists( 'get_plugin_data' ) || require_once ABSPATH . 'wp-admin/includes/plugin.php';
define( 'SE_METADATA', get_plugin_data( __FILE__, false, false ) );

define( 'SE_VERSION', '2.0.5' );
define( 'SE_VERSION', '2.0.7' );
define( 'SE_BASENAME', plugin_basename( __FILE__ ) );
define( 'SE_PLUGIN_DIR', untrailingslashit( plugin_dir_path( __FILE__ ) ) );
define( 'SE_PLUGIN_URL', untrailingslashit( plugin_dir_url( __FILE__ ) ) );
Expand Down
Binary file removed simple-events.zip
Binary file not shown.
1 change: 0 additions & 1 deletion src/classes/class-date-display-formatter.php
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,6 @@ private function render_date_list_grouped( array $event_dates, string $existing_
// Iterate over each group, and break them down to the starting month.
foreach ( $groups as $group ) {
// Create the time label.

$time_label = $group[0]['all_day'] ? SE_Settings::get_all_day_message() : null;

if ( ! $time_label ) {
Expand Down