Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions ScadaWeb/ScadaWeb/ScadaWeb/Pages/Shared/_BasicLayout.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@
<script src="~/lib/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
<script src="~/js/scada-common.js" asp-append-version="true"></script>
@RenderSection("Scripts", required: false)

<link href="~/manifest.json" rel="manifest" />
<link href="~/images/icon_x512.png" rel="apple-touch-icon" sizes="512x512" />
<link href="~/images/icon_x192.png" rel="apple-touch-icon" sizes="192x192" />
<link href="~/images/icon_x144.png" rel="apple-touch-icon" sizes="144x144" />
<meta name="theme-color" content="#23282d">
</head>
<body class="@ViewBag.BodyCssClass">
@RenderBody()
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 ScadaWeb/ScadaWeb/ScadaWeb/wwwroot/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"name": "Rapid SCADA",
"short_name": "SCADA",
"description": "Rapid SCADA | Free, Open Source, Full Featured SCADA",
"lang": "en",
"start_url": "./",
"display": "standalone",
"background_color": "#f8f9fa",
"theme_color": "#23282d",
"icons": [
{
"src": "images/icon_x512.png",
"type": "image/png",
"sizes": "512x512",
"purpose": "maskable"
},
{
"src": "images/icon_x192.png",
"type": "image/png",
"sizes": "192x192",
"purpose": "maskable"
},
{
"src": "images/icon_x144.png",
"type": "image/png",
"sizes": "144x144",
"purpose": "any"
}
]
}