Plugin Directory

Changeset 3107316


Ignore:
Timestamp:
06/25/2024 09:43:48 AM (21 months ago)
Author:
pothi
Message:

Update upstream Mobile Detect Library from version 2.x to 3.x (LTS)

Location:
tinywp-mobile-detect
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • tinywp-mobile-detect/tags/3.0/mobile-detect.php

    r3068155 r3107316  
    88 * Author: Pothi Kalimuthu
    99 * Author URI: https://www.tinywp.in/
    10  * Version: 1.5.1
     10 * Version: 3.0
    1111 * Requires at least: 3.0
    12  * Requires PHP: 5.3
     12 * Requires PHP: 7.4
    1313 * Description: Excludes tablets, such as iPad, from being detected as mobile in wp_is_mobile!
    1414 *
     
    1717defined('ABSPATH') or die('No direct access allowed!');
    1818
    19 if( ! class_exists( 'TinyWP_Mobile_Detect' ) )
    20     require_once( __DIR__ . '/inc/TinyWP_Mobile_Detect.php' );
     19if( ! class_exists( 'TinyWP_MobileDetect' ) )
     20    require_once( __DIR__ . '/inc/TinyWP_MobileDetect.php' );
    2121
    22 $pothikalimuthu_mobile_detect = new TinyWP_Mobile_Detect;
     22$pothikalimuthu_mobile_detect = new TinyWP_MobileDetect;
    2323
    2424if( $pothikalimuthu_mobile_detect->isMobile() && !$pothikalimuthu_mobile_detect->isTablet() )
  • tinywp-mobile-detect/tags/3.0/readme.txt

    r3068156 r3107316  
    55Requires at least: 3.0
    66Tested up to: 6.5
    7 Requires PHP: 5.3
    8 Stable tag: 1.5.1
     7Requires PHP: 7.4
     8Stable tag: 3.0
    99License: GPLv3
    1010License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    6666Changelog for upstream Mobile Detect library can be found at [https://github.com/serbanghita/Mobile-Detect/releases](https://github.com/serbanghita/Mobile-Detect/releases).
    6767
     68= 3.0 =
     69+ Update upstream Mobile Detect Library from version 2.8.38 to 2.8.41 .
     70+ Shorten the length of the description in readme file.
     71
    6872= 1.5.1 =
    6973+ Remove unwanted tags
    7074+ Shorten the length of the description in readme file.
    7175
    72 = 1.5.0 =
    73 + Update upstream Mobile Detect Library from version 2.8.38 to 2.8.41 .
    74 + Separate changelog.txt file to reduce clutter in readme.txt file.
    75 + Improve docs.
    76 
    77 = 1.4.1 =
    78 + Bug fix.
    79 
    8076For a complete list of changelog, please see changelog.txt file.
  • tinywp-mobile-detect/trunk/mobile-detect.php

    r3068155 r3107316  
    88 * Author: Pothi Kalimuthu
    99 * Author URI: https://www.tinywp.in/
    10  * Version: 1.5.1
     10 * Version: 3.0
    1111 * Requires at least: 3.0
    12  * Requires PHP: 5.3
     12 * Requires PHP: 7.4
    1313 * Description: Excludes tablets, such as iPad, from being detected as mobile in wp_is_mobile!
    1414 *
     
    1717defined('ABSPATH') or die('No direct access allowed!');
    1818
    19 if( ! class_exists( 'TinyWP_Mobile_Detect' ) )
    20     require_once( __DIR__ . '/inc/TinyWP_Mobile_Detect.php' );
     19if( ! class_exists( 'TinyWP_MobileDetect' ) )
     20    require_once( __DIR__ . '/inc/TinyWP_MobileDetect.php' );
    2121
    22 $pothikalimuthu_mobile_detect = new TinyWP_Mobile_Detect;
     22$pothikalimuthu_mobile_detect = new TinyWP_MobileDetect;
    2323
    2424if( $pothikalimuthu_mobile_detect->isMobile() && !$pothikalimuthu_mobile_detect->isTablet() )
  • tinywp-mobile-detect/trunk/readme.txt

    r3068156 r3107316  
    55Requires at least: 3.0
    66Tested up to: 6.5
    7 Requires PHP: 5.3
    8 Stable tag: 1.5.1
     7Requires PHP: 7.4
     8Stable tag: 3.0
    99License: GPLv3
    1010License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    6666Changelog for upstream Mobile Detect library can be found at [https://github.com/serbanghita/Mobile-Detect/releases](https://github.com/serbanghita/Mobile-Detect/releases).
    6767
     68= 3.0 =
     69+ Update upstream Mobile Detect Library from version 2.8.38 to 2.8.41 .
     70+ Shorten the length of the description in readme file.
     71
    6872= 1.5.1 =
    6973+ Remove unwanted tags
    7074+ Shorten the length of the description in readme file.
    7175
    72 = 1.5.0 =
    73 + Update upstream Mobile Detect Library from version 2.8.38 to 2.8.41 .
    74 + Separate changelog.txt file to reduce clutter in readme.txt file.
    75 + Improve docs.
    76 
    77 = 1.4.1 =
    78 + Bug fix.
    79 
    8076For a complete list of changelog, please see changelog.txt file.
Note: See TracChangeset for help on using the changeset viewer.