You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ja...@apache.org on 2016/09/20 07:33:23 UTC

[20/27] couchdb-www git commit: feat: updated favicon for more platforms

feat: updated favicon for more platforms


Project: http://git-wip-us.apache.org/repos/asf/couchdb-www/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb-www/commit/391340a0
Tree: http://git-wip-us.apache.org/repos/asf/couchdb-www/tree/391340a0
Diff: http://git-wip-us.apache.org/repos/asf/couchdb-www/diff/391340a0

Branch: refs/heads/asf-site
Commit: 391340a04176059707586e1f2a4759ba37b55f6f
Parents: f9d8e57
Author: Alex Feyerke <es...@users.noreply.github.com>
Authored: Mon Sep 19 11:33:36 2016 +0200
Committer: Alex Feyerke <es...@users.noreply.github.com>
Committed: Mon Sep 19 11:33:36 2016 +0200

----------------------------------------------------------------------
 android-chrome-192x192.png | Bin 0 -> 3597 bytes
 apple-touch-icon.png       | Bin 0 -> 2733 bytes
 browserconfig.xml          |   9 +++++++++
 favicon-16x16.png          | Bin 0 -> 660 bytes
 favicon-32x32.png          | Bin 0 -> 1252 bytes
 favicon.ico                | Bin 3758 -> 15086 bytes
 image/favicon_source.png   | Bin 0 -> 11737 bytes
 index.html                 |   8 ++++++++
 manifest.json              |  12 ++++++++++++
 mstile-150x150.png         | Bin 0 -> 2542 bytes
 safari-pinned-tab.svg      |  30 ++++++++++++++++++++++++++++++
 11 files changed, 59 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-www/blob/391340a0/android-chrome-192x192.png
----------------------------------------------------------------------
diff --git a/android-chrome-192x192.png b/android-chrome-192x192.png
new file mode 100644
index 0000000..8090f2d
Binary files /dev/null and b/android-chrome-192x192.png differ

http://git-wip-us.apache.org/repos/asf/couchdb-www/blob/391340a0/apple-touch-icon.png
----------------------------------------------------------------------
diff --git a/apple-touch-icon.png b/apple-touch-icon.png
new file mode 100644
index 0000000..ab7d2ac
Binary files /dev/null and b/apple-touch-icon.png differ

http://git-wip-us.apache.org/repos/asf/couchdb-www/blob/391340a0/browserconfig.xml
----------------------------------------------------------------------
diff --git a/browserconfig.xml b/browserconfig.xml
new file mode 100644
index 0000000..6742c50
--- /dev/null
+++ b/browserconfig.xml
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="utf-8"?>
+<browserconfig>
+  <msapplication>
+    <tile>
+      <square150x150logo src="/mstile-150x150.png?v=PYEX7lqXjA"/>
+      <TileColor>#b91d47</TileColor>
+    </tile>
+  </msapplication>
+</browserconfig>

http://git-wip-us.apache.org/repos/asf/couchdb-www/blob/391340a0/favicon-16x16.png
----------------------------------------------------------------------
diff --git a/favicon-16x16.png b/favicon-16x16.png
new file mode 100644
index 0000000..abe4e49
Binary files /dev/null and b/favicon-16x16.png differ

http://git-wip-us.apache.org/repos/asf/couchdb-www/blob/391340a0/favicon-32x32.png
----------------------------------------------------------------------
diff --git a/favicon-32x32.png b/favicon-32x32.png
new file mode 100644
index 0000000..5b3ba4f
Binary files /dev/null and b/favicon-32x32.png differ

http://git-wip-us.apache.org/repos/asf/couchdb-www/blob/391340a0/favicon.ico
----------------------------------------------------------------------
diff --git a/favicon.ico b/favicon.ico
index 64ea433..02ba701 100644
Binary files a/favicon.ico and b/favicon.ico differ

http://git-wip-us.apache.org/repos/asf/couchdb-www/blob/391340a0/image/favicon_source.png
----------------------------------------------------------------------
diff --git a/image/favicon_source.png b/image/favicon_source.png
new file mode 100644
index 0000000..82ee4af
Binary files /dev/null and b/image/favicon_source.png differ

http://git-wip-us.apache.org/repos/asf/couchdb-www/blob/391340a0/index.html
----------------------------------------------------------------------
diff --git a/index.html b/index.html
index 134aab4..1f75c0b 100644
--- a/index.html
+++ b/index.html
@@ -12,6 +12,14 @@
 
 <title>Apache CouchDB</title>
 
+<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png?v=PYEX7lqXjA">
+<link rel="icon" type="image/png" href="/favicon-32x32.png?v=PYEX7lqXjA" sizes="32x32">
+<link rel="icon" type="image/png" href="/favicon-16x16.png?v=PYEX7lqXjA" sizes="16x16">
+<link rel="manifest" href="/manifest.json?v=PYEX7lqXjA">
+<link rel="mask-icon" href="/safari-pinned-tab.svg?v=PYEX7lqXjA" color="#c6302f">
+<link rel="shortcut icon" href="/favicon.ico?v=PYEX7lqXjA">
+<meta name="theme-color" content="#ffffff">
+
 <!--
 
 Thanks to Yohei Shimomae and the Apache Cordova team for the original design.

http://git-wip-us.apache.org/repos/asf/couchdb-www/blob/391340a0/manifest.json
----------------------------------------------------------------------
diff --git a/manifest.json b/manifest.json
new file mode 100644
index 0000000..9a7abea
--- /dev/null
+++ b/manifest.json
@@ -0,0 +1,12 @@
+{
+	"name": "CouchDB",
+	"icons": [
+		{
+			"src": "\/android-chrome-192x192.png?v=PYEX7lqXjA",
+			"sizes": "192x192",
+			"type": "image\/png"
+		}
+	],
+	"theme_color": "#ffffff",
+	"display": "standalone"
+}

http://git-wip-us.apache.org/repos/asf/couchdb-www/blob/391340a0/mstile-150x150.png
----------------------------------------------------------------------
diff --git a/mstile-150x150.png b/mstile-150x150.png
new file mode 100644
index 0000000..540eb63
Binary files /dev/null and b/mstile-150x150.png differ

http://git-wip-us.apache.org/repos/asf/couchdb-www/blob/391340a0/safari-pinned-tab.svg
----------------------------------------------------------------------
diff --git a/safari-pinned-tab.svg b/safari-pinned-tab.svg
new file mode 100644
index 0000000..2a3edb4
--- /dev/null
+++ b/safari-pinned-tab.svg
@@ -0,0 +1,30 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
+ "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
+<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
+ width="288.000000pt" height="288.000000pt" viewBox="0 0 288.000000 288.000000"
+ preserveAspectRatio="xMidYMid meet">
+<metadata>
+Created by potrace 1.11, written by Peter Selinger 2001-2013
+</metadata>
+<g transform="translate(0.000000,288.000000) scale(0.100000,-0.100000)"
+fill="#000000" stroke="none">
+<path d="M660 2433 c-177 -31 -293 -144 -316 -308 -6 -41 -12 -105 -10 -105 0
+-1 19 -3 41 -6 54 -8 128 -41 154 -68 32 -34 58 -113 60 -185 3 -76 24 -146
+55 -180 21 -24 87 -58 129 -67 33 -7 1287 -7 1326 1 119 21 175 100 186 257 2
+35 8 78 14 95 26 86 102 139 211 147 24 2 25 5 23 62 -6 140 -77 259 -187 313
+-99 47 -67 46 -886 47 -426 1 -786 0 -800 -3z"/>
+<path d="M251 1918 c-80 -22 -139 -102 -161 -213 -8 -42 -10 -161 -7 -395 3
+-184 7 -344 10 -355 32 -149 86 -240 162 -275 101 -46 221 -4 241 84 9 39 12
+1036 3 1056 -27 60 -37 72 -74 90 -45 22 -116 25 -174 8z"/>
+<path d="M2460 1919 c-38 -15 -68 -48 -81 -88 -17 -51 -19 -1011 -2 -1063 16
+-50 50 -86 92 -98 80 -22 144 -6 204 52 43 41 64 82 90 173 18 62 21 109 24
+415 5 364 0 429 -39 498 -30 56 -48 73 -103 98 -54 25 -139 31 -185 13z"/>
+<path d="M683 1409 c-64 -28 -96 -80 -94 -154 2 -80 25 -125 78 -151 36 -18
+75 -19 773 -19 l735 0 36 23 c20 12 44 38 54 57 18 40 22 123 7 151 -6 11 -11
+22 -11 26 -5 26 -18 40 -59 59 l-46 23 -718 0 c-640 1 -722 -1 -755 -15z"/>
+<path d="M671 978 c-56 -29 -81 -74 -81 -146 0 -65 22 -115 64 -145 l31 -22
+735 -3 c550 -2 742 0 765 9 66 27 97 76 96 155 0 69 -21 115 -62 145 l-34 24
+-735 3 -735 3 -44 -23z"/>
+</g>
+</svg>