Skip to content

Commit

Permalink
Merge branch 'release/1.6.36' into v1
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Welch committed Sep 7, 2021
2 parents 477f0d2 + 747d2b4 commit a33aac2
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 8 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# ImageOptimize Changelog

## 1.6.36 - 2021.09.07
### Fixed
* Fixed an issue where the wrong Imgix API was being used for purging images ([#273](https://github.com/nystudio107/craft-imageoptimize/issues/273))

## 1.6.35 - 2021.07.14
### Fixed
* Special-case for Craft 3.7 or later, with the addition of a suffix to the Field content column name (https://github.com/craftcms/cms/issues/6922) (https://github.com/nystudio107/craft-imageoptimize/issues/289)
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "nystudio107/craft-imageoptimize",
"description": "Automatically create & optimize responsive image transforms, using either native Craft transforms or a service like imgix, with zero template changes.",
"type": "craft-plugin",
"version": "1.6.35",
"version": "1.6.36",
"keywords": [
"craft",
"cms",
Expand Down Expand Up @@ -30,7 +30,7 @@
"require": {
"craftcms/cms": "^3.1.19",
"nystudio107/craft-plugin-manifest": "^1.0.0",
"nystudio107/craft-imageoptimize-imgix": "^1.2.2",
"nystudio107/craft-imageoptimize-imgix": "^1.2.3",
"nystudio107/craft-imageoptimize-sharp": "^1.0.7",
"nystudio107/craft-imageoptimize-thumbor": "^1.3.1",
"ksubileau/color-thief-php": "^1.3",
Expand Down
10 changes: 5 additions & 5 deletions docs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ DOCKERRUN=docker container run \
${CONTAINER}:${TAG}
DOCSDEST?=../../../sites/nystudio107/web/docs/image-optimize

.PHONY: docker build dev fix install lint update npm
.PHONY: docker build dev fix install lint clean npm

docker:
docker build \
. \
-t ${CONTAINER}:${TAG} \
--build-arg TAG=${TAG} \
--no-cache
build: docker install update
build: clean docker install
${DOCKERRUN} \
run docs:build
rm -rf ${DOCSDEST}
Expand All @@ -34,9 +34,9 @@ install: docker
lint: docker install
${DOCKERRUN} \
run docs:lint
update: docker
${DOCKERRUN} \
update
clean: docker
rm -rf node_modules/
rm -f package-lock.json
npm: docker
${DOCKERRUN} \
$(filter-out $@,$(MAKECMDGOALS))
Expand Down
3 changes: 2 additions & 1 deletion docs/docs/.vitepress/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ module.exports = {
lang: 'en-US',
head: [
['meta', { content: 'https://github.com/nystudio107', property: 'og:see_also', }],
['meta', { content: 'https://www.youtube.com/channel/UCOZTZHQdC-unTERO7LRS6FA', property: 'og:see_also', }],
['meta', { content: 'https://twitter.com/nystudio107', property: 'og:see_also', }],
['meta', { content: 'https://youtube.com/nystudio107', property: 'og:see_also', }],
['meta', { content: 'https://www.facebook.com/newyorkstudio107', property: 'og:see_also', }],
],
themeConfig: {
Expand Down

0 comments on commit a33aac2

Please sign in to comment.