Last active
June 19, 2017 18:57
-
-
Save nolanlawson/1326b4af986f5ac0ee9ae24630229fa8 to your computer and use it in GitHub Desktop.
Revisions
-
nolanlawson revised this gist
May 25, 2016 . 1 changed file with 2 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -13,6 +13,8 @@ - App install banner - Various benefits of SW over AppCache (flexibility, partial cache invalidation, Cache API) - Push notifications - Media queries for standalone mode - Can set the background color on the splash screen - Can set the theme (status bar) color on the splash screen - Can define a short name vs a long name -
nolanlawson revised this gist
May 25, 2016 . 1 changed file with 3 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -17,12 +17,13 @@ - Can set the theme (status bar) color on the splash screen - Can define a short name vs a long name - Can launch in landscape - Can launch a custom URL to detect homescreen launch (e.g. `index.html?homescreen=true`) - Must use HTTPS **Non-differences:** - Can launch in "minimal-ui" mode – same as "browser" on Android, so equivalent to regular AppCache (see below for tracking bug though) - Can launch in "fullscreen" mode – same as "standalone" on Android, so equivalent to regular AppCache + `mobile-web-app-capable` (see below for tracking bug though) **Examples:** -
nolanlawson revised this gist
May 25, 2016 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -17,6 +17,7 @@ - Can set the theme (status bar) color on the splash screen - Can define a short name vs a long name - Can launch in landscape - Must use HTTPS **Non-differences:** -
nolanlawson revised this gist
May 25, 2016 . 1 changed file with 5 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -22,3 +22,8 @@ - Can launch in "minimal-ui" mode (same as "browser" on Android, so equivalent to regular AppCache) - Can launch in "fullscreen" mode (same as "standalone" on Android, so equivalent to regular AppCache + `mobile-web-app-capable`) **Examples:** - [Forecast.io](http://forecast.io/) (AppCache with `mobile-web-app-capable`, launches from homescreen with splash screen and no URL bar - [PouchDB.com](https://pouchdb.com/) (Regular AppCache, so launches from homescreen into browser with no splash screen) -
nolanlawson revised this gist
May 25, 2016 . 1 changed file with 6 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -16,6 +16,9 @@ - Can set the background color on the splash screen - Can set the theme (status bar) color on the splash screen - Can define a short name vs a long name - Can launch in landscape **Non-differences:** - Can launch in "minimal-ui" mode (same as "browser" on Android, so equivalent to regular AppCache) - Can launch in "fullscreen" mode (same as "standalone" on Android, so equivalent to regular AppCache + `mobile-web-app-capable`) -
nolanlawson revised this gist
May 25, 2016 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -17,5 +17,5 @@ - Can set the theme (status bar) color on the splash screen - Can define a short name vs a long name - Can launch in "fullscreen" mode (as opposed to "standalone," which just hides the URL bar) - Can launch in "minimal-ui" mode (same as "browser" on Android) - Can launch in landscape -
nolanlawson revised this gist
May 25, 2016 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,9 +1,9 @@ **Progressive Web App stack:** - Service Worker - Web App Manifest **Old-school offline webapp stack:** - Application Cache - Touch Icons (`apple-touch-icon` etc.) -
nolanlawson created this gist
May 25, 2016 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,21 @@ **PWA stack:** - Service Worker - Web App Manifest **Old-school AppCache app stack:** - Application Cache - Touch Icons (`apple-touch-icon` etc.) - `apple-mobile-web-app-capable` or `mobile-web-app-capable` **Differences:** - App install banner - Various benefits of SW over AppCache (flexibility, partial cache invalidation, Cache API) - Can set the background color on the splash screen - Can set the theme (status bar) color on the splash screen - Can define a short name vs a long name - Can launch in "fullscreen" mode (as opposed to "standalone," which just hides the URL bar) - Can launch in "minimal-ui" mode (might do nothing on Android, need to check) - Can launch in landscape