Changeset 2763004
- Timestamp:
- 07/28/2022 02:21:10 PM (4 years ago)
- Location:
- jvh-easy-scss-and-js/trunk
- Files:
-
- 6 edited
-
init.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
vendor/scssphp/src/Compiler.php (modified) (6 diffs)
-
vendor/scssphp/src/Logger/QuietLogger.php (modified) (1 diff)
-
vendor/scssphp/src/Logger/StreamLogger.php (modified) (1 diff)
-
vendor/scssphp/src/Version.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
jvh-easy-scss-and-js/trunk/init.php
r2687974 r2763004 3 3 * Plugin Name: Easy SCSS and JS 4 4 * Description: This plugin adds SCSS functionality, compresses JS for you and creates an easy way to enqueue scripts and styles as well as localize them. 5 * Version: 2.5. 55 * Version: 2.5.6 6 6 * Author: Lars Jansen 7 7 * Author URI: https://www.ljpc.solutions -
jvh-easy-scss-and-js/trunk/readme.txt
r2687974 r2763004 7 7 Author: Lars Jansen 8 8 Requires at least: 5.5 9 Tested up to: 5.9.110 Stable tag: 2.5. 59 Tested up to: 6.0.1 10 Stable tag: 2.5.6 11 11 Requires PHP: 7.4 12 Version: 2.5. 512 Version: 2.5.6 13 13 14 14 == Description == … … 116 116 == Changelog == 117 117 118 v2.5.6 119 - Updated scssphp to 1.10.5 120 118 121 v2.5.5 119 122 - Updated scssphp to 1.10.2 -
jvh-easy-scss-and-js/trunk/vendor/scssphp/src/Compiler.php
r2687974 r2763004 2351 2351 2352 2352 /** 2353 * Compile children and throw exception if unexpected `@return`2354 * 2355 * @param array $stms2353 * Compile children and throw exception if unexpected at-return 2354 * 2355 * @param array[] $stms 2356 2356 * @param \ScssPhp\ScssPhp\Formatter\OutputBlock $out 2357 2357 * @param \ScssPhp\ScssPhp\Block $selfParent … … 2368 2368 foreach ($stms as $stm) { 2369 2369 if ($selfParent && isset($stm[1]) && \is_object($stm[1]) && $stm[1] instanceof Block) { 2370 $oldSelfParent = $stm[1]->selfParent; 2370 2371 $stm[1]->selfParent = $selfParent; 2371 2372 $ret = $this->compileChild($stm, $out); 2372 $stm[1]->selfParent = null;2373 $stm[1]->selfParent = $oldSelfParent; 2373 2374 } elseif ($selfParent && \in_array($stm[0], [Type::T_INCLUDE, Type::T_EXTEND])) { 2374 2375 $stm['selfParent'] = $selfParent; 2375 2376 $ret = $this->compileChild($stm, $out); 2376 unset($stm['selfParent']);2377 2377 } else { 2378 2378 $ret = $this->compileChild($stm, $out); … … 3545 3545 // 2. op[left type][right type] (passing the op as first arg) 3546 3546 // 3. op[op name] 3547 if (\is_callable([$this, $fn = "op ${ucOpName}${ucLType}${ucRType}"])) {3547 if (\is_callable([$this, $fn = "op{$ucOpName}{$ucLType}{$ucRType}"])) { 3548 3548 $out = $this->$fn($left, $right, $shouldEval); 3549 } elseif (\is_callable([$this, $fn = "op ${ucLType}${ucRType}"])) {3549 } elseif (\is_callable([$this, $fn = "op{$ucLType}{$ucRType}"])) { 3550 3550 $out = $this->$fn($op, $left, $right, $shouldEval); 3551 } elseif (\is_callable([$this, $fn = "op ${ucOpName}"])) {3551 } elseif (\is_callable([$this, $fn = "op{$ucOpName}"])) { 3552 3552 $out = $this->$fn($left, $right, $shouldEval); 3553 3553 } else { … … 3893 3893 // Special functions overriding a CSS function are case-insensitive. We normalize them as lowercase 3894 3894 // to avoid the deprecation warning about the wrong case being used. 3895 if ($lowercasedName === 'min' || $lowercasedName === 'max' ) {3895 if ($lowercasedName === 'min' || $lowercasedName === 'max' || $lowercasedName === 'rgb' || $lowercasedName === 'rgba' || $lowercasedName === 'hsl' || $lowercasedName === 'hsla') { 3896 3896 $normalizedName = $lowercasedName; 3897 3897 } … … 8770 8770 { 8771 8771 $list = $this->coerceList($args[0], ',', false); 8772 $n = $this->assert Number($args[1])->getDimension();8772 $n = $this->assertInteger($args[1]); 8773 8773 8774 8774 if ($n > 0) { … … 8785 8785 { 8786 8786 $list = $this->coerceList($args[0]); 8787 $n = $this->assert Number($args[1])->getDimension();8787 $n = $this->assertInteger($args[1]); 8788 8788 8789 8789 if ($n > 0) { -
jvh-easy-scss-and-js/trunk/vendor/scssphp/src/Logger/QuietLogger.php
r2643889 r2763004 15 15 /** 16 16 * A logger that silently ignores all messages. 17 * 18 * @final 17 19 */ 18 20 class QuietLogger implements LoggerInterface -
jvh-easy-scss-and-js/trunk/vendor/scssphp/src/Logger/StreamLogger.php
r2643889 r2763004 15 15 /** 16 16 * A logger that prints to a PHP stream (for instance stderr) 17 * 18 * @final 17 19 */ 18 20 class StreamLogger implements LoggerInterface -
jvh-easy-scss-and-js/trunk/vendor/scssphp/src/Version.php
r2687974 r2763004 20 20 class Version 21 21 { 22 const VERSION = '1.10. 2';22 const VERSION = '1.10.5'; 23 23 }
Note: See TracChangeset
for help on using the changeset viewer.