Changeset 2540728
- Timestamp:
- 06/01/2021 01:48:35 PM (5 years ago)
- Location:
- dailybrief/trunk
- Files:
-
- 3 edited
-
dailybrief.php (modified) (4 diffs)
-
readme.md (modified) (1 diff)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
dailybrief/trunk/dailybrief.php
r2540637 r2540728 16 16 * Plugin URI: https://github.com/dfroberg/dailybrief 17 17 * Description: WordPress plugin with WP-CLI support to generate a daily brief of a previous day or periods posts. 18 * Version: 1.1.0 018 * Version: 1.1.01 19 19 * Author: Daniel Froberg 20 20 * Author URI: https://www.froberg.org … … 36 36 * Rename this for your plugin and update it as you release new versions. 37 37 */ 38 define( 'DAILYBRIEF_VERSION', '1.1.0 0' );38 define( 'DAILYBRIEF_VERSION', '1.1.01' ); 39 39 40 40 if ( defined( 'WP_CLI' ) && WP_CLI ) { … … 50 50 * Check if SteemPress is Installed. 51 51 */ 52 if ( !class_exists( 'Steempress_sp_Admin' ) ) {52 if ( class_exists( 'Steempress_sp_Admin' ) ) { 53 53 define( 'DAILYBRIEF_DETECTED_STEEMPRESS', true ); 54 54 } … … 57 57 * Check if Exxp is Installed. 58 58 */ 59 if ( !class_exists( 'Exxp_wp_Admin' ) ) {59 if ( class_exists( 'Exxp_wp_Admin' ) ) { 60 60 define( 'DAILYBRIEF_DETECTED_EXXP', true ); 61 61 } -
dailybrief/trunk/readme.md
r2540637 r2540728 94 94 ## Changelog ## 95 95 96 ### 1.1.01 — 1 of June, 2021 ### 97 * Fixed typo in Helper plugin detection 98 96 99 ### 1.1.00 — 27 of May, 2021 ### 97 100 * 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 85 85 86 86 == Changelog == 87 = 1.1.01 — 1 of June, 2021 = 88 * Fixed typo in Helper plugin detection 89 87 90 = 1.1.00 — 27 of May, 2021 = 88 91 * 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.