Plugin Directory

Changeset 2052611


Ignore:
Timestamp:
03/18/2019 12:30:03 PM (7 years ago)
Author:
dfroberg
Message:

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

Includes the following commit(s):

commit 5f18f3f50568c6a4d35fc457221710b9401f2bfa
Author: Danny Froberg <danny@…>

  • Fix: Debug aside covered options screens on small screen devices.
  • Fix: Fixed select2 JS error on multiple=true and removed it since it's not needed.
  • Fix: Misc checks.

M dailybrief.php

commit 2838d20a8e6e19eb3f13f3b0bf42b6d9ec6de1db
Author: Danny Froberg <danny@…>

  • Fix: Check feature image id

M includes/class-dailybrief.php

commit 7e947d7e77f7b047c954824696a3d50263421103
Author: Danny Froberg <danny@…>

  • Fix: Debug aside covered options screens on small screen devices.
  • Fix: Fixed select2 JS error on multiple=true and removed it since it's not needed.

M admin/class-dailybrief-admin.php
M admin/css/dailybrief-admin.css
M readme.md
M readme.txt

Location:
dailybrief/trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • dailybrief/trunk/admin/class-dailybrief-admin.php

    r2045985 r2052611  
    141141                            dropdownAutoWidth : true,
    142142                            minimumResultsForSearch: -1,
    143                             width: '100%',
    144                             multiple: true
     143                            width: '100%'
    145144                        });
    146145                    });
  • dailybrief/trunk/admin/css/dailybrief-admin.css

    r2039014 r2052611  
    9090    height: 100%;
    9191}
     92/**
     93 * Override on mobile or smaller screens.
     94 */
     95@media only screen and (max-width: 1024px) {
     96    .dailybrief {
     97        width: 100%;
     98    }
     99    .dailybrief .dailybrief-sidebar {
     100        position: inherit;
     101        float: left;
     102        width: 100%;
     103        min-width: 100%;
     104    }
     105}
     106
    92107.dailybrief .dailybrief-sidebar .major-publishing-actions {
    93108    padding: 15px;
  • dailybrief/trunk/dailybrief.php

    r2045985 r2052611  
    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.0.29
     18 * Version:           1.0.30
    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.0.29' );
     38define( 'DAILYBRIEF_VERSION', '1.0.30' );
    3939
    4040if ( defined( 'WP_CLI' ) && WP_CLI ) {
  • dailybrief/trunk/includes/class-dailybrief.php

    r2045985 r2052611  
    11391139            $dailybrief_featured_image_id = attachment_url_to_postid( $this->temp_featured_image_url );
    11401140        }
    1141         if ( false === $dailybrief_featured_image_id ) {
     1141        if ( 0 === $dailybrief_featured_image_id ) {
    11421142            $this->wpcliwarn( 'Unable to set featured image, make sure you have uploaded the image you want to use to your sites media library and set the featured_image_url option with its complete URL.' );
    11431143
  • dailybrief/trunk/readme.md

    r2045985 r2052611  
    9494## Changelog ##
    9595
     96### 1.0.30 &mdash; 18 of March, 2019 ###
     97* Fix: Debug aside covered options screens on small screen devices.
     98* Fix: Fixed select2 JS error on multiple=true and removed it since it's not needed.
     99
    96100### 1.0.29 &mdash; 7 of March, 2019 ###
    97101* New: Enabled select2 & multiple focus categories.
  • dailybrief/trunk/readme.txt

    r2045985 r2052611  
    8686== Changelog ==
    8787
     88= 1.0.30 &mdash; 18 of March, 2019 =
     89* Fix: Debug aside covered options screens on small screen devices.
     90* Fix: Fixed select2 JS error on multiple=true and removed it since it's not needed.
     91
    8892= 1.0.29 &mdash; 7 of March, 2019 =
    8993* New: Enabled select2 & multiple focus categories.
Note: See TracChangeset for help on using the changeset viewer.