Update frontend splash screen

This commit is contained in:
Paulus Schoutsen 2015-11-28 18:20:17 -08:00
parent 78cfed1fb0
commit 64ebe8c6d0
7 changed files with 469 additions and 473 deletions

View File

@ -8,6 +8,8 @@
<link rel='shortcut icon' href='/static/favicon.ico' /> <link rel='shortcut icon' href='/static/favicon.ico' />
<link rel='icon' type='image/png' <link rel='icon' type='image/png'
href='/static/favicon-192x192.png' sizes='192x192'> href='/static/favicon-192x192.png' sizes='192x192'>
<link rel='icon' type='image/png'
href='/static/favicon-384x384.png' sizes='384x384'>
<link rel='apple-touch-icon' sizes='180x180' <link rel='apple-touch-icon' sizes='180x180'
href='/static/favicon-apple-180x180.png'> href='/static/favicon-apple-180x180.png'>
<meta name='apple-mobile-web-app-capable' content='yes'> <meta name='apple-mobile-web-app-capable' content='yes'>
@ -32,17 +34,14 @@
left: 0; left: 0;
right: 0; right: 0;
bottom: 0; bottom: 0;
} margin-bottom: 123px;
#init div {
line-height: 34px;
margin-bottom: 89px;
} }
</style> </style>
</head> </head>
<body fullbleed> <body fullbleed>
<div id='init'> <div id='init'>
<img src='/static/splash.png' height='230' /> <img src='/static/favicon-192x192.png' height='192' />
<div>Initializing</div> <div></div>
</div> </div>
<script src='/static/webcomponents-lite.min.js'></script> <script src='/static/webcomponents-lite.min.js'></script>
<link rel='import' href='/static/{{ app_url }}' /> <link rel='import' href='/static/{{ app_url }}' />

View File

@ -1,2 +1,2 @@
""" DO NOT MODIFY. Auto-generated by build_frontend script """ """ DO NOT MODIFY. Auto-generated by build_frontend script """
VERSION = "c90d40a0240cc1feec791ee820d928b3" VERSION = "c1df3a08faa4a9978b25639ca0fd63cd"

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

File diff suppressed because one or more lines are too long

@ -1 +1 @@
Subproject commit 62e494bd04509e8d9b73354b0e17d3381955e0c8 Subproject commit f29b1062b30c76ceeea87fd426a042d98358394a

View File

@ -5,10 +5,14 @@
"display": "standalone", "display": "standalone",
"icons": [ "icons": [
{ {
"src": "\/static\/favicon-192x192.png", "src": "/static/favicon-192x192.png",
"sizes": "192x192", "sizes": "192x192",
"type": "image\/png", "type": "image/png",
"density": "4.0" },
{
"src": "/static/favicon-384x384.png",
"sizes": "384x384",
"type": "image/png",
} }
] ]
} }

File diff suppressed because one or more lines are too long