diff --git a/docs/npwd/Roadmap.md b/docs/npwd/Roadmap.md new file mode 100644 index 0000000..67e882b --- /dev/null +++ b/docs/npwd/Roadmap.md @@ -0,0 +1,38 @@ +--- +id: roadmap +title: Update Roadmap +sidebar_label: Update Roadmap +--- + +We push any major changes to the develop branch of the resource. So + +### Version 1.1.0 +- [x] [Call Volume Slider](https://github.com/project-error/npwd/commit/85f464c6e216f83250516a2d7cdc2bc27c0f23ef) +- [x] [Center Time With Frame](https://github.com/project-error/npwd/issues/511) +- [x] [Check for Custom Wallpaper](https://github.com/project-error/npwd/commit/8a1220474ff83db5fbcc8b3056c66260f3c80f4e) +- [ ] Config For Generated Number Format +- [ ] [Default Language](https://github.com/project-error/npwd/issues/501) +- [ ] [Handle Initial Database Insertion For Users](https://github.com/project-error/npwd/issues/502) +- [ ] Messages/Call Hooks +- [ ] Notify Weirdos Of New Versions +- [x] [Ringtone Dial For Origionator](https://github.com/project-error/npwd/commit/071e5e65d9bc3627ad5a122bafe45feb5d06233e) +- [ ] [Share Contact](https://github.com/project-error/npwd/issues/472) + +### Version 1.2.0+ +TBA + +### Undetermined Planned Features +These are features we plan on adding to the phone, but currently have no set time frame to do so. + +- [ ] Bank App +- [ ] Cell Service +- [ ] Config for Bottom Navbar Order +- [ ] Document App +- [ ] Email App +- [ ] Garage App + - Will use [NGWD](https://github.com/project-error/new-garage-who-dis) as this is planned to be fully standalone. +- [ ] GPS System + - Send current location. + - Intervally update real time position. +- [ ] Group Messages +- [ ] Photo Enlarge on Click \ No newline at end of file diff --git a/docs/npwd/start/Config.md b/docs/npwd/start/Config.md index 222ac53..f293ac8 100644 --- a/docs/npwd/start/Config.md +++ b/docs/npwd/start/Config.md @@ -36,6 +36,22 @@ exports('myCheckerFunction', function() end) ``` +## Word Filtering / Blacklisting + +Block / filter banned words in some apps like twitter, messaging and marketplace. + +Set enabled to true and add blacklisted words to the array like so: + +```json +{ + "profanityFilter": { + "enabled": true, + "badWords": ["sus", "amogus"] + } +} +``` +This will block these words with asterisks so a message would appear as "\*\*\*sy" instead of "sussy" + ## App Configuration ### Twitter - `showNotifications` diff --git a/sidebars.js b/sidebars.js index a8d1fb0..ed93ed0 100644 --- a/sidebars.js +++ b/sidebars.js @@ -26,7 +26,8 @@ module.exports = { items: ['npwd/dev/dev_bootstrap', 'npwd/dev/framework_integration', 'npwd/dev/setup', 'npwd/dev/disable_apps', 'npwd/dev/basics',] }, 'npwd/credits', - 'npwd/faq' + 'npwd/faq', + 'npwd/roadmap' ] } };