Plugin Directory

Changeset 2808004


Ignore:
Timestamp:
10/31/2022 02:14:44 PM (3 years ago)
Author:
aware
Message:

Update to version courier-notices-v1.5.2 from GitHub

Location:
courier-notices
Files:
18 deleted
22 edited
1 copied

Legend:

Unmodified
Added
Removed
  • courier-notices/tags/courier-notices-v1.5.2/CHANGELOG.md

    r2781600 r2808004  
    44The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
    55and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
     6
     7## [1.5.2](https://github.com/linchpin/courier-notices/compare/courier-notices-v1.5.1...courier-notices-v1.5.2) (2022-10-31)
     8
     9
     10### Bug Fixes 🐛
     11
     12* **NO-JIRA:** missing dependencies ([ce8a93c](https://github.com/linchpin/courier-notices/commit/ce8a93c94dba842c6881c3c7a91bfd8d520eb02f))
     13
     14## [1.5.1](https://github.com/linchpin/courier-notices/compare/courier-notices-v1.5.0...courier-notices-v1.5.1) (2022-09-12)
     15
     16
     17### Changes to Existing Features 💅
     18
     19* Updated the distigore to remove unneeded files ([576d020](https://github.com/linchpin/courier-notices/commit/576d020afb6d8e9bc08d134181bd861cf6234f0f))
     20* Updated the release please workflow ([6844a9f](https://github.com/linchpin/courier-notices/commit/6844a9f7a0556ef99bc3fdb43b77c63c159394ea))
    621
    722## [1.5.0](https://github.com/linchpin/courier-notices/compare/courier-notices-v1.4.7...courier-notices-v1.5.0) (2022-09-07)
  • courier-notices/tags/courier-notices-v1.5.2/README.md

    r2781600 r2808004  
    44
    55<!-- x-release-please-start-version -->
    6 ## Latest Release: 1.5.0
     6## Latest Release: 1.5.2
    77<!-- x-release-please-end -->
    88
  • courier-notices/tags/courier-notices-v1.5.2/courier-notices.php

    r2781600 r2808004  
    55 * Description: A way to display, manage, and control front end notifications for your WordPress install.
    66 * x-release-please-start-version
    7  * Version:     1.5.0
     7 * Version:     1.5.2
    88 * x-release-please-end
    99 * Author:      Linchpin
     
    2626if ( ! defined( 'COURIER_NOTICES_VERSION' ) ) {
    2727    // x-release-please-start-version
    28     define( 'COURIER_NOTICES_VERSION', '1.5.0' );
     28    define( 'COURIER_NOTICES_VERSION', '1.5.2' );
    2929    // x-release-please-end
    3030}
  • courier-notices/tags/courier-notices-v1.5.2/css/courier-notices-admin-global.css

    r2781600 r2808004  
    692692
    693693[class*=courier-columns] {
    694   -moz-box-sizing: border-box;
    695694  box-sizing: border-box;
    696695  float: left;
     
    717716.grid-x {
    718717  box-sizing: border-box;
    719   display: -webkit-box;
    720   display: -ms-flexbox;
    721718  display: flex;
    722   -webkit-box-orient: horizontal;
    723   -webkit-box-direction: normal;
    724719  flex-flow: row wrap;
    725720}
     
    732727.grid-x .cell {
    733728  box-sizing: inherit;
    734   -webkit-box-flex: 0;
    735729  flex: 0 0 auto;
    736730  min-height: 0px;
     
    739733}
    740734.grid-x .cell.auto {
    741   -webkit-box-flex: 1;
    742735  flex: 1 1 0px;
    743736  width: auto;
    744737}
    745738.grid-x .cell.shrink {
    746   -webkit-box-flex: 0;
    747739  flex: 0 0 auto;
    748740  width: auto;
     
    756748@media screen and (max-width: 767px) {
    757749  .grid-x .cell.small-full {
    758     -webkit-box-flex: 0;
    759750    flex: 0 0 auto;
    760751    min-height: 0;
  • courier-notices/tags/courier-notices-v1.5.2/css/courier-notices-admin.css

    r2781600 r2808004  
    373373  padding: 0;
    374374  margin: 0;
    375   -webkit-border-radius: 0;
    376   -moz-border-radius: 0;
    377375  border-radius: 0;
    378376  background-color: #fff;
    379377  border: 1px solid #dfdfdf;
    380378  border-top: none;
    381   -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.075);
    382379  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.075);
    383380  min-width: 17em;
     
    874871  height: 25px;
    875872  box-shadow: 6px 5px 9px -9px black;
    876   -webkit-transform: rotate(45deg);
    877   -ms-transform: rotate(45deg);
    878873  transform: rotate(45deg);
    879874}
     
    19801975  top: 0;
    19811976  left: 0;
    1982   -webkit-transition: all 0.1s ease-in-out;
    19831977  transition: all 0.1s ease-in-out;
    19841978  background: none;
     
    23372331  vertical-align: top;
    23382332  text-align: center;
    2339   -webkit-transition: color 0.1s ease-in 0;
    23402333  transition: color 0.1s ease-in 0;
    23412334  -webkit-font-smoothing: antialiased;
     
    23522345  vertical-align: top;
    23532346  text-align: center;
    2354   -webkit-transition: color 0.1s ease-in 0;
    23552347  transition: color 0.1s ease-in 0;
    23562348  -webkit-font-smoothing: antialiased;
     
    23672359  vertical-align: top;
    23682360  text-align: center;
    2369   -webkit-transition: color 0.1s ease-in 0;
    23702361  transition: color 0.1s ease-in 0;
    23712362  -webkit-font-smoothing: antialiased;
  • courier-notices/tags/courier-notices-v1.5.2/css/courier-notices.css

    r2781600 r2808004  
    356356  top: 0;
    357357  left: 0;
    358   display: -webkit-box;
    359   display: -webkit-flex;
    360   display: -ms-flexbox;
    361358  display: flex;
    362   -webkit-box-pack: center;
    363   -webkit-justify-content: center;
    364   -ms-flex-pack: center;
    365359  justify-content: center;
    366   -webkit-box-align: center;
    367   -webkit-align-items: center;
    368   -ms-flex-align: center;
    369360  align-items: center;
    370   -webkit-align-content: center;
    371   -ms-flex-line-pack: center;
    372361  align-content: center;
    373362}
  • courier-notices/tags/courier-notices-v1.5.2/readme.txt

    r2781600 r2808004  
    55Tested up to: 6.0.2
    66x-release-please-start-version
    7 Stable tag: 1.5.0
     7Stable tag: 1.5.2
    88x-release-please-end
    99Requires PHP: 7.3
  • courier-notices/tags/courier-notices-v1.5.2/vendor/autoload.php

    r2781600 r2808004  
    44
    55if (PHP_VERSION_ID < 50600) {
    6     echo 'Composer 2.3.0 dropped support for autoloading on PHP <5.6 and you are running '.PHP_VERSION.', please upgrade PHP or use Composer 2.2 LTS via "composer self-update --2.2". Aborting.'.PHP_EOL;
    7     exit(1);
     6    if (!headers_sent()) {
     7        header('HTTP/1.1 500 Internal Server Error');
     8    }
     9    $err = 'Composer 2.3.0 dropped support for autoloading on PHP <5.6 and you are running '.PHP_VERSION.', please upgrade PHP or use Composer 2.2 LTS via "composer self-update --2.2". Aborting.'.PHP_EOL;
     10    if (!ini_get('display_errors')) {
     11        if (PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg') {
     12            fwrite(STDERR, $err);
     13        } elseif (!headers_sent()) {
     14            echo $err;
     15        }
     16    }
     17    trigger_error(
     18        $err,
     19        E_USER_ERROR
     20    );
    821}
    922
    1023require_once __DIR__ . '/composer/autoload_real.php';
    1124
    12 return ComposerAutoloaderInit45e1d82b370afb46baac4c97ebd6f7c8::getLoader();
     25return ComposerAutoloaderInita52febea0150f1b6163c7b89ad322f53::getLoader();
  • courier-notices/tags/courier-notices-v1.5.2/vendor/composer/autoload_real.php

    r2781600 r2808004  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInit45e1d82b370afb46baac4c97ebd6f7c8
     5class ComposerAutoloaderInita52febea0150f1b6163c7b89ad322f53
    66{
    77    private static $loader;
     
    2525        require __DIR__ . '/platform_check.php';
    2626
    27         spl_autoload_register(array('ComposerAutoloaderInit45e1d82b370afb46baac4c97ebd6f7c8', 'loadClassLoader'), true, true);
     27        spl_autoload_register(array('ComposerAutoloaderInita52febea0150f1b6163c7b89ad322f53', 'loadClassLoader'), true, true);
    2828        self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
    29         spl_autoload_unregister(array('ComposerAutoloaderInit45e1d82b370afb46baac4c97ebd6f7c8', 'loadClassLoader'));
     29        spl_autoload_unregister(array('ComposerAutoloaderInita52febea0150f1b6163c7b89ad322f53', 'loadClassLoader'));
    3030
    3131        require __DIR__ . '/autoload_static.php';
    32         call_user_func(\Composer\Autoload\ComposerStaticInit45e1d82b370afb46baac4c97ebd6f7c8::getInitializer($loader));
     32        call_user_func(\Composer\Autoload\ComposerStaticInita52febea0150f1b6163c7b89ad322f53::getInitializer($loader));
    3333
    3434        $loader->register(true);
  • courier-notices/tags/courier-notices-v1.5.2/vendor/composer/autoload_static.php

    r2781600 r2808004  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInit45e1d82b370afb46baac4c97ebd6f7c8
     7class ComposerStaticInita52febea0150f1b6163c7b89ad322f53
    88{
    99    public static $prefixLengthsPsr4 = array (
     
    3838    {
    3939        return \Closure::bind(function () use ($loader) {
    40             $loader->prefixLengthsPsr4 = ComposerStaticInit45e1d82b370afb46baac4c97ebd6f7c8::$prefixLengthsPsr4;
    41             $loader->prefixDirsPsr4 = ComposerStaticInit45e1d82b370afb46baac4c97ebd6f7c8::$prefixDirsPsr4;
    42             $loader->prefixesPsr0 = ComposerStaticInit45e1d82b370afb46baac4c97ebd6f7c8::$prefixesPsr0;
    43             $loader->classMap = ComposerStaticInit45e1d82b370afb46baac4c97ebd6f7c8::$classMap;
     40            $loader->prefixLengthsPsr4 = ComposerStaticInita52febea0150f1b6163c7b89ad322f53::$prefixLengthsPsr4;
     41            $loader->prefixDirsPsr4 = ComposerStaticInita52febea0150f1b6163c7b89ad322f53::$prefixDirsPsr4;
     42            $loader->prefixesPsr0 = ComposerStaticInita52febea0150f1b6163c7b89ad322f53::$prefixesPsr0;
     43            $loader->classMap = ComposerStaticInita52febea0150f1b6163c7b89ad322f53::$classMap;
    4444
    4545        }, null, ClassLoader::class);
  • courier-notices/tags/courier-notices-v1.5.2/vendor/composer/installed.php

    r2781600 r2808004  
    22    'root' => array(
    33        'name' => 'linchpin/courier-notices',
    4         'pretty_version' => '1.4.7',
    5         'version' => '1.4.7.0',
     4        'pretty_version' => '1.5.2',
     5        'version' => '1.5.2.0',
    66        'reference' => NULL,
    77        'type' => 'wordpress-plugin',
     
    2121        ),
    2222        'linchpin/courier-notices' => array(
    23             'pretty_version' => '1.4.7',
    24             'version' => '1.4.7.0',
     23            'pretty_version' => '1.5.2',
     24            'version' => '1.5.2.0',
    2525            'reference' => NULL,
    2626            'type' => 'wordpress-plugin',
  • courier-notices/trunk/CHANGELOG.md

    r2781600 r2808004  
    44The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
    55and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
     6
     7## [1.5.2](https://github.com/linchpin/courier-notices/compare/courier-notices-v1.5.1...courier-notices-v1.5.2) (2022-10-31)
     8
     9
     10### Bug Fixes 🐛
     11
     12* **NO-JIRA:** missing dependencies ([ce8a93c](https://github.com/linchpin/courier-notices/commit/ce8a93c94dba842c6881c3c7a91bfd8d520eb02f))
     13
     14## [1.5.1](https://github.com/linchpin/courier-notices/compare/courier-notices-v1.5.0...courier-notices-v1.5.1) (2022-09-12)
     15
     16
     17### Changes to Existing Features 💅
     18
     19* Updated the distigore to remove unneeded files ([576d020](https://github.com/linchpin/courier-notices/commit/576d020afb6d8e9bc08d134181bd861cf6234f0f))
     20* Updated the release please workflow ([6844a9f](https://github.com/linchpin/courier-notices/commit/6844a9f7a0556ef99bc3fdb43b77c63c159394ea))
    621
    722## [1.5.0](https://github.com/linchpin/courier-notices/compare/courier-notices-v1.4.7...courier-notices-v1.5.0) (2022-09-07)
  • courier-notices/trunk/README.md

    r2781600 r2808004  
    44
    55<!-- x-release-please-start-version -->
    6 ## Latest Release: 1.5.0
     6## Latest Release: 1.5.2
    77<!-- x-release-please-end -->
    88
  • courier-notices/trunk/courier-notices.php

    r2781600 r2808004  
    55 * Description: A way to display, manage, and control front end notifications for your WordPress install.
    66 * x-release-please-start-version
    7  * Version:     1.5.0
     7 * Version:     1.5.2
    88 * x-release-please-end
    99 * Author:      Linchpin
     
    2626if ( ! defined( 'COURIER_NOTICES_VERSION' ) ) {
    2727    // x-release-please-start-version
    28     define( 'COURIER_NOTICES_VERSION', '1.5.0' );
     28    define( 'COURIER_NOTICES_VERSION', '1.5.2' );
    2929    // x-release-please-end
    3030}
  • courier-notices/trunk/css/courier-notices-admin-global.css

    r2781600 r2808004  
    692692
    693693[class*=courier-columns] {
    694   -moz-box-sizing: border-box;
    695694  box-sizing: border-box;
    696695  float: left;
     
    717716.grid-x {
    718717  box-sizing: border-box;
    719   display: -webkit-box;
    720   display: -ms-flexbox;
    721718  display: flex;
    722   -webkit-box-orient: horizontal;
    723   -webkit-box-direction: normal;
    724719  flex-flow: row wrap;
    725720}
     
    732727.grid-x .cell {
    733728  box-sizing: inherit;
    734   -webkit-box-flex: 0;
    735729  flex: 0 0 auto;
    736730  min-height: 0px;
     
    739733}
    740734.grid-x .cell.auto {
    741   -webkit-box-flex: 1;
    742735  flex: 1 1 0px;
    743736  width: auto;
    744737}
    745738.grid-x .cell.shrink {
    746   -webkit-box-flex: 0;
    747739  flex: 0 0 auto;
    748740  width: auto;
     
    756748@media screen and (max-width: 767px) {
    757749  .grid-x .cell.small-full {
    758     -webkit-box-flex: 0;
    759750    flex: 0 0 auto;
    760751    min-height: 0;
  • courier-notices/trunk/css/courier-notices-admin.css

    r2781600 r2808004  
    373373  padding: 0;
    374374  margin: 0;
    375   -webkit-border-radius: 0;
    376   -moz-border-radius: 0;
    377375  border-radius: 0;
    378376  background-color: #fff;
    379377  border: 1px solid #dfdfdf;
    380378  border-top: none;
    381   -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.075);
    382379  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.075);
    383380  min-width: 17em;
     
    874871  height: 25px;
    875872  box-shadow: 6px 5px 9px -9px black;
    876   -webkit-transform: rotate(45deg);
    877   -ms-transform: rotate(45deg);
    878873  transform: rotate(45deg);
    879874}
     
    19801975  top: 0;
    19811976  left: 0;
    1982   -webkit-transition: all 0.1s ease-in-out;
    19831977  transition: all 0.1s ease-in-out;
    19841978  background: none;
     
    23372331  vertical-align: top;
    23382332  text-align: center;
    2339   -webkit-transition: color 0.1s ease-in 0;
    23402333  transition: color 0.1s ease-in 0;
    23412334  -webkit-font-smoothing: antialiased;
     
    23522345  vertical-align: top;
    23532346  text-align: center;
    2354   -webkit-transition: color 0.1s ease-in 0;
    23552347  transition: color 0.1s ease-in 0;
    23562348  -webkit-font-smoothing: antialiased;
     
    23672359  vertical-align: top;
    23682360  text-align: center;
    2369   -webkit-transition: color 0.1s ease-in 0;
    23702361  transition: color 0.1s ease-in 0;
    23712362  -webkit-font-smoothing: antialiased;
  • courier-notices/trunk/css/courier-notices.css

    r2781600 r2808004  
    356356  top: 0;
    357357  left: 0;
    358   display: -webkit-box;
    359   display: -webkit-flex;
    360   display: -ms-flexbox;
    361358  display: flex;
    362   -webkit-box-pack: center;
    363   -webkit-justify-content: center;
    364   -ms-flex-pack: center;
    365359  justify-content: center;
    366   -webkit-box-align: center;
    367   -webkit-align-items: center;
    368   -ms-flex-align: center;
    369360  align-items: center;
    370   -webkit-align-content: center;
    371   -ms-flex-line-pack: center;
    372361  align-content: center;
    373362}
  • courier-notices/trunk/readme.txt

    r2781600 r2808004  
    55Tested up to: 6.0.2
    66x-release-please-start-version
    7 Stable tag: 1.5.0
     7Stable tag: 1.5.2
    88x-release-please-end
    99Requires PHP: 7.3
  • courier-notices/trunk/vendor/autoload.php

    r2781600 r2808004  
    44
    55if (PHP_VERSION_ID < 50600) {
    6     echo 'Composer 2.3.0 dropped support for autoloading on PHP <5.6 and you are running '.PHP_VERSION.', please upgrade PHP or use Composer 2.2 LTS via "composer self-update --2.2". Aborting.'.PHP_EOL;
    7     exit(1);
     6    if (!headers_sent()) {
     7        header('HTTP/1.1 500 Internal Server Error');
     8    }
     9    $err = 'Composer 2.3.0 dropped support for autoloading on PHP <5.6 and you are running '.PHP_VERSION.', please upgrade PHP or use Composer 2.2 LTS via "composer self-update --2.2". Aborting.'.PHP_EOL;
     10    if (!ini_get('display_errors')) {
     11        if (PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg') {
     12            fwrite(STDERR, $err);
     13        } elseif (!headers_sent()) {
     14            echo $err;
     15        }
     16    }
     17    trigger_error(
     18        $err,
     19        E_USER_ERROR
     20    );
    821}
    922
    1023require_once __DIR__ . '/composer/autoload_real.php';
    1124
    12 return ComposerAutoloaderInit45e1d82b370afb46baac4c97ebd6f7c8::getLoader();
     25return ComposerAutoloaderInita52febea0150f1b6163c7b89ad322f53::getLoader();
  • courier-notices/trunk/vendor/composer/autoload_real.php

    r2781600 r2808004  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInit45e1d82b370afb46baac4c97ebd6f7c8
     5class ComposerAutoloaderInita52febea0150f1b6163c7b89ad322f53
    66{
    77    private static $loader;
     
    2525        require __DIR__ . '/platform_check.php';
    2626
    27         spl_autoload_register(array('ComposerAutoloaderInit45e1d82b370afb46baac4c97ebd6f7c8', 'loadClassLoader'), true, true);
     27        spl_autoload_register(array('ComposerAutoloaderInita52febea0150f1b6163c7b89ad322f53', 'loadClassLoader'), true, true);
    2828        self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
    29         spl_autoload_unregister(array('ComposerAutoloaderInit45e1d82b370afb46baac4c97ebd6f7c8', 'loadClassLoader'));
     29        spl_autoload_unregister(array('ComposerAutoloaderInita52febea0150f1b6163c7b89ad322f53', 'loadClassLoader'));
    3030
    3131        require __DIR__ . '/autoload_static.php';
    32         call_user_func(\Composer\Autoload\ComposerStaticInit45e1d82b370afb46baac4c97ebd6f7c8::getInitializer($loader));
     32        call_user_func(\Composer\Autoload\ComposerStaticInita52febea0150f1b6163c7b89ad322f53::getInitializer($loader));
    3333
    3434        $loader->register(true);
  • courier-notices/trunk/vendor/composer/autoload_static.php

    r2781600 r2808004  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInit45e1d82b370afb46baac4c97ebd6f7c8
     7class ComposerStaticInita52febea0150f1b6163c7b89ad322f53
    88{
    99    public static $prefixLengthsPsr4 = array (
     
    3838    {
    3939        return \Closure::bind(function () use ($loader) {
    40             $loader->prefixLengthsPsr4 = ComposerStaticInit45e1d82b370afb46baac4c97ebd6f7c8::$prefixLengthsPsr4;
    41             $loader->prefixDirsPsr4 = ComposerStaticInit45e1d82b370afb46baac4c97ebd6f7c8::$prefixDirsPsr4;
    42             $loader->prefixesPsr0 = ComposerStaticInit45e1d82b370afb46baac4c97ebd6f7c8::$prefixesPsr0;
    43             $loader->classMap = ComposerStaticInit45e1d82b370afb46baac4c97ebd6f7c8::$classMap;
     40            $loader->prefixLengthsPsr4 = ComposerStaticInita52febea0150f1b6163c7b89ad322f53::$prefixLengthsPsr4;
     41            $loader->prefixDirsPsr4 = ComposerStaticInita52febea0150f1b6163c7b89ad322f53::$prefixDirsPsr4;
     42            $loader->prefixesPsr0 = ComposerStaticInita52febea0150f1b6163c7b89ad322f53::$prefixesPsr0;
     43            $loader->classMap = ComposerStaticInita52febea0150f1b6163c7b89ad322f53::$classMap;
    4444
    4545        }, null, ClassLoader::class);
  • courier-notices/trunk/vendor/composer/installed.php

    r2781600 r2808004  
    22    'root' => array(
    33        'name' => 'linchpin/courier-notices',
    4         'pretty_version' => '1.4.7',
    5         'version' => '1.4.7.0',
     4        'pretty_version' => '1.5.2',
     5        'version' => '1.5.2.0',
    66        'reference' => NULL,
    77        'type' => 'wordpress-plugin',
     
    2121        ),
    2222        'linchpin/courier-notices' => array(
    23             'pretty_version' => '1.4.7',
    24             'version' => '1.4.7.0',
     23            'pretty_version' => '1.5.2',
     24            'version' => '1.5.2.0',
    2525            'reference' => NULL,
    2626            'type' => 'wordpress-plugin',
Note: See TracChangeset for help on using the changeset viewer.