logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe
commit: 77045d088608eec16548a0dfb693a6307881048d
parent: e7723ab6625d3cd48b44ddbd340854ea960706f6
Author: Eugen <eugen@zeonfederated.com>
Date:   Wed,  2 Nov 2016 17:41:32 +0100

Merge pull request #130 from fhemberger/feature/manifest

Add touch icons for Chrome, iOS and Windows 10

Diffstat:

Mapp/views/layouts/application.html.haml5+++++
Apublic/android-chrome-192x192.png0
Apublic/apple-touch-icon.png0
Apublic/browserconfig.xml9+++++++++
Apublic/manifest.json14++++++++++++++
Apublic/mstile-150x150.png0
6 files changed, 28 insertions(+), 0 deletions(-)

diff --git a/app/views/layouts/application.html.haml b/app/views/layouts/application.html.haml @@ -5,6 +5,11 @@ %meta{:name => 'viewport', :content => 'width=device-width, initial-scale=1'}/ %meta{'http-equiv' => 'X-UA-Compatible', :content => 'IE=edge'}/ + %link{:rel => "apple-touch-icon", :sizes => "180x180", :href => "/assets/apple-touch-icon.png"}/ + %link{:rel => "manifest", :href => "/assets/manifest.json"}/ + %meta{:name => "msapplication-config", :content => "/assets/browserconfig.xml"}/ + %meta{:name => "theme-color", :content => "#ffffff"}/ + %title = "#{yield(:page_title)} - " if content_for?(:page_title) Mastodon diff --git a/public/android-chrome-192x192.png b/public/android-chrome-192x192.png Binary files differ. diff --git a/public/apple-touch-icon.png b/public/apple-touch-icon.png Binary files differ. diff --git a/public/browserconfig.xml b/public/browserconfig.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="utf-8"?> +<browserconfig> + <msapplication> + <tile> + <square150x150logo src="/assets/mstile-150x150.png"/> + <TileColor>#2b5797</TileColor> + </tile> + </msapplication> +</browserconfig> diff --git a/public/manifest.json b/public/manifest.json @@ -0,0 +1,14 @@ +{ + "name": "Mastodon", + "description": "Mastodon is a free, open-source social network server.", + "icons": [ + { + "src": "\/assets\/android-chrome-192x192.png", + "sizes": "192x192", + "type": "image\/png" + } + ], + "theme_color": "#ffffff", + "display": "standalone", + "start_url": "/#/statuses/home" +} diff --git a/public/mstile-150x150.png b/public/mstile-150x150.png Binary files differ.