Skip to content

Commit eb89a86

Browse files
committed
Update metadata
1 parent 1740263 commit eb89a86

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "algorithm-visualizer",
33
"version": "2.0.0",
4-
"description": "Algorithm Visualizer",
4+
"description": "Algorithm Visualizer is an interactive online platform that visualizes algorithms from code.",
55
"scripts": {
66
"dev": "NODE_ENV=development ./bin/www",
77
"start": "NODE_ENV=production ./bin/www",

src/frontend/static/manifest.json

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,20 @@
11
{
22
"name": "Algorithm Visualizer",
33
"short_name": "Algorithm Visualizer",
4-
"start_url": ".",
5-
"display": "standalone",
4+
"start_url": "/?utm_source=homescreen",
5+
"display": "fullscreen",
6+
"orientation": "landscape",
67
"theme_color": "#393939",
78
"background_color": "#393939",
8-
"description": "Write down your algorithm to be visualized.",
9+
"description": "Algorithm Visualizer is an interactive online platform that visualizes algorithms from code.",
910
"icons": [
1011
{
11-
"src": "/img/favicon.png",
12+
"src": "favicon.png",
1213
"sizes": "256x256",
1314
"type": "image/png"
1415
},
1516
{
16-
"src": "/img/icon.png",
17+
"src": "icon.png",
1718
"sizes": "1024x1024",
1819
"type": "image/png"
1920
}
@@ -23,4 +24,4 @@
2324
"platform": "web"
2425
}
2526
]
26-
}
27+
}

src/frontend/template.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<meta name="viewport" content="width=device-width">
1818
<meta name="theme-color" content="#393939">
1919
<title>Algorithm Visualizer</title>
20-
<meta name="description" content="Algorithm Visualizer is an interactive online platform that visualizes algorithms from code." />
20+
<meta name="description" content="Algorithm Visualizer is an interactive online platform that visualizes algorithms from code." data-react-helmet="true" />
2121
<meta property="og:image" content="https://raw.githubusercontent.com/algorithm-visualizer/algorithm-visualizer/master/branding/screenshot.png" />
2222
<meta property="og:site_name" content="Algorithm Visualizer" />
2323
<link rel="shortcut icon" href="/favicon.png" type="image/png">

0 commit comments

Comments
 (0)