Plugin Directory

Changeset 2739572


Ignore:
Timestamp:
06/09/2022 01:39:43 AM (4 years ago)
Author:
blockpress
Message:

Update to version 0.1.1 from GitHub

Location:
tailpress
Files:
32 added
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • tailpress/tags/0.1.1/README.txt

    r2739559 r2739572  
    66Requires PHP: 5.6
    77Tested up to: 6.0
    8 Stable tag: 0.1.0
     8Stable tag: 0.1.1
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5454== Changelog ==
    5555
     56= 0.1.1 =
     57* Fixed buffer notice
     58
    5659= 0.1.0 =
    5760* First version.
  • tailpress/tags/0.1.1/src/Cache.php

    r2739559 r2739572  
    11<?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 */
    212
    313namespace Blockpress\Tailpress;
     
    2030
    2131        add_action('shutdown', function () {
    22             ob_end_flush();
     32            if (ob_get_length() > 0) {
     33                ob_end_flush();
     34            }
    2335        }, -1 * $this->priority);
    2436    }
  • tailpress/tags/0.1.1/src/Tailpress.php

    r2739559 r2739572  
    11<?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 */
    212
    313namespace Blockpress\Tailpress;
  • tailpress/tags/0.1.1/tailpress.php

    r2739559 r2739572  
    55 *
    66 * @link              https://blockpress.dev/tailwind-wordpress/
    7  * @since             0.1.0
     7 * @since             0.1.1
    88 * @package           Tailpress
    99 *
     
    1313 * Plugin URI:        https://blockpress.dev/tailwind-wordpress/
    1414 * Description:       Seamlessly add Tailwind to your WordPress site without any build steps.
    15  * Version:           0.1.0
     15 * Version:           0.1.1
    1616 * Author:            blockpress
    1717 * Author URI:        https://blockpress.dev
     
    3030use Blockpress\Tailpress\Tailpress;
    3131
    32 (new Tailpress(__FILE__, '0.1.0'))->boot();
     32(new Tailpress(__FILE__, '0.1.1'))->boot();
  • tailpress/trunk/README.txt

    r2739559 r2739572  
    66Requires PHP: 5.6
    77Tested up to: 6.0
    8 Stable tag: 0.1.0
     8Stable tag: 0.1.1
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5454== Changelog ==
    5555
     56= 0.1.1 =
     57* Fixed buffer notice
     58
    5659= 0.1.0 =
    5760* First version.
  • tailpress/trunk/src/Cache.php

    r2739559 r2739572  
    11<?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 */
    212
    313namespace Blockpress\Tailpress;
     
    2030
    2131        add_action('shutdown', function () {
    22             ob_end_flush();
     32            if (ob_get_length() > 0) {
     33                ob_end_flush();
     34            }
    2335        }, -1 * $this->priority);
    2436    }
  • tailpress/trunk/src/Tailpress.php

    r2739559 r2739572  
    11<?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 */
    212
    313namespace Blockpress\Tailpress;
  • tailpress/trunk/tailpress.php

    r2739559 r2739572  
    55 *
    66 * @link              https://blockpress.dev/tailwind-wordpress/
    7  * @since             0.1.0
     7 * @since             0.1.1
    88 * @package           Tailpress
    99 *
     
    1313 * Plugin URI:        https://blockpress.dev/tailwind-wordpress/
    1414 * Description:       Seamlessly add Tailwind to your WordPress site without any build steps.
    15  * Version:           0.1.0
     15 * Version:           0.1.1
    1616 * Author:            blockpress
    1717 * Author URI:        https://blockpress.dev
     
    3030use Blockpress\Tailpress\Tailpress;
    3131
    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.