Plugin Directory

Changeset 2151321


Ignore:
Timestamp:
09/05/2019 02:09:05 AM (7 years ago)
Author:
sebaxtian
Message:

v0.1.3

Location:
scss-library/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • scss-library/trunk/README.md

    r2150427 r2151321  
    5151
    5252## Changelog
     53### 0.1.3
     54* Autoptimize does not aggregate compiled files.
     55    * Autoptimize by default does not aggregate files stored in the cache directory. Declaring a new build directory solves the bug.
     56   
    5357### 0.1.2
    5458* Fixing filename bugs.
    55 * A new version number in the declaration sets a new filename, which creates new files without deleting the previous ones. Now the plugin uses only the url path as the basis for the name of the compiled file.
    56 * Create compiled file if the file does not exist.
     59    * A new version number in the declaration sets a new filename, which creates new files without deleting the previous ones. Now the plugin uses only the url path as the basis for the name of the compiled file.
     60    * Create compiled file if the file does not exist.
    5761
    5862### 0.1.1
  • scss-library/trunk/readme.txt

    r2150427 r2151321  
    5151
    5252== Changelog ==
     53= 0.1.3 =
     54* Autoptimize does not aggregate compiled files.
     55    * Autoptimize by default does not aggregate files stored in the cache directory. Declaring a new build directory solves the bug.
     56   
    5357= 0.1.2 =
    5458* Fixing filename bugs.
    55 * A new version number in the declaration sets a new filename, which creates new files without deleting the previous ones. Now the plugin uses only the url path as the basis for the name of the compiled file.
    56 * Create compiled file if the file does not exist.
     59    * A new version number in the declaration sets a new filename, which creates new files without deleting the previous ones. Now the plugin uses only the url path as the basis for the name of the compiled file.
     60    * Create compiled file if the file does not exist.
    5761
    5862= 0.1.1 =
  • scss-library/trunk/scss-library.php

    r2150408 r2151321  
    44Description: Adds support for SCSS stylesheets to wp_enqueue_style.
    55Author: Juan Sebastián Echeverry
    6 Version: 0.1.2
     6Version: 0.1.3
    77Text Domain: scsslib
    88
     
    106106
    107107        // Directorio donde se almacenará el cache
    108         $pathname = '/cache/scss_library/';
     108        $pathname = '/build/scss_library/';
    109109        if ( is_multisite() ) {
    110110            $blog_id   = get_current_blog_id();
Note: See TracChangeset for help on using the changeset viewer.