diff --git a/CHANGELOG.md b/CHANGELOG.md index 2cf967e5f3..d95bf5fd3e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,7 +13,9 @@ - Fix link generation to colocated assets other than images - Add `get_hash` Tera function - Minify CSS and JS embedded in HTML -- Fix slow image processingq +- Fix slow image processing +- Fix current_url in taxonomy term +- Add new flag 'port_append' to give the ability to remove port from base url ## 0.16.1 (2022-08-14) diff --git a/src/cli.rs b/src/cli.rs index 8d6629cd74..e55eb2250e 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -82,7 +82,7 @@ pub enum Command { fast: bool, /// Default append port to the base url. - #[clap(long, default_value_t = false)] + #[clap(long)] no_port_append: bool, },