Skip to content

Commit

Permalink
Merge pull request #37 from conclurer/AIOM-3.2.1
Browse files Browse the repository at this point in the history
AIOM 3.2.1
  • Loading branch information
marvinscharle committed Feb 11, 2015
2 parents e3a2e7d + cc77ebf commit f3754c8
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
4 changes: 2 additions & 2 deletions AllInOneMinify.module
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ class AllInOneMinify extends WireData implements Module, ConfigurableModule {
// ------------------------------------------------------------------------
// Version: major, minor, revision, i.e. 100 = 1.1.0
// ------------------------------------------------------------------------
'version' => 320,
'version' => 321,

'author' => 'David Karich & Conclurer GbR',

Expand Down Expand Up @@ -419,7 +419,7 @@ class AllInOneMinify extends WireData implements Module, ConfigurableModule {

// Support passing of $config->scripts as argument which is of type FilenameArray
if(($javascripts instanceof FilenameArray))
$stylesheets = (array) $javascripts->getIterator(); // Convert to array
$javascripts = (array) $javascripts->getIterator(); // Convert to array

// ------------------------------------------------------------------------
// Check if files exist and generating the cache file name based
Expand Down
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,11 @@ If you are currently in development of the site, caching can be a problem. For t

##Changelog##

3.2.1

* Bugfix: $config->scripts was not included properly
* Support for @-webkit-keyframes added

3.2

* New CSS Compressor: AIOM now uses YUI Compressor (thanks to hwmaier)
Expand Down
1 change: 1 addition & 0 deletions lib/Less/Less.php
Original file line number Diff line number Diff line change
Expand Up @@ -2040,6 +2040,7 @@ private function parseDirective(){
$hasBlock = false;
break;
case "@keyframes":
case "@-webkit-keyframes":
$hasIdentifier = true;
break;
case "@host":
Expand Down

0 comments on commit f3754c8

Please sign in to comment.