Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-12-03 | all: Format code with gofumpt | Bjørn Erik Pedersen | |
See https://github.com/mvdan/gofumpt | |||
2019-04-05 | Add HUGO_NUMWORKERMULTIPLIER | Bjørn Erik Pedersen | |
And use that to calculate number of workers, if set, else fall back to number of logical CPUs. Also tweak the relevant related settings to match the new setup. Also remove the setting of `runtime.GOMAXPROCS` as this has been the default behaviour since Go 1.5. Fixes #5814 | |||
2018-04-11 | commands: Make commands.Execute return a Response object | Bjørn Erik Pedersen | |
We have no global `Hugo` object no more (yay!), and there are some external tools that depends on that value. These tools need to use get that value from `Response.Result`. Note that `commands.Execute` now also takes the arguments as a string slice. This should also make it easier to use, not having to modify `os.Args`. This commit also wraps up this particular issue. Phew! Test coverage in /commands before: 14.4% Now: 53.5% Still work to do, now it is at least possible. Closes #4598 | |||
2018-04-11 | commands: Remove the Hugo global | Bjørn Erik Pedersen | |
There are still some cleaning to do, but that felt good. See #4598 | |||
2018-04-11 | commands: Add CLI tests | Bjørn Erik Pedersen | |
See #4598 | |||
2017-06-13 | all: Update import paths to gohugoio/hugo | Bjørn Erik Pedersen | |
2017-03-27 | Exit -1 on ERROR in non-global logger | Bjørn Erik Pedersen | |
Fixes #3239 | |||
2016-03-11 | Exit with error code on any error | Bjørn Erik Pedersen | |
Fixes #740 | |||
2015-12-07 | Fix copyright headers in source files | Bjørn Erik Pedersen | |
Still need to add some missing headers and an AUTHORS file. See #1646 | |||
2015-11-23 | Change the license to Apache 2.0 | Steve Francia | |
2014-09-08 | More proofreading and minor revisions to Hugo docs | Anthony Fok | |
Among the various changes, most instances of {{ template "partials/FILE.html" . }} were changed to {{ partial "FILE.html" . }} Also, in main.go, change "2013" to "2013-14". | |||
2014-03-31 | Adding support for logging & verbose logging. Consolidation of error ↵ | spf13 | |
handling. Integration of jWalterWeatherman library. Fixed #137 | |||
2014-03-05 | Parallelizing the largest build processes (templates, pages, indexes). ↵ | spf13 | |
Seeing 300%+ improvement of total build time. | |||
2013-09-29 | Change the interface to use commands and flags instead of just flags. | spf13 | |
Better organization of main (controller style) code. | |||
2013-09-01 | Return an error (other than 0) when ./hugo fails | Noah Campbell | |
Being a good OS citizen so folks can compose hugo into their tool chain. Also helps with git bisect run. | |||
2013-08-20 | Static changes shouldn't be destructive to existing files | Ross Lawley | |
Currently changing css deletes all the site published html when it copies. Refs #46 | |||
2013-08-19 | Watch StaticDir and sync to PublishDir on change | rawfalafel | |
New behavior adds a special case for file changes inside the static directory to fsync PublishDir | |||
2013-08-14 | Clarify uglyurls flag. | VonC | |
Mention more clearly that, for generating `/filename.html`, you need to set the `uglyurls` flag to `true`. | |||
2013-08-09 | Nitro timer is encapsulated. | Noah Campbell | |
Remove the need for NewSite by relying on appropriate defaults. Renamed site.c to site.Config to allow Sites to be created outside the package. | |||
2013-08-08 | Make sure hugo --version prints the version and does *nothing* else. | VonC | |
Any program, when asks to print their version, only prints that, and then stops. hugo checks the config (and prints a warning message if not found), and proceeds to generate the site! Yet, the user just wanted to check the version. This patch makes sure hugo stops after printing the version. | |||
2013-08-01 | Adding error message when no content pages exists. | Noah Campbell | |
2013-07-30 | copying static content to destination | spf13 | |
2013-07-26 | Adding support for destination dir, split out static | spf13 | |
2013-07-26 | fixing bug with server not finding right path | spf13 | |
2013-07-26 | adding more verbose output to server functionality | spf13 | |
2013-07-19 | Adding proper command line option parsing | spf13 | |
2013-07-19 | Default is now pretty urls (without .html) | spf13 | |
Adding --uglyurls option to retain previous behavior | |||
2013-07-11 | Now support for config files as yaml, json or toml | spf13 | |
2013-07-10 | fixing incorrect import path | spf13 | |
2013-07-10 | Adding total time to generated stats. | spf13 | |
2013-07-10 | Writing relative links to absolute so they work in feeds | spf13 | |
2013-07-08 | Adding version number to command line options | spf13 | |
2013-07-06 | changing to suport yaml rather than json and adding optional ↵ | tycho garen | |
restructuredtext support | |||
2013-07-06 | sanity: move from json to yaml | tycho garen | |
2013-07-04 | adding hugo | spf13 | |