Skip to content
This repository was archived by the owner on Sep 20, 2024. It is now read-only.

Commit 7acf773

Browse files
authored
For 2.8.0 (#66)
1 parent fcd8125 commit 7acf773

24 files changed

+89
-138
lines changed

.docker/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ services:
1515
hostname: defer-wp-test
1616
depends_on:
1717
- mariadb
18-
image: wordpress:php5.6
18+
image: shinsenter/wordpress:php${PHP_VERSION:-7.4}
1919
ports:
2020
- "8000:80"
2121
volumes:

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ wp-content/plugins/hello.php
1515
/readme.html
1616
/sitemap.xml
1717
/sitemap.xml.gz
18+
.DS_Store
1819
.php_cs.cache
1920
composer.phar
2021
/.old/

.php-cs-fixer.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
/**
44
* 🚀 A WordPress plugin that focuses on minimizing payload size of HTML document
55
* and optimizing processing on the browser when rendering the WordPress page.
6-
* (c) 2021-2023 SHIN Company <[email protected]>
6+
* (c) 2021-2024 SHIN Company <[email protected]>
77
*
88
* PHP Version >=5.6
99
*
1010
* @category Web_Performance_Optimization
1111
* @package defer-wordpress
1212
* @author Mai Nhut Tan <[email protected]>
13-
* @copyright 2021-2023 SHIN Company
13+
* @copyright 2021-2024 SHIN Company
1414
* @license https://code.shin.company/defer-wordpress/blob/master/LICENSE GPL-2.0
1515
* @link https://code.shin.company/defer-wordpress
1616
* @see https://code.shin.company/defer-wordpress/blob/master/README.md
@@ -19,14 +19,14 @@
1919
$header = <<<'EOF'
2020
🚀 A WordPress plugin that focuses on minimizing payload size of HTML document
2121
and optimizing processing on the browser when rendering the WordPress page.
22-
(c) 2021-2023 SHIN Company <[email protected]>
22+
(c) 2021-2024 SHIN Company <[email protected]>
2323
2424
PHP Version >=5.6
2525
2626
@category Web_Performance_Optimization
2727
@package defer-wordpress
2828
@author Mai Nhut Tan <[email protected]>
29-
@copyright 2021-2023 SHIN Company
29+
@copyright 2021-2024 SHIN Company
3030
@license https://code.shin.company/defer-wordpress/blob/master/LICENSE GPL-2.0
3131
@link https://code.shin.company/defer-wordpress
3232
@see https://code.shin.company/defer-wordpress/blob/master/README.md
@@ -65,7 +65,7 @@
6565
];
6666

6767
$finder = \PhpCsFixer\Finder::create()
68-
->in(dirname(__DIR__))
68+
->in(__DIR__)
6969
->name('*.php')
7070
->exclude('.dist')
7171
->exclude('.docker')

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,4 +71,4 @@ This plugin also works perfectly on popular browsers, including Internet Explore
7171
Released under the GNU General Public License v2 license.
7272
https://code.shin.company/defer-wordpress/blob/master/LICENSE
7373

74-
Copyright (c) 2019 Mai Nhut Tan &lt;[[email protected]](mailto:[email protected])&gt;
74+
Copyright (c) 2024 Mai Nhut Tan &lt;[[email protected]](mailto:[email protected])&gt;

README.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
=== A faster website! (aka defer.js) ===
22
Contributors: shinsenter
33
Donate link: https://www.paypal.me/shinsenter
4-
Tags: defer.js,optimization,core-web-vitals,lazyload,loading-lazy,lazy-loading,lazyload-image,lazyload-video,lazyload-font,lazyload-js,lazyload-css,lazyload-wordpress,lazyload-facebook,lazyload-youtube,site-performance,speed,pagespeed,page-speed,html-minify,shinsenter
4+
Tags: lazyload,lazy-load,defer.js,core-web-vitals,pagespeed,page-speed,html-minify
55
Requires at least: 4.0
66
Tested up to: 6.3.1
77
Stable tag: trunk
@@ -101,7 +101,7 @@ Keep up-to-date with new releases:
101101
Released under the GNU General Public License v2 license.
102102
[https://code.shin.company/defer-wordpress/blob/master/LICENSE](https://code.shin.company/defer-wordpress/blob/master/LICENSE)
103103

104-
Copyright (c) 2019 Mai Nhut Tan &lt;[[email protected]](mailto:[email protected])&gt;
104+
Copyright (c) 2024 Mai Nhut Tan &lt;[[email protected]](mailto:[email protected])&gt;
105105

106106

107107
== Installation ==

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.6.0
1+
2.8.0

admin/class-defer-wordpress-admin.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
/**
44
* 🚀 A WordPress plugin that focuses on minimizing payload size of HTML document
55
* and optimizing processing on the browser when rendering the WordPress page.
6-
* (c) 2021-2023 SHIN Company <[email protected]>
6+
* (c) 2021-2024 SHIN Company <[email protected]>
77
*
88
* PHP Version >=5.6
99
*
1010
* @category Web_Performance_Optimization
1111
* @package defer-wordpress
1212
* @author Mai Nhut Tan <[email protected]>
13-
* @copyright 2021-2023 SHIN Company
13+
* @copyright 2021-2024 SHIN Company
1414
* @license https://code.shin.company/defer-wordpress/blob/master/LICENSE GPL-2.0
1515
* @link https://code.shin.company/defer-wordpress
1616
* @see https://code.shin.company/defer-wordpress/blob/master/README.md

admin/index.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
/**
44
* 🚀 A WordPress plugin that focuses on minimizing payload size of HTML document
55
* and optimizing processing on the browser when rendering the WordPress page.
6-
* (c) 2021-2023 SHIN Company <[email protected]>
6+
* (c) 2021-2024 SHIN Company <[email protected]>
77
*
88
* PHP Version >=5.6
99
*
1010
* @category Web_Performance_Optimization
1111
* @package defer-wordpress
1212
* @author Mai Nhut Tan <[email protected]>
13-
* @copyright 2021-2023 SHIN Company
13+
* @copyright 2021-2024 SHIN Company
1414
* @license https://code.shin.company/defer-wordpress/blob/master/LICENSE GPL-2.0
1515
* @link https://code.shin.company/defer-wordpress
1616
* @see https://code.shin.company/defer-wordpress/blob/master/README.md

admin/js/defer-wordpress-admin.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)