summaryrefslogtreecommitdiffstats
path: root/Gopkg.toml
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2018-02-03 16:47:35 +0100
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2018-02-05 13:59:15 +0100
commit722086b4ed3e77d1aba6724474bec06d08e7de06 (patch)
tree470bd91123d6de0f7a38ca40ec18a4d4835d9f8c /Gopkg.toml
parent084cf4191b3c1e7590a4223fd9251019ef5d4c21 (diff)
resource: Add smart cropping
This commit `smart` as a new and default anchor in `Fill`. So: ```html {{ $image.Fill "200x200" }} ``` Is, with default configuration, the same as: ```html {{ $image.Fill "200x200" "smart" }} ``` You can change this default in your `config.toml`: ```toml [imaging] [imaging] resampleFilter = "box" quality = 68 anchor = "Smart" ``` Fixes #4375
Diffstat (limited to 'Gopkg.toml')
-rw-r--r--Gopkg.toml8
1 files changed, 7 insertions, 1 deletions
diff --git a/Gopkg.toml b/Gopkg.toml
index b07a41f7c..9c872585a 100644
--- a/Gopkg.toml
+++ b/Gopkg.toml
@@ -15,7 +15,7 @@
[[constraint]]
branch = "master"
name = "github.com/bep/gitmap"
-
+
[[constraint]]
name = "github.com/chaseadamsio/goorgeous"
version = "^1.1.0"
@@ -135,3 +135,9 @@
[[constraint]]
name = "github.com/gobwas/glob"
version = "0.2.2"
+
+
+[[constraint]]
+ name = "github.com/muesli/smartcrop"
+ branch = "master"
+