docs(changelog): Invert Asset Installation
This commit is contained in:
parent
e0fede55a8
commit
fef150c8ff
2 changed files with 2 additions and 1 deletions
|
|
@ -6,6 +6,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
* Add `check` flag to `setup` subcommand, move `generate-completions` subcommand to `setup` flag (https://github.com/zellij-org/zellij/pull/503)
|
* Add `check` flag to `setup` subcommand, move `generate-completions` subcommand to `setup` flag (https://github.com/zellij-org/zellij/pull/503)
|
||||||
|
* Change the asset installation from an opt-in to an opt-out (https://github.com/zellij-org/zellij/pull/512)
|
||||||
|
|
||||||
## [0.10.0] - 2021-05-14
|
## [0.10.0] - 2021-05-14
|
||||||
* Change Switch default config loading order of `HOME` and system (https://github.com/zellij-org/zellij/pull/488)
|
* Change Switch default config loading order of `HOME` and system (https://github.com/zellij-org/zellij/pull/488)
|
||||||
|
|
|
||||||
|
|
@ -187,7 +187,7 @@ fn init_session(
|
||||||
// Determine and initialize the data directory
|
// Determine and initialize the data directory
|
||||||
let data_dir = opts.data_dir.unwrap_or_else(get_default_data_dir);
|
let data_dir = opts.data_dir.unwrap_or_else(get_default_data_dir);
|
||||||
|
|
||||||
#[cfg(not(disable_automatic_assets_installation))]
|
#[cfg(not(disable_automatic_asset_installation))]
|
||||||
populate_data_dir(&data_dir);
|
populate_data_dir(&data_dir);
|
||||||
|
|
||||||
// Don't use default layouts in tests, but do everywhere else
|
// Don't use default layouts in tests, but do everywhere else
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue