Plugin Directory

Changeset 3210231


Ignore:
Timestamp:
12/19/2024 05:46:17 AM (12 months ago)
Author:
mnelson4
Message:

3.27.5

Location:
print-my-blog/trunk
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • print-my-blog/trunk/assets/styles/pmb-pro-print-page.css

    r2999696 r3210231  
    2121    -prince-float:snap;
    2222    -prince-float-policy:in-order;
     23}
     24
     25.pmb-wide{
     26    column-span: all;
    2327}
    2428
  • print-my-blog/trunk/designs/pdf/digital/mayer/description.php

    r2800144 r3210231  
    4848    );
    4949    ?></p>
    50 <p><?php esc_html_e('Main matter defaults to being divided into columns. To force something to use the full page width, add the CSS class "mayer-wide" inside the content.', 'print-my-blog'); ?></p>
     50<p><?php esc_html_e('Main matter defaults to being divided into columns. To force something to use the full page width, add the CSS class "pmb-wide" inside the content.', 'print-my-blog'); ?></p>
  • print-my-blog/trunk/printmyblog.php

    r3171997 r3210231  
    1111 * Author: Michael Nelson
    1212 * Author URI: https://printmy.blog
    13  * Version: 3.27.4
     13 * Version: 3.27.5
    1414 * Requires at least: 4.7
    1515 * Requires PHP: 5.4
     
    120120} else {
    121121    // it's all good! start bootstraping PMB.
    122     define( 'PMB_VERSION', '3.27.4' );
     122    define( 'PMB_VERSION', '3.27.5' );
    123123    define( 'PMB_DIR', wp_normalize_path( __DIR__ ) . '/' );
    124124    define( 'PMB_MAIN_FILE', __FILE__ );
  • print-my-blog/trunk/readme.txt

    r3171997 r3210231  
    88License URI: https://www.gnu.org/licenses/gpl-2.0.html
    99Donate link: https://printmy.blog/pricing/
    10 Stable tag: 3.27.4
     10Stable tag: 3.27.5
    1111
    1212Make printing your blog easy and impressive. For you & your visitors. One post or thousands.
     
    459459
    460460== Changelog ==
     461
     462= 3.27.5 December 18, 2024 =
     463* Feature: for Pro Print, introduce "pmb-wide" CSS class, which is just like "mayer-wide" but applies to other designs too.
     464* Enhancement: for Pro Print, set a larger maximum size for images before resizing them
     465* Bugfix: for Pro Print, avoid error on Edit Content step by checking for negative index
     466* Compatibility: avoid overwriting jQuery UI styles
     467
    461468= 3.27.4 October 19, 2024 =
    462469* Compatibility: for Pro Print, fix Javascript error sometimes occuring with Hustle plugin
  • print-my-blog/trunk/src/PrintMyBlog/controllers/Common.php

    r3028357 r3210231  
    4848        );
    4949        wp_register_style(
    50             'jquery-ui',
     50            'pmb-jquery-ui',
    5151            PMB_ASSETS_URL . 'styles/libs/jquery-ui/jquery-ui.min.css',
    5252            array(),
     
    144144            'pmb-setup-page',
    145145            PMB_ASSETS_URL . 'styles/setup-page.css',
    146             ['pmb_common', 'pmb-select2', 'jquery-ui'],
     146            ['pmb_common', 'pmb-select2', 'pmb-jquery-ui'],
    147147            filemtime(PMB_ASSETS_DIR . 'styles/setup-page.css')
    148148        );
  • print-my-blog/trunk/src/PrintMyBlog/orm/managers/ProjectSectionManager.php

    r3105782 r3210231  
    229229            if ($flat_sections[$index]->getParentId() === intval($current_parent_id)) {
    230230                $nested_sections[] = $flat_sections[$index];
    231             } elseif (intval($flat_sections[$index - 1]->getId()) === intval($flat_sections[$index]->getParentId())) {
     231            } elseif ($index > 0 && intval($flat_sections[$index - 1]->getId()) === intval($flat_sections[$index]->getParentId())) {
    232232                $subs = $this->nestSections(
    233233                    $flat_sections,
  • print-my-blog/trunk/src/PrintMyBlog/services/generators/PdfGenerator.php

    r3087992 r3210231  
    141141        $max_image_size = $this->design->getSetting( 'image_size' );
    142142        if ( !$max_image_size ) {
    143             $max_image_size = 1200;
     143            $max_image_size = 2000;
    144144        }
    145145        $prince_js_vars['max_image_size'] = $max_image_size;
Note: See TracChangeset for help on using the changeset viewer.