Skip to content

Commit

Permalink
Merge pull request #96 from koddsson/update-manifest-and-icons
Browse files Browse the repository at this point in the history
Update title, icons and manifest
  • Loading branch information
koddsson authored Jan 13, 2024
2 parents 8f2326a + 79fd28d commit cb4f693
Show file tree
Hide file tree
Showing 9 changed files with 32 additions and 3 deletions.
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>My app!</title>
<title>rss-reader</title>

<!-- https://evilmartians.com/chronicles/how-to-favicon-in-2021-six-files-that-fit-most-needs -->
<link rel="icon" href="/public/favicon.ico" sizes="any"><!-- 32×32 -->
<link rel="apple-touch-icon" href="/public/apple-touch-icon.png"><!-- 180×180 -->
<link rel="manifest" href="/public/manifest.webmanifest">
<link rel="manifest" href="/public/manifest.json">

<meta name="viewport" content="width=device-width, initial-scale=1" />

Expand Down
Binary file modified public/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 modified public/favicon.ico
Binary file not shown.
Binary file added public/icon-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 public/icon-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 public/icon-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 public/icon-512x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
30 changes: 30 additions & 0 deletions public/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"name": "RSS Reader",
"short_name": "RSS Reader",
"start_url": ".",
"display": "standalone",
"background_color": "#fff",
"description": "A RSS Reader in your browser!",
"icons": [
{
"src": "icon-512x512.png",
"sizes": "512x512",
"type": "image/png"
},
{
"src": "icon-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "icon-32x32.png",
"sizes": "32x32",
"type": "image/png"
},
{
"src": "icon-16x16.png",
"sizes": "16x16",
"type": "image/png"
}
]
}
1 change: 0 additions & 1 deletion public/manifest.webmanifest

This file was deleted.

0 comments on commit cb4f693

Please sign in to comment.