Skip to content

Commit

Permalink
☘ fix link to about page
Browse files Browse the repository at this point in the history
🛠️ Add favicon
  • Loading branch information
edmw committed Oct 22, 2019
1 parent 4065a7e commit 2bf9e54
Show file tree
Hide file tree
Showing 17 changed files with 11,624 additions and 18,043 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@
## [..]
🎁 Add functionality to move items between wishlists

## [1.3.3]
☘ fix link to about page
🛠️ Add favicon

## [1.3.2]
🎁 Add pages for legal notice and privacy policy

Expand Down
4 changes: 2 additions & 2 deletions Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -159,8 +159,8 @@
"repositoryURL": "https://github.com/vapor/multipart.git",
"state": {
"branch": null,
"revision": "f919a01c4d10a281d6236a21b0b1d1759a72b8eb",
"version": "3.0.4"
"revision": "b1992ef53fc9b38a0d9710be040cf19d9f63ad05",
"version": "3.1.0"
}
},
{
Expand Down
Binary file added Public/images/icon-128x128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Public/images/icon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Public/images/icon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Public/images/icon-64x64.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Public/images/icon-96x96.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Public/images/icon.ico
Binary file not shown.
27 changes: 27 additions & 0 deletions Public/images/icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion Resources/Localizations/de.json
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@
"message401-tips": "Vielleicht möchtest du versuchen, dich <a href='/signin?p=%{value1}'>anzumelden</a> ...",
"message401-tips-2": "... oder stattdessen einige nützliche Links besuchen:",
"useful-home": "Verwende dies, um von vorne zu beginnen ...",
"useful-about": "Verwende dies, wenn du jemandem von deinem Elend erzählen möchtest ...",
"useful-contact": "Verwende dies, wenn du jemandem von deinem Elend erzählen möchtest ...",
"authentication": "Authentifizierung",
"message-authentication": "Es scheint, dass deine Authentifizierung nicht fortgesetzt werden konnte.",
"message-authentication-2": "Leider können wir normalerweise nicht viel dagegen tun, bitte versuche es später noch einmal ...",
Expand Down
2 changes: 1 addition & 1 deletion Resources/Views/Errors/Useful.leaf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<ul>
<li><a href="/">#L10N("home"){Home}</a> — #L10N("useful-home"){Use this to start over ...}
<li><a href="/about">#L10N("about"){About}</a> — #L10N("useful-about"){Use this if you want to tell someone about your misery ...}
<li><a href="/legal-notice">#L10N("contact"){Contact}</a> — #L10N("useful-contact"){Use this if you want to tell someone about your misery ...}
</ul>
5 changes: 5 additions & 0 deletions Resources/Views/Wishlist.leaf
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,11 @@
#set("genesis-fragment-head") {
<meta name="viewport" content="initial-scale=1">

<link rel="shortcut icon" href="/images/icon.ico">
<link rel="icon" type="image/png" href="/images/icon-32x32.svg" sizes="32x32">
<link rel="icon" type="image/png" href="/images/icon-96x96.svg" sizes="96x96">
<link rel="icon" type="image/svg+xml" href="/images/icon.svg" sizes="any">

<link rel="stylesheet" media="all" href="/styles/wishlist.css">

<script src="/scripts/wishlist.js"></script>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ final class ErrorRendererMiddleware: Middleware, ServiceType {
for request: Request,
status: HTTPStatus
) throws -> Future<Response> {
request.requireLogger().warning(
request.requireLogger().info(
"Render error page for status: \(status.code), path: \(request.http.url)"
)
let renderer = try request.make(ViewRenderer.self)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module CCryptoOpenSSL {
umbrella "/Users/Michael/Webdaten/Dropbox/MiB Wepapp Wishlist/.build/checkouts/crypto/Sources/CCryptoOpenSSL/include"
umbrella "/Users/michael/Webdaten/Dropbox/MiB Wepapp Wishlist/.build/checkouts/crypto/Sources/CCryptoOpenSSL/include"
export *
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module CNIOOpenSSL {
umbrella "/Users/Michael/Webdaten/Dropbox/MiB Wepapp Wishlist/.build/checkouts/swift-nio-ssl/Sources/CNIOOpenSSL/include"
umbrella "/Users/michael/Webdaten/Dropbox/MiB Wepapp Wishlist/.build/checkouts/swift-nio-ssl/Sources/CNIOOpenSSL/include"
export *
}
Loading

0 comments on commit 2bf9e54

Please sign in to comment.