Fix favicons' paths

pull/2855/head
Victor Baranov 5 years ago
parent 7286cbfa60
commit 0ba97c9ef7
  1. 1
      CHANGELOG.md
  2. BIN
      apps/block_scout_web/assets/static/android-chrome-192x192.png
  3. BIN
      apps/block_scout_web/assets/static/android-chrome-512x512.png
  4. BIN
      apps/block_scout_web/assets/static/favicon-16x16.png
  5. BIN
      apps/block_scout_web/assets/static/favicon-32x32.png
  6. BIN
      apps/block_scout_web/assets/static/images/favicon-16x16.png
  7. BIN
      apps/block_scout_web/assets/static/images/favicon-32x32.png
  8. 0
      apps/block_scout_web/assets/static/images/favicon.ico
  9. BIN
      apps/block_scout_web/assets/static/mstile-150x150.png
  10. 3
      apps/block_scout_web/lib/block_scout_web/endpoint.ex
  11. 6
      apps/block_scout_web/lib/block_scout_web/templates/layout/app.html.eex

@ -7,6 +7,7 @@
- [#2822](https://github.com/poanetwork/blockscout/pull/2822) - Estimated address count on the main page, if cache is empty
### Fixes
- [#2855](https://github.com/poanetwork/blockscout/pull/2855) - Fix favicons load
- [#2843](https://github.com/poanetwork/blockscout/pull/2843) - fix realtime fetcher small skips feature
- [#2841](https://github.com/poanetwork/blockscout/pull/2841) - LUKSO dashboard height fix
- [#2837](https://github.com/poanetwork/blockscout/pull/2837) - fix txlist ordering issue

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 9.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 42 KiB

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 424 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 794 B

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 7.2 KiB

@ -27,9 +27,6 @@ defmodule BlockScoutWeb.Endpoint do
android-chrome-512x512.png
apple-touch-icon.png
browserconfig.xml
favicon.ico
favicon-16x16.png
favicon-32x32.png
mstile-150x150.png
safari-pinned-tab.svg
site.manifest

@ -9,11 +9,11 @@
<noscript><link rel="stylesheet" href="/css/non-critical.css"></noscript>
<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, "/favicon-32x32.png") %>">
<link rel="icon" type="image/png" sizes="16x16" href="<%= static_path(@conn, "/favicon-16x16.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="manifest" href="<%= static_path(@conn, "/site.webmanifest") %>">
<link rel="mask-icon" href="<%= static_path(@conn, "/safari-pinned-tab.svg") %>" color="#5bbad5">
<link rel="shortcut icon" href="<%= static_path(@conn, "/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-config" content="<%= static_path(@conn, "/browserconfig.xml") %>">
<meta name="theme-color" content="#ffffff">

Loading…
Cancel
Save