mirror of
https://github.com/jhillyerd/inbucket.git
synced 2025-12-18 01:57:02 +00:00
Compare commits
10 Commits
v2.0.0-rc1
...
v2.0.0
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
30d8d6c64f | ||
|
|
37361e08e8 | ||
|
|
2ceb510f70 | ||
|
|
62fa52f42c | ||
|
|
568474da32 | ||
|
|
562332258d | ||
|
|
941b682197 | ||
|
|
7fc5e06517 | ||
|
|
704ba04c51 | ||
|
|
8a30b9717e |
@@ -4,7 +4,13 @@ Change Log
|
||||
All notable changes to this project will be documented in this file.
|
||||
This project adheres to [Semantic Versioning](http://semver.org/).
|
||||
|
||||
## [2.0.0-rc1] - 2018-04-07
|
||||
## [v2.0.0] - 2018-05-05
|
||||
|
||||
### Changed
|
||||
- Corrected docs for INBUCKET_STORAGE_PARAMS (thanks evilmrburns.)
|
||||
- Disabled color log output on Windows, doesn't work there.
|
||||
|
||||
## [v2.0.0-rc1] - 2018-04-07
|
||||
|
||||
### Added
|
||||
- Inbucket is now configured using environment variables instead of a config
|
||||
@@ -154,6 +160,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
||||
specific message.
|
||||
|
||||
[Unreleased]: https://github.com/jhillyerd/inbucket/compare/master...develop
|
||||
[v2.0.0]: https://github.com/jhillyerd/inbucket/compare/v2.0.0-rc1...v2.0.0
|
||||
[v2.0.0-rc1]: https://github.com/jhillyerd/inbucket/compare/v1.3.1...v2.0.0-rc1
|
||||
[v1.3.1]: https://github.com/jhillyerd/inbucket/compare/v1.3.0...v1.3.1
|
||||
[v1.3.0]: https://github.com/jhillyerd/inbucket/compare/v1.2.0...v1.3.0
|
||||
|
||||
@@ -181,7 +181,7 @@ func openLog(level string, logfile string, json bool) (close func(), err error)
|
||||
}
|
||||
close = func() {}
|
||||
var w io.Writer
|
||||
color := true
|
||||
color := runtime.GOOS != "windows"
|
||||
switch logfile {
|
||||
case "stderr":
|
||||
w = os.Stderr
|
||||
|
||||
@@ -373,7 +373,7 @@ Parameters specific to the storage type selected. Formatted as a comma
|
||||
separated list of key:value pairs.
|
||||
|
||||
- Default: None
|
||||
- Examples: `maxkb=10240` or `path=/tmp/inbucket`
|
||||
- Examples: `maxkb:10240` or `path:/tmp/inbucket`
|
||||
|
||||
#### `file` type parameters
|
||||
|
||||
|
||||
Reference in New Issue
Block a user