From 7f0c0182364c51fc37a13df32047c7c9d2c78440 Mon Sep 17 00:00:00 2001 From: Brian Miyaji Date: Mon, 19 May 2014 22:51:21 +1000 Subject: [PATCH] Adjust image sizes and fix changelog typo --- readme.txt | 2 +- sportspress.php | 18 +++++++++--------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/readme.txt b/readme.txt index 104ca060..9eafce9a 100644 --- a/readme.txt +++ b/readme.txt @@ -117,7 +117,7 @@ SportsPress is currently in beta and is undergoing testing. We are still activel Yes, CSV importers are included with the plugin. Go to Tools > Import and choose from one of the SportsPress CSV importers. When importing events, be sure to use the date format yyyy/mm/dd. -== Changelog === +== Changelog == = 0.9.3 = * Fix - Player list columns not displaying. diff --git a/sportspress.php b/sportspress.php index f4b9ee0e..65ce2bb1 100644 --- a/sportspress.php +++ b/sportspress.php @@ -283,21 +283,21 @@ final class SportsPress { add_theme_support( 'post-thumbnails' ); // Standard (3:2) - add_image_size( 'sportspress-standard', 637, 425, true ); - add_image_size( 'sportspress-standard-thumbnail', 303, 202, true ); + add_image_size( 'sportspress-standard', 640, 480, true ); + add_image_size( 'sportspress-standard-thumbnail', 320, 240, true ); // Wide (16:9) - add_image_size( 'sportspress-wide-header', 1600, 900, true ); - add_image_size( 'sportspress-wide', 637, 358, true ); - add_image_size( 'sportspress-wide-thumbnail', 303, 170, true ); + add_image_size( 'sportspress-wide-header', 1920, 1080, true ); + add_image_size( 'sportspress-wide', 640, 360, true ); + add_image_size( 'sportspress-wide-thumbnail', 320, 180, true ); // Square (1:1) - add_image_size( 'sportspress-square', 637, 637, true ); - add_image_size( 'sportspress-square-thumbnail', 303, 303, true ); + add_image_size( 'sportspress-square', 640, 640, true ); + add_image_size( 'sportspress-square-thumbnail', 320, 320, true ); // Fit (Proportional) - add_image_size( 'sportspress-fit', 637, 637, false ); - add_image_size( 'sportspress-fit-thumbnail', 303, 303, false ); + add_image_size( 'sportspress-fit', 640, 640, false ); + add_image_size( 'sportspress-fit-thumbnail', 320, 320, false ); add_image_size( 'sportspress-fit-icon', 128, 128, false ); add_image_size( 'sportspress-fit-mini', 32, 32, false ); }