From c6fe97ddd336962c5af08a4ec9e4784aa4126b1d Mon Sep 17 00:00:00 2001 From: Arno Welzel Date: Mon, 18 Dec 2023 23:47:16 +0100 Subject: [PATCH] Bump version and update changelog --- readme.txt | 6 +++++- timed-content.php | 4 ++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/readme.txt b/readme.txt index 8dff2e2..fb1da5f 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Contributors: kjvtough, awelzel Tags: marketing, marketing tool, post, page, date, time, timer, timed, show, hide, content, schedule, display Requires at least: 3.8 Tested up to: 6.3 -Stable tag: 2.78 +Stable tag: 2.79 License: GPL2 Plugin to show or hide portions of a Page or Post based on specific date/time characteristics. @@ -49,6 +49,10 @@ If you want to use Timed Content with Gutenberg you have to add a "Classic" bloc == Changelog == += 2.79 = + +* Fix backend code for admin dashboard "right now" output of timed content rule links. + = 2.78 = * Fixed a JavaScript error message in the backend UI. diff --git a/timed-content.php b/timed-content.php index 988716f..0b148ee 100644 --- a/timed-content.php +++ b/timed-content.php @@ -6,7 +6,7 @@ Plugin URI: http://wordpress.org/plugins/timed-content/ Description: Plugin to show or hide portions of a Page or Post based on specific date/time characteristics. These actions can either be processed either server-side or client-side, depending on the desired effect. Author: K. Tough, Arno Welzel, Enrico Bacis -Version: 2.78 +Version: 2.79 Author URI: http://wordpress.org/plugins/timed-content/ */ defined( 'ABSPATH' ) or die(); @@ -14,7 +14,7 @@ require 'lib/class-customfieldsinterface.php'; require 'lib/class-timedcontentplugin.php'; -define( 'TIMED_CONTENT_VERSION', '2.78' ); +define( 'TIMED_CONTENT_VERSION', '2.79' ); define( 'TIMED_CONTENT_SLUG', 'timed-content' ); define( 'TIMED_CONTENT_PLUGIN_URL', plugins_url() . '/' . TIMED_CONTENT_SLUG ); define( 'TIMED_CONTENT_SHORTCODE_CLIENT', 'timed-content-client' );