From 0986725a258a692c48e0334ae6258670950b9fc7 Mon Sep 17 00:00:00 2001 From: Gregg Tavares Date: Thu, 2 Jul 2015 20:13:05 +0900 Subject: [PATCH] update FAQ --- FAQ.md | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/FAQ.md b/FAQ.md index e1318faf..ab52d38e 100644 --- a/FAQ.md +++ b/FAQ.md @@ -4,11 +4,23 @@ HappyFunTimes FAQ This FAQ is mostly questions developers might ask. - - Rational -------- +* **Q:** What does the message "trying to use feature of API version x.x.x" mean? + + I think it's pretty self explanatory what it means. Rather you problably want + to know why even have the message? Why not just use that version. + + The reason is when a user goes to install your game she needs to know why + it's not working. If you have a lower API version in your package.json + then if there was no error then the game would not run and she'd have + no idea why. + + This way hopefully you'll update your package.json. That way if she + doesn't have a version of happyFunTimes that supports that api version + she'll be prompted to install a newer version. + * **Q:** Why not use native installers? Why don't games use native installers like .pkg for OSX or .msi for Windows etc.