Plugin Directory

Changeset 3186831


Ignore:
Timestamp:
11/13/2024 12:52:55 AM (17 months ago)
Author:
GregRoss
Message:

Update to version 1.4 from GitHub

Location:
smart-prev-next
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • smart-prev-next/tags/1.4/readme.txt

    r3124284 r3186831  
    55Tags: admin editor prev next
    66Requires at least: 3.5
    7 Tested up to: 6.6.1
     7Tested up to: 6.7
    88Requires PHP: 7.0
    9 Stable tag: 1.3
     9Stable tag: 1.4
    1010License: GPLv2
    1111
     
    4242
    4343== Changelog ==
     44= 1.4 =
     45* Release date: November 12, 2024
     46* Add support for WP 6.7.
     47
    4448= 1.3 =
    4549* Release date: July 23, 2024
  • smart-prev-next/tags/1.4/smart-prev-next-functions.php

    r3124284 r3186831  
    324324    // Check to see which location we're placing the buttons.
    325325    // WP 6.1 changed the class for the settings box.
    326     if( version_compare( $wp_version, '6.1' ) < 0 ) {
     326    // WP 6.7 made more changes to the location
     327    if( version_compare( $wp_version, '6.7' ) >= 0 ) {
     328        $location = 'div .editor-preview-dropdown';
     329    } else if( version_compare( $wp_version, '6.1' ) < 0 ) {
    327330        $location = 'div .edit-post-header__settings';
    328331    } else {
  • smart-prev-next/tags/1.4/smart-prev-next.css

    r2499051 r3186831  
    11.spn-prev-post, .spn-next-post, .spn-first-post, .spn-last-post {
    22    margin-right: 10px !important;
     3    max-width: 50px;
    34}
  • smart-prev-next/tags/1.4/smart-prev-next.php

    r3124284 r3186831  
    22/*
    33Plugin Name: Smart Prev Next
    4 Version: 1.3
     4Version: 1.4
    55Plugin URI: http://toolstack.com/smart-prev-next
    66Author: Greg Ross
     
    2121*/
    2222
    23 define( 'SmartPrevNext', '1.3' );
     23define( 'SmartPrevNext', '1.4' );
    2424
    2525include_once( 'smart-prev-next-functions.php' );
  • smart-prev-next/trunk/readme.txt

    r3124284 r3186831  
    55Tags: admin editor prev next
    66Requires at least: 3.5
    7 Tested up to: 6.6.1
     7Tested up to: 6.7
    88Requires PHP: 7.0
    9 Stable tag: 1.3
     9Stable tag: 1.4
    1010License: GPLv2
    1111
     
    4242
    4343== Changelog ==
     44= 1.4 =
     45* Release date: November 12, 2024
     46* Add support for WP 6.7.
     47
    4448= 1.3 =
    4549* Release date: July 23, 2024
  • smart-prev-next/trunk/smart-prev-next-functions.php

    r3124284 r3186831  
    324324    // Check to see which location we're placing the buttons.
    325325    // WP 6.1 changed the class for the settings box.
    326     if( version_compare( $wp_version, '6.1' ) < 0 ) {
     326    // WP 6.7 made more changes to the location
     327    if( version_compare( $wp_version, '6.7' ) >= 0 ) {
     328        $location = 'div .editor-preview-dropdown';
     329    } else if( version_compare( $wp_version, '6.1' ) < 0 ) {
    327330        $location = 'div .edit-post-header__settings';
    328331    } else {
  • smart-prev-next/trunk/smart-prev-next.css

    r2499051 r3186831  
    11.spn-prev-post, .spn-next-post, .spn-first-post, .spn-last-post {
    22    margin-right: 10px !important;
     3    max-width: 50px;
    34}
  • smart-prev-next/trunk/smart-prev-next.php

    r3124284 r3186831  
    22/*
    33Plugin Name: Smart Prev Next
    4 Version: 1.3
     4Version: 1.4
    55Plugin URI: http://toolstack.com/smart-prev-next
    66Author: Greg Ross
     
    2121*/
    2222
    23 define( 'SmartPrevNext', '1.3' );
     23define( 'SmartPrevNext', '1.4' );
    2424
    2525include_once( 'smart-prev-next-functions.php' );
Note: See TracChangeset for help on using the changeset viewer.