Changeset 2739572
- Timestamp:
- 06/09/2022 01:39:43 AM (4 years ago)
- Location:
- tailpress
- Files:
-
- 32 added
- 8 edited
- 1 copied
-
tags/0.1.1 (copied) (copied from tailpress/trunk)
-
tags/0.1.1/DOCKER_ENV (added)
-
tags/0.1.1/README.txt (modified) (2 diffs)
-
tags/0.1.1/docker_tag (added)
-
tags/0.1.1/output.log (added)
-
tags/0.1.1/src/Cache.php (modified) (2 diffs)
-
tags/0.1.1/src/Tailpress.php (modified) (1 diff)
-
tags/0.1.1/tailpress.php (modified) (3 diffs)
-
tags/0.1.1/vendor (added)
-
tags/0.1.1/vendor/autoload.php (added)
-
tags/0.1.1/vendor/composer (added)
-
tags/0.1.1/vendor/composer/ClassLoader.php (added)
-
tags/0.1.1/vendor/composer/InstalledVersions.php (added)
-
tags/0.1.1/vendor/composer/LICENSE (added)
-
tags/0.1.1/vendor/composer/autoload_classmap.php (added)
-
tags/0.1.1/vendor/composer/autoload_namespaces.php (added)
-
tags/0.1.1/vendor/composer/autoload_psr4.php (added)
-
tags/0.1.1/vendor/composer/autoload_real.php (added)
-
tags/0.1.1/vendor/composer/autoload_static.php (added)
-
tags/0.1.1/vendor/composer/installed.json (added)
-
tags/0.1.1/vendor/composer/installed.php (added)
-
trunk/DOCKER_ENV (added)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/docker_tag (added)
-
trunk/output.log (added)
-
trunk/src/Cache.php (modified) (2 diffs)
-
trunk/src/Tailpress.php (modified) (1 diff)
-
trunk/tailpress.php (modified) (3 diffs)
-
trunk/vendor (added)
-
trunk/vendor/autoload.php (added)
-
trunk/vendor/composer (added)
-
trunk/vendor/composer/ClassLoader.php (added)
-
trunk/vendor/composer/InstalledVersions.php (added)
-
trunk/vendor/composer/LICENSE (added)
-
trunk/vendor/composer/autoload_classmap.php (added)
-
trunk/vendor/composer/autoload_namespaces.php (added)
-
trunk/vendor/composer/autoload_psr4.php (added)
-
trunk/vendor/composer/autoload_real.php (added)
-
trunk/vendor/composer/autoload_static.php (added)
-
trunk/vendor/composer/installed.json (added)
-
trunk/vendor/composer/installed.php (added)
Legend:
- Unmodified
- Added
- Removed
-
tailpress/tags/0.1.1/README.txt
r2739559 r2739572 6 6 Requires PHP: 5.6 7 7 Tested up to: 6.0 8 Stable tag: 0.1. 08 Stable tag: 0.1.1 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 54 54 == Changelog == 55 55 56 = 0.1.1 = 57 * Fixed buffer notice 58 56 59 = 0.1.0 = 57 60 * First version. -
tailpress/tags/0.1.1/src/Cache.php
r2739559 r2739572 1 1 <?php 2 3 /** 4 * For maintaining the CSS file cache. 5 * 6 * @link https://blockpress.dev/tailwind-wordpress/ 7 * @since 0.1.1 8 * @package Tailpress 9 * 10 * @wordpress-plugin 11 */ 2 12 3 13 namespace Blockpress\Tailpress; … … 20 30 21 31 add_action('shutdown', function () { 22 ob_end_flush(); 32 if (ob_get_length() > 0) { 33 ob_end_flush(); 34 } 23 35 }, -1 * $this->priority); 24 36 } -
tailpress/tags/0.1.1/src/Tailpress.php
r2739559 r2739572 1 1 <?php 2 3 /** 4 * The main plugin class 5 * 6 * @link https://blockpress.dev/tailwind-wordpress/ 7 * @since 0.1.1 8 * @package Tailpress 9 * 10 * @wordpress-plugin 11 */ 2 12 3 13 namespace Blockpress\Tailpress; -
tailpress/tags/0.1.1/tailpress.php
r2739559 r2739572 5 5 * 6 6 * @link https://blockpress.dev/tailwind-wordpress/ 7 * @since 0.1. 07 * @since 0.1.1 8 8 * @package Tailpress 9 9 * … … 13 13 * Plugin URI: https://blockpress.dev/tailwind-wordpress/ 14 14 * Description: Seamlessly add Tailwind to your WordPress site without any build steps. 15 * Version: 0.1. 015 * Version: 0.1.1 16 16 * Author: blockpress 17 17 * Author URI: https://blockpress.dev … … 30 30 use Blockpress\Tailpress\Tailpress; 31 31 32 (new Tailpress(__FILE__, '0.1. 0'))->boot();32 (new Tailpress(__FILE__, '0.1.1'))->boot(); -
tailpress/trunk/README.txt
r2739559 r2739572 6 6 Requires PHP: 5.6 7 7 Tested up to: 6.0 8 Stable tag: 0.1. 08 Stable tag: 0.1.1 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 54 54 == Changelog == 55 55 56 = 0.1.1 = 57 * Fixed buffer notice 58 56 59 = 0.1.0 = 57 60 * First version. -
tailpress/trunk/src/Cache.php
r2739559 r2739572 1 1 <?php 2 3 /** 4 * For maintaining the CSS file cache. 5 * 6 * @link https://blockpress.dev/tailwind-wordpress/ 7 * @since 0.1.1 8 * @package Tailpress 9 * 10 * @wordpress-plugin 11 */ 2 12 3 13 namespace Blockpress\Tailpress; … … 20 30 21 31 add_action('shutdown', function () { 22 ob_end_flush(); 32 if (ob_get_length() > 0) { 33 ob_end_flush(); 34 } 23 35 }, -1 * $this->priority); 24 36 } -
tailpress/trunk/src/Tailpress.php
r2739559 r2739572 1 1 <?php 2 3 /** 4 * The main plugin class 5 * 6 * @link https://blockpress.dev/tailwind-wordpress/ 7 * @since 0.1.1 8 * @package Tailpress 9 * 10 * @wordpress-plugin 11 */ 2 12 3 13 namespace Blockpress\Tailpress; -
tailpress/trunk/tailpress.php
r2739559 r2739572 5 5 * 6 6 * @link https://blockpress.dev/tailwind-wordpress/ 7 * @since 0.1. 07 * @since 0.1.1 8 8 * @package Tailpress 9 9 * … … 13 13 * Plugin URI: https://blockpress.dev/tailwind-wordpress/ 14 14 * Description: Seamlessly add Tailwind to your WordPress site without any build steps. 15 * Version: 0.1. 015 * Version: 0.1.1 16 16 * Author: blockpress 17 17 * Author URI: https://blockpress.dev … … 30 30 use Blockpress\Tailpress\Tailpress; 31 31 32 (new Tailpress(__FILE__, '0.1. 0'))->boot();32 (new Tailpress(__FILE__, '0.1.1'))->boot();
Note: See TracChangeset
for help on using the changeset viewer.