Skip to content

Commit

Permalink
Adding webapp manifest.json file.
Browse files Browse the repository at this point in the history
  • Loading branch information
lanceewing committed Apr 1, 2024
1 parent 3d0c168 commit b1db738
Show file tree
Hide file tree
Showing 12 changed files with 41 additions and 0 deletions.
Binary file added assets/icons/agile-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 assets/icons/agile-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 assets/icons/agile-168x168.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 assets/icons/agile-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 assets/icons/agile-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 assets/icons/agile-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 assets/icons/agile-48x48.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 assets/icons/agile-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 assets/icons/agile-72x72.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 assets/icons/agile-96x96.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions html/webapp/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta id="gameViewport" name="viewport" content="width=device-width, initial-scale=1.0, interactive-widget=resizes-content">
<meta name="theme-color" content="#000000">
<link rel="manifest" href="manifest.json" />
<link href="styles.css" rel="stylesheet" type="text/css">
</head>

Expand Down
40 changes: 40 additions & 0 deletions html/webapp/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
"name": "AGILE",
"short_name": "AGILE",
"start_url": ".",
"display": "standalone",
"background_color": "#fff",
"description": "An HTML5 implementation of Sierra On-Line's AGI interpreter",
"icons": [
{
"src": "icons/agile-48x48.png",
"sizes": "48x48",
"type": "image/png"
},
{
"src": "icons/agile-72x72.png",
"sizes": "72x72",
"type": "image/png"
},
{
"src": "icons/agile-96x96.png",
"sizes": "96x96",
"type": "image/png"
},
{
"src": "icons/agile-144x144.png",
"sizes": "144x144",
"type": "image/png"
},
{
"src": "icons/agile-168x168.png",
"sizes": "168x168",
"type": "image/png"
},
{
"src": "icons/agile-192x192.png",
"sizes": "192x192",
"type": "image/png"
}
]
}

0 comments on commit b1db738

Please sign in to comment.