Changeset 2151321
- Timestamp:
- 09/05/2019 02:09:05 AM (7 years ago)
- Location:
- scss-library/trunk
- Files:
-
- 3 edited
-
README.md (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
scss-library.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
scss-library/trunk/README.md
r2150427 r2151321 51 51 52 52 ## 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 53 57 ### 0.1.2 54 58 * 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. 57 61 58 62 ### 0.1.1 -
scss-library/trunk/readme.txt
r2150427 r2151321 51 51 52 52 == 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 53 57 = 0.1.2 = 54 58 * 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. 57 61 58 62 = 0.1.1 = -
scss-library/trunk/scss-library.php
r2150408 r2151321 4 4 Description: Adds support for SCSS stylesheets to wp_enqueue_style. 5 5 Author: Juan Sebastián Echeverry 6 Version: 0.1. 26 Version: 0.1.3 7 7 Text Domain: scsslib 8 8 … … 106 106 107 107 // Directorio donde se almacenará el cache 108 $pathname = '/ cache/scss_library/';108 $pathname = '/build/scss_library/'; 109 109 if ( is_multisite() ) { 110 110 $blog_id = get_current_blog_id();
Note: See TracChangeset
for help on using the changeset viewer.