- From: Sean Lang <notifications@github.com>
- Date: Sun, 21 Jun 2015 15:54:09 -0700
- To: w3c/manifest <manifest@noreply.github.com>
Received on Sunday, 21 June 2015 22:54:39 UTC
It shouldn't be that hard to switch over while we're still in Working Draft status, right? Vendors just need to deprecate the old names, and support new camelCased ones... They can support both (giving websites time to switch over) until this at least becomes a Candidate Recommendation. Plus, switching over should be really easy... you can probably do it with just sed: ```bash sed -e 's/"short_name":/"shortName":/' \ -e 's/"splash_screens":/"splashScreens":/' \ -e 's/"start_url":/"startUrl":/' \ -e 's/"theme_color":/"themeColor":/' \ -e 's/"related_applications":/"relatedApplications":/' \ -e 's/"prefer_related_applications":/"preferRelatedApplications":/' \ -e 's/"background_color":/"backgroundColor":/' < manifest.webmanifest ``` --- Reply to this email directly or view it on GitHub: https://github.com/w3c/manifest/issues/72#issuecomment-113966023
Received on Sunday, 21 June 2015 22:54:39 UTC