Changeset 3107316
- Timestamp:
- 06/25/2024 09:43:48 AM (21 months ago)
- Location:
- tinywp-mobile-detect
- Files:
-
- 4 edited
- 1 copied
-
tags/3.0 (copied) (copied from tinywp-mobile-detect/trunk)
-
tags/3.0/mobile-detect.php (modified) (2 diffs)
-
tags/3.0/readme.txt (modified) (2 diffs)
-
trunk/mobile-detect.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tinywp-mobile-detect/tags/3.0/mobile-detect.php
r3068155 r3107316 8 8 * Author: Pothi Kalimuthu 9 9 * Author URI: https://www.tinywp.in/ 10 * Version: 1.5.110 * Version: 3.0 11 11 * Requires at least: 3.0 12 * Requires PHP: 5.312 * Requires PHP: 7.4 13 13 * Description: Excludes tablets, such as iPad, from being detected as mobile in wp_is_mobile! 14 14 * … … 17 17 defined('ABSPATH') or die('No direct access allowed!'); 18 18 19 if( ! class_exists( 'TinyWP_Mobile _Detect' ) )20 require_once( __DIR__ . '/inc/TinyWP_Mobile _Detect.php' );19 if( ! class_exists( 'TinyWP_MobileDetect' ) ) 20 require_once( __DIR__ . '/inc/TinyWP_MobileDetect.php' ); 21 21 22 $pothikalimuthu_mobile_detect = new TinyWP_Mobile _Detect;22 $pothikalimuthu_mobile_detect = new TinyWP_MobileDetect; 23 23 24 24 if( $pothikalimuthu_mobile_detect->isMobile() && !$pothikalimuthu_mobile_detect->isTablet() ) -
tinywp-mobile-detect/tags/3.0/readme.txt
r3068156 r3107316 5 5 Requires at least: 3.0 6 6 Tested up to: 6.5 7 Requires PHP: 5.38 Stable tag: 1.5.17 Requires PHP: 7.4 8 Stable tag: 3.0 9 9 License: GPLv3 10 10 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 66 66 Changelog for upstream Mobile Detect library can be found at [https://github.com/serbanghita/Mobile-Detect/releases](https://github.com/serbanghita/Mobile-Detect/releases). 67 67 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 68 72 = 1.5.1 = 69 73 + Remove unwanted tags 70 74 + Shorten the length of the description in readme file. 71 75 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 80 76 For a complete list of changelog, please see changelog.txt file. -
tinywp-mobile-detect/trunk/mobile-detect.php
r3068155 r3107316 8 8 * Author: Pothi Kalimuthu 9 9 * Author URI: https://www.tinywp.in/ 10 * Version: 1.5.110 * Version: 3.0 11 11 * Requires at least: 3.0 12 * Requires PHP: 5.312 * Requires PHP: 7.4 13 13 * Description: Excludes tablets, such as iPad, from being detected as mobile in wp_is_mobile! 14 14 * … … 17 17 defined('ABSPATH') or die('No direct access allowed!'); 18 18 19 if( ! class_exists( 'TinyWP_Mobile _Detect' ) )20 require_once( __DIR__ . '/inc/TinyWP_Mobile _Detect.php' );19 if( ! class_exists( 'TinyWP_MobileDetect' ) ) 20 require_once( __DIR__ . '/inc/TinyWP_MobileDetect.php' ); 21 21 22 $pothikalimuthu_mobile_detect = new TinyWP_Mobile _Detect;22 $pothikalimuthu_mobile_detect = new TinyWP_MobileDetect; 23 23 24 24 if( $pothikalimuthu_mobile_detect->isMobile() && !$pothikalimuthu_mobile_detect->isTablet() ) -
tinywp-mobile-detect/trunk/readme.txt
r3068156 r3107316 5 5 Requires at least: 3.0 6 6 Tested up to: 6.5 7 Requires PHP: 5.38 Stable tag: 1.5.17 Requires PHP: 7.4 8 Stable tag: 3.0 9 9 License: GPLv3 10 10 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 66 66 Changelog for upstream Mobile Detect library can be found at [https://github.com/serbanghita/Mobile-Detect/releases](https://github.com/serbanghita/Mobile-Detect/releases). 67 67 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 68 72 = 1.5.1 = 69 73 + Remove unwanted tags 70 74 + Shorten the length of the description in readme file. 71 75 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 80 76 For a complete list of changelog, please see changelog.txt file.
Note: See TracChangeset
for help on using the changeset viewer.