diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index d53a6435..a8e6a08e 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -3,7 +3,7 @@ For :bug: bug reports, please fill out the information below plus any additional **Short problem description** **Environment** -- [ ] I am using Node.js v8.x LTS or higher +- [ ] I am using Node.js v10.x LTS or higher - [ ] `npm install` or `yarn` reports success - Actual Node.js version (`node --version`): - Operating system (`uname -a` on *nix systems): diff --git a/UPGRADE.md b/UPGRADE.md index 5ec42295..af9f124a 100644 --- a/UPGRADE.md +++ b/UPGRADE.md @@ -38,7 +38,7 @@ Report your issue on Xibalba BBS, hop in #enigma-bbs on Freenet and chat, or [file a issue on GitHub](https://github.com/NuSkooler/enigma-bbs/issues). # 0.0.8-alpha to 0.0.9-alpha -* Development is now against Node.js 8.x LTS. Follow your standard upgrade path to update to Node 8.x before using 0.0.9-alpha. +* Development is now against Node.js 10.x LTS. Follow your standard upgrade path to update to Node 10.x before using 0.0.9-alpha! * The property `justify` found on various views previously had `left` and `right` values swapped (oops!); you will need to adjust any custom `theme.hjson` that use one or the other and swap them as well. * Possible breaking changes in FSE: The MCI code `%TL13` for error indicator is now `%TL4`. This is part of a cleanup and standardization on "custom ranges". You may need to update your `theme.hjson` and related artwork. * Removed view width auto-size: Some views still can auto-size their height, but in general you should be explicit in your themes diff --git a/WHATSNEW.md b/WHATSNEW.md index b157a927..de8b6383 100644 --- a/WHATSNEW.md +++ b/WHATSNEW.md @@ -2,7 +2,7 @@ This document attempts to track **major** changes and additions in ENiGMA½. For details, see GitHub. ## 0.0.9-alpha -* Development is now against Node.js 8.x LTS. While other Node.js series may continue to work, you're own your own and YMMV! +* Development is now against Node.js 10.x LTS. While other Node.js series may continue to work, you're own your own and YMMV! * Fixed `justify` properties: `left` and `right` values were formerly swapped (oops!) * Menu items can now be arrays of *objects* not just arrays of strings. * The properties `itemFormat` and `focusItemFormat` allow you to supply the string format for items. For example if a menu object is `{ "userName" : "Bob", "age" : 35 }`, a `itemFormat` might be `|04{userName} |08- |14{age}`. diff --git a/docs/installation/manual.md b/docs/installation/manual.md index f03df762..01c5ca47 100644 --- a/docs/installation/manual.md +++ b/docs/installation/manual.md @@ -6,7 +6,7 @@ For Linux environments it's recommended you run the [install script](install-scr do things manually, read on... ## Prerequisites -* [Node.js](https://nodejs.org/) version **v6.x or higher** +* [Node.js](https://nodejs.org/) version **v10.x LTS or higher** (Note that 8.x LTS *probably* works but is unsupported). * :information_source: It is **highly** recommended to use [nvm](https://github.com/creationix/nvm) to manage your Node.js installation if you're on a Linux/Unix environment.