Make prompts.hjson issue stand out

This commit is contained in:
Bryan Ashby 2020-07-12 18:33:11 -06:00
parent 992ee6056e
commit e97f7ea61e
No known key found for this signature in database
GPG Key ID: B49EB437951D2542
1 changed files with 9 additions and 1 deletions

View File

@ -30,7 +30,15 @@ Report your issue on Xibalba BBS, hop in #enigma-bbs on FreeNode and chat, or
# 0.0.11-beta to 0.0.12-beta
* Be aware that `master` is now mainline! This means all `git pull`'s will yield the latest version. See [WHATSNEW](WHATSNEW.md) for more information.
* There is no longer a `prompt.hjson` file. Prompts are simply part of the menu set in the `prompts` section.
* **BREAKING CHANGE** There is no longer a `prompt.hjson` file. Prompts are now simply part of the menu set in the `prompts` section. If you have an existing system you will need to add your `prompt.hjson` to your `menu.hjson`'s `includes` section at a minimum. Example:
```hjson
// menu.hjson
{
includes: [
my-prompts.hjson // ref your old prompts here
]
}
```
# 0.0.10-alpha to 0.0.11-beta
* Node.js 12.x LTS is now in use. Follow standard Node.js upgrade procedures (e.g.: `nvm install 12 && nvm use 12`).