Skip to content

Commit

Permalink
Merge pull request #48 from cmstew/chrome-shortcut-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
robsdedude committed May 5, 2017
2 parents 445973c + 9629dfa commit 9579532
Show file tree
Hide file tree
Showing 5 changed files with 54 additions and 7 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "virtual-gamepads",
"version": "1.2.1",
"version": "1.2.2",
"description": "Virtual gamepads application",
"main": "main.js",
"author": "miroof",
Expand Down
6 changes: 3 additions & 3 deletions public/images/gamepad_icons/manifest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "Virtual gamepad",
"name": "Virtual Gamepad",
"icons": [
{
"src": "images/icons/launcher-icon-0-75x.png",
Expand Down Expand Up @@ -38,7 +38,7 @@
"density": "4.0"
}
],
"start_url": "index.html",
"start_url": "/gamepad.html",
"display": "standalone",
"orientation": "landscape"
}
}
44 changes: 44 additions & 0 deletions public/images/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
{
"name": "Virtual Controller",
"icons": [
{
"src": "images/icons/launcher-icon-0-75x.png",
"sizes": "36x36",
"type": "image/png",
"density": "0.75"
},
{
"src": "images/icons/launcher-icon-1x.png",
"sizes": "48x48",
"type": "image/png",
"density": "1.0"
},
{
"src": "images/icons/launcher-icon-1-5x.png",
"sizes": "72x72",
"type": "image/png",
"density": "1.5"
},
{
"src": "images/icons/launcher-icon-2x.png",
"sizes": "96x96",
"type": "image/png",
"density": "2.0"
},
{
"src": "images/icons/launcher-icon-3x.png",
"sizes": "144x144",
"type": "image/png",
"density": "3.0"
},
{
"src": "images/icons/launcher-icon-4x.png",
"sizes": "192x192",
"type": "image/png",
"density": "4.0"
}
],
"start_url": "/",
"display": "standalone",
"orientation": "landscape"
}
7 changes: 5 additions & 2 deletions public/images/touchpad_icons/manifest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "App",
"name": "Virtual Touchpad",
"icons": [
{
"src": "\/android-icon-36x36.png",
Expand Down Expand Up @@ -37,5 +37,8 @@
"type": "image\/png",
"density": "4.0"
}
]
],
"start_url": "/touchpad.html",
"display": "standalone",
"orientation": "landscape"
}
2 changes: 1 addition & 1 deletion public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" href="/images/gamepad_icons/favicon_32.png" />
<link rel="icon" sizes="192x192" href="/images/gamepad_icons/launcher-icon-4x.png">
<link rel="manifest" href="/images/gamepad_icons/manifest.json">
<link rel="manifest" href="/images/manifest.json">
<title>Virtual Controls</title>
<link rel="stylesheet" type="text/css" href="/css/style.css">
<script data-main="js/index" src="/js/lib/require.js"></script>
Expand Down

0 comments on commit 9579532

Please sign in to comment.