Changeset 3210231
- Timestamp:
- 12/19/2024 05:46:17 AM (12 months ago)
- Location:
- print-my-blog/trunk
- Files:
-
- 7 edited
-
assets/styles/pmb-pro-print-page.css (modified) (1 diff)
-
designs/pdf/digital/mayer/description.php (modified) (1 diff)
-
printmyblog.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
-
src/PrintMyBlog/controllers/Common.php (modified) (2 diffs)
-
src/PrintMyBlog/orm/managers/ProjectSectionManager.php (modified) (1 diff)
-
src/PrintMyBlog/services/generators/PdfGenerator.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
print-my-blog/trunk/assets/styles/pmb-pro-print-page.css
r2999696 r3210231 21 21 -prince-float:snap; 22 22 -prince-float-policy:in-order; 23 } 24 25 .pmb-wide{ 26 column-span: all; 23 27 } 24 28 -
print-my-blog/trunk/designs/pdf/digital/mayer/description.php
r2800144 r3210231 48 48 ); 49 49 ?></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 11 11 * Author: Michael Nelson 12 12 * Author URI: https://printmy.blog 13 * Version: 3.27. 413 * Version: 3.27.5 14 14 * Requires at least: 4.7 15 15 * Requires PHP: 5.4 … … 120 120 } else { 121 121 // it's all good! start bootstraping PMB. 122 define( 'PMB_VERSION', '3.27. 4' );122 define( 'PMB_VERSION', '3.27.5' ); 123 123 define( 'PMB_DIR', wp_normalize_path( __DIR__ ) . '/' ); 124 124 define( 'PMB_MAIN_FILE', __FILE__ ); -
print-my-blog/trunk/readme.txt
r3171997 r3210231 8 8 License URI: https://www.gnu.org/licenses/gpl-2.0.html 9 9 Donate link: https://printmy.blog/pricing/ 10 Stable tag: 3.27. 410 Stable tag: 3.27.5 11 11 12 12 Make printing your blog easy and impressive. For you & your visitors. One post or thousands. … … 459 459 460 460 == 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 461 468 = 3.27.4 October 19, 2024 = 462 469 * Compatibility: for Pro Print, fix Javascript error sometimes occuring with Hustle plugin -
print-my-blog/trunk/src/PrintMyBlog/controllers/Common.php
r3028357 r3210231 48 48 ); 49 49 wp_register_style( 50 ' jquery-ui',50 'pmb-jquery-ui', 51 51 PMB_ASSETS_URL . 'styles/libs/jquery-ui/jquery-ui.min.css', 52 52 array(), … … 144 144 'pmb-setup-page', 145 145 PMB_ASSETS_URL . 'styles/setup-page.css', 146 ['pmb_common', 'pmb-select2', ' jquery-ui'],146 ['pmb_common', 'pmb-select2', 'pmb-jquery-ui'], 147 147 filemtime(PMB_ASSETS_DIR . 'styles/setup-page.css') 148 148 ); -
print-my-blog/trunk/src/PrintMyBlog/orm/managers/ProjectSectionManager.php
r3105782 r3210231 229 229 if ($flat_sections[$index]->getParentId() === intval($current_parent_id)) { 230 230 $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())) { 232 232 $subs = $this->nestSections( 233 233 $flat_sections, -
print-my-blog/trunk/src/PrintMyBlog/services/generators/PdfGenerator.php
r3087992 r3210231 141 141 $max_image_size = $this->design->getSetting( 'image_size' ); 142 142 if ( !$max_image_size ) { 143 $max_image_size = 1200;143 $max_image_size = 2000; 144 144 } 145 145 $prince_js_vars['max_image_size'] = $max_image_size;
Note: See TracChangeset
for help on using the changeset viewer.