Merge pull request #2988 from poanetwork/vb-fix-webmanifest-accessibility

Fix web manifest accessibility
pull/2995/head
Victor Baranov 5 years ago committed by GitHub
commit eb5b0184cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      CHANGELOG.md
  2. 0
      apps/block_scout_web/assets/static/manifest.webmanifest
  3. 4
      apps/block_scout_web/lib/block_scout_web/endpoint.ex
  4. 2
      apps/block_scout_web/lib/block_scout_web/templates/layout/app.html.eex

@ -4,6 +4,7 @@
### Fixes ### Fixes
- [#2989](https://github.com/poanetwork/blockscout/pull/2989) - Introduce API_PATH env var - [#2989](https://github.com/poanetwork/blockscout/pull/2989) - Introduce API_PATH env var
- [#2988](https://github.com/poanetwork/blockscout/pull/2988) - Fix web manifest accessibility
- [#2897](https://github.com/poanetwork/blockscout/pull/2897) - remove duplicate indexes - [#2897](https://github.com/poanetwork/blockscout/pull/2897) - remove duplicate indexes
### Chore ### Chore

@ -29,9 +29,9 @@ defmodule BlockScoutWeb.Endpoint do
browserconfig.xml browserconfig.xml
mstile-150x150.png mstile-150x150.png
safari-pinned-tab.svg safari-pinned-tab.svg
site.manifest
robots.txt robots.txt
) ),
only_matching: ~w(manifest)
) )
# Code reloading can be explicitly enabled under the # Code reloading can be explicitly enabled under the

@ -12,7 +12,7 @@
<link rel="apple-touch-icon" sizes="180x180" href="<%= static_path(@conn, "/apple-touch-icon.png") %>"> <link rel="apple-touch-icon" sizes="180x180" href="<%= static_path(@conn, "/apple-touch-icon.png") %>">
<link rel="icon" type="image/png" sizes="32x32" href="<%= static_path(@conn, "/images/favicon-32x32.png") %>"> <link rel="icon" type="image/png" sizes="32x32" href="<%= static_path(@conn, "/images/favicon-32x32.png") %>">
<link rel="icon" type="image/png" sizes="16x16" href="<%= static_path(@conn, "/images/favicon-16x16.png") %>"> <link rel="icon" type="image/png" sizes="16x16" href="<%= static_path(@conn, "/images/favicon-16x16.png") %>">
<link rel="manifest" href="<%= static_path(@conn, "/site.webmanifest") %>"> <link rel="manifest" href="<%= static_path(@conn, "/manifest.webmanifest") %>">
<link rel="mask-icon" href="<%= static_path(@conn, "/safari-pinned-tab.svg") %>" color="#5bbad5"> <link rel="mask-icon" href="<%= static_path(@conn, "/safari-pinned-tab.svg") %>" color="#5bbad5">
<link rel="shortcut icon" type='image/x-icon' href="<%= static_path(@conn, "/images/favicon.ico") %>"> <link rel="shortcut icon" type='image/x-icon' href="<%= static_path(@conn, "/images/favicon.ico") %>">
<meta name="msapplication-TileColor" content="#7dd79f"> <meta name="msapplication-TileColor" content="#7dd79f">

Loading…
Cancel
Save