Skip to content

Commit

Permalink
Merge pull request #776 from os-autoinst/replaced_logo
Browse files Browse the repository at this point in the history
 Replace the broken PNGed SVG with the real one
  • Loading branch information
coolo committed Jul 6, 2016
2 parents aa0ef10 + ac4fcf0 commit df5f866
Show file tree
Hide file tree
Showing 6 changed files with 532 additions and 44 deletions.
6 changes: 6 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -99,3 +99,9 @@ coverage-html: cover_db/coverage.html
.PHONY: coverage-check
coverage-check: cover_db/coverage.html
./script/check_coverage ${COVERAGE_THRESHOLD}

public/favicon.ico: public/images/logo.svg
for w in 16 32 64 128; do \
inkscape -e public/images/logo-$$w.png -w $$w public/images/logo.svg ; \
done
convert public/images/logo-16.png public/images/logo-32.png public/images/logo-64.png public/images/logo-128.png -background white -alpha remove public/favicon.ico
Binary file added public/favicon.ico
Binary file not shown.
Binary file added public/images/logo-16.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed public/images/logo.png
Binary file not shown.
565 changes: 523 additions & 42 deletions public/images/logo.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 3 additions & 2 deletions templates/layouts/bootstrap.html.ep
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,9 @@
% end

<link rel="icon"
type="image/png" sizes="24x24"
href="/images/logo.png" />
type="image/png" sizes="16x16"
href="/images/logo-16.png" />
<link rel="icon" href="/images/logo.svg" sizes="any" type="image/svg+xml">

</head>
<body>
Expand Down

0 comments on commit df5f866

Please sign in to comment.