add logo as favicon
continuous-integration/drone/push Build is failing Details

This commit is contained in:
shibao 2022-07-05 01:09:47 -04:00
parent 1583ad3503
commit cf75007e4d
4 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,6 @@
# v0.5.5
- Forgot to add the logo as the favicon whoops
# v0.5.4
- Rename "Ammo" tab to "Catalog", and "Manage" tab is now "Ammo"
- Ammo groups are now just referred to as Ammo or "Packs"

View File

@ -134,7 +134,7 @@ defmodule CanneryWeb.HomeLive do
to: "https://gitea.bubbletea.dev/shibao/cannery/src/branch/stable/CHANGELOG.md",
target: "_blank",
rel: "noopener noreferrer" do %>
<p>0.5.4</p>
<p>0.5.5</p>
<i class="fas fa-md fa-info-circle"></i>
<% end %>
</li>

View File

@ -5,6 +5,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<%= csrf_meta_tag() %>
<link rel="shortcut icon" type="image/jpg" href={Routes.static_path(@conn, "/images/cannery.svg")}/>
<%= if(assigns |> Map.has_key?(:page_title), do: @page_title, else: "Cannery")
|> live_title_tag(suffix: " | Cannery") %>
<link phx-track-static rel="stylesheet" href={Routes.static_path(@conn, "/css/app.css")} />

View File

@ -4,7 +4,7 @@ defmodule Cannery.MixProject do
def project do
[
app: :cannery,
version: "0.5.4",
version: "0.5.5",
elixir: "1.13.4",
elixirc_paths: elixirc_paths(Mix.env()),
compilers: [:gettext] ++ Mix.compilers(),