Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 04c1d0d

Browse files
committedDec 24, 2017
🎁I Implement Page bundling and image handling
This commit is not the smallest in Hugo's history. Some hightlights include: * Page bundles (for complete articles, keeping images and content together etc.). * Bundled images can be processed in as many versions/sizes as you need with the three methods `Resize`, `Fill` and `Fit`. * Processed images are cached inside `resources/_gen/images` (default) in your project. * Symbolic links (both files and dirs) are now allowed anywhere inside /content * A new table based build summary * The "Total in nn ms" now reports the total including the handling of the files inside /static. So if it now reports more than you're used to, it is just **more real** and probably faster than before (see below). Fixes gohugoio#3651 Closes gohugoio#3158 Fixes gohugoio#1014 Closes gohugoio#2021 Fixes gohugoio#1240 Updates gohugoio#3757
1 parent 02f2735 commit 04c1d0d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+5302
-3056
lines changed
 

Diff for: ‎Gopkg.lock

+102-17
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: ‎Gopkg.toml

+6-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
revision = "v1.1.0"
2222

2323
[[constraint]]
24-
branch = "master"
25-
name = "github.com/dchest/cssmin"
24+
name = "github.com/disintegration/imaging"
25+
revision = "v1.2.4"
2626

2727
[[constraint]]
2828
name = "github.com/magefile/mage"
@@ -116,6 +116,10 @@
116116
name = "github.com/stretchr/testify"
117117
version = "1.1.4"
118118

119+
[[constraint]]
120+
branch = "master"
121+
name = "github.com/olekukonko/tablewriter"
122+
119123
[[constraint]]
120124
name = "github.com/yosssi/ace"
121125
version = "0.0.5"

0 commit comments

Comments
 (0)
Please sign in to comment.