drupal-image-style-generator 1.0.2 → 1.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.js +1 -1
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -135,7 +135,7 @@ module.exports = function (options) {
135
135
  cropTypes[cropType].soft_limit_height = Math.round(Math.max(cropTypes[cropType].soft_limit_height, styleWidth * aspectRatio));
136
136
  }
137
137
 
138
- styleLabel = `Manual Crop and Scale ${styleWidth}`;
138
+ styleLabel = `Manual Crop and Scale ${styleWidth}, aspect ${cropDimensions[0]}:${cropDimensions[1]}`;
139
139
  concreteStyleId = `mc_${styleWidth}_${cropType}`;
140
140
  styleFileName = `image.style.${concreteStyleId}.yml`;
141
141
  styleFilePath = `${syncFolder}/${styleFileName}`;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "drupal-image-style-generator",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "A helper tool to automatically geenrate drupal 8+ responsive image styles",
5
5
  "main": "index.js",
6
6
  "scripts": {