Plugin Directory

Changeset 2540728


Ignore:
Timestamp:
06/01/2021 01:48:35 PM (5 years ago)
Author:
dfroberg
Message:

Update to commit 3993926 from https://gitlab.froberg.org/dfroberg/dailybrief.git

Includes the following commit(s):

commit 3993926e2c6a9e404ed543e3d981242b72e73841
Author: Danny Froberg <danny.froberg@…>

Bumped Version

M dailybrief.php
M readme.md
M readme.txt

commit df3142ca95cf4ea7ee37640956c9b04fd30fb62e
Author: Danny Froberg <danny.froberg@…>

Reversed the check for plugin detection

M dailybrief.php

Location:
dailybrief/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • dailybrief/trunk/dailybrief.php

    r2540637 r2540728  
    1616 * Plugin URI:        https://github.com/dfroberg/dailybrief
    1717 * Description:       WordPress plugin with WP-CLI support to generate a daily brief of a previous day or periods posts.
    18  * Version:           1.1.00
     18 * Version:           1.1.01
    1919 * Author:            Daniel Froberg
    2020 * Author URI:        https://www.froberg.org
     
    3636 * Rename this for your plugin and update it as you release new versions.
    3737 */
    38 define( 'DAILYBRIEF_VERSION', '1.1.00' );
     38define( 'DAILYBRIEF_VERSION', '1.1.01' );
    3939
    4040if ( defined( 'WP_CLI' ) && WP_CLI ) {
     
    5050 * Check if SteemPress is Installed.
    5151 */
    52 if ( ! class_exists( 'Steempress_sp_Admin' ) ) {
     52if ( class_exists( 'Steempress_sp_Admin' ) ) {
    5353    define( 'DAILYBRIEF_DETECTED_STEEMPRESS', true );
    5454}
     
    5757 * Check if Exxp is Installed.
    5858 */
    59 if ( ! class_exists( 'Exxp_wp_Admin' ) ) {
     59if ( class_exists( 'Exxp_wp_Admin' ) ) {
    6060    define( 'DAILYBRIEF_DETECTED_EXXP', true );
    6161}
  • dailybrief/trunk/readme.md

    r2540637 r2540728  
    9494## Changelog ##
    9595
     96### 1.1.01 &mdash; 1 of June, 2021 ###
     97* Fixed typo in Helper plugin detection
     98
    9699### 1.1.00 &mdash; 27 of May, 2021 ###
    97100* Replaced integration of SteemPress with Exxp 2.6.8 plugin, plus added warnings if SteemPress plugin is still in use and disable publishing if that is the case.
  • dailybrief/trunk/readme.txt

    r2540637 r2540728  
    8585
    8686== Changelog ==
     87= 1.1.01 &mdash; 1 of June, 2021 =
     88* Fixed typo in Helper plugin detection
     89
    8790= 1.1.00 &mdash; 27 of May, 2021 =
    8891* Replaced integration of SteemPress with Exxp 2.6.8 plugin, plus added warnings if SteemPress plugin is still in use and disable publishing if that is the case.
Note: See TracChangeset for help on using the changeset viewer.