Skip to content

Commit

Permalink
Update favicon config, move to partial
Browse files Browse the repository at this point in the history
  • Loading branch information
carstene1ns committed Apr 6, 2024
1 parent d3d4389 commit e1731aa
Show file tree
Hide file tree
Showing 24 changed files with 26 additions and 10 deletions.
Binary file removed content/android-chrome-192x192.png
Binary file not shown.
Binary file removed content/android-chrome-512x512.png
Binary file not shown.
Binary file removed content/apple-touch-icon-precomposed.png
Binary file not shown.
Binary file removed content/apple-touch-icon.png
Binary file not shown.
5 changes: 4 additions & 1 deletion content/browserconfig.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@
<browserconfig>
<msapplication>
<tile>
<square150x150logo src="/mstile-150x150.png"/>
<square70x70logo src="/images/icons/mstile-70x70.png"/>
<square150x150logo src="/images/icons/mstile-150x150.png"/>
<square310x310logo src="/images/icons/mstile-310x310.png"/>
<wide310x150logo src="/images/icons/mstile-310x150.png"/>
<TileColor>#2d631d</TileColor>
</tile>
</msapplication>
Expand Down
Binary file removed content/favicon-16x16.png
Binary file not shown.
Binary file removed content/favicon-32x32.png
Binary file not shown.
Binary file added content/images/icons/android-chrome-192x192.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 content/images/icons/android-chrome-512x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 content/images/icons/apple-touch-icon.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 content/images/icons/favicon-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 content/images/icons/favicon-194x194.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 content/images/icons/favicon-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 content/images/icons/mstile-144x144.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 content/images/icons/mstile-150x150.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 content/images/icons/mstile-310x150.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 content/images/icons/mstile-310x310.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 content/images/icons/mstile-70x70.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
Binary file removed content/mstile-150x150.png
Binary file not shown.
7 changes: 4 additions & 3 deletions content/manifest.json → content/site.webmanifest
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
{
"name": "EasyRPG",
"name": "EasyRPG.org",
"short_name": "EasyRPG",
"icons": [
{
"src": "/android-chrome-192x192.png",
"src": "/images/icons/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/android-chrome-512x512.png",
"src": "/images/icons/android-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
Expand Down
7 changes: 1 addition & 6 deletions layouts/default.slim
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,7 @@ html lang="en"
meta name="description" content="Free and open source role playing game interpreter and editor compatible with RPG Maker 2000 and 2003"
meta name="viewport" content="width=device-width"
meta http-equiv="X-UA-Compatible" content="IE=edge"
link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"
link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"
link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"
link rel="manifest" href="/manifest.json"
link rel="mask-icon" href="/safari-pinned-tab.svg" color="#2d631d"
meta name="theme-color" content="#2d631d"
== render '/icons.*'
link rel="stylesheet" href="#{@items['/css/*'].path}"
script src="/js/vendor/jquery-2.2.4.min.js"
body
Expand Down
17 changes: 17 additions & 0 deletions layouts/icons.slim
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
/ apple
link rel="apple-touch-icon" sizes="180x180" href="/images/icons/apple-touch-icon.png"
link rel="mask-icon" href="/images/icons/safari-pinned-tab.svg" color="#5bbad5"
/ standard compliant
link rel="icon" type="image/png" sizes="32x32" href="/images/icons/favicon-32x32.png"
link rel="icon" type="image/png" sizes="194x194" href="/images/icons/favicon-194x194.png"
link rel="icon" type="image/png" sizes="192x192" href="/images/icons/android-chrome-192x192.png"
link rel="icon" type="image/png" sizes="16x16" href="/images/icons/favicon-16x16.png"
meta name="theme-color" content="#2d631d"
/ android
link rel="manifest" href="/site.webmanifest"
/ legacy
link rel="shortcut icon" href="/favicon.ico"
/ microsoft
meta name="msapplication-TileColor" content="#2d631d"
meta name="msapplication-TileImage" content="/images/icons/mstile-144x144.png"
meta name="msapplication-config" content="/browserconfig.xml"

0 comments on commit e1731aa

Please sign in to comment.