Skip to content

Commit

Permalink
GUACAMOLE-1989: Merge the ability to open guacamole as an independent…
Browse files Browse the repository at this point in the history
… application.
  • Loading branch information
necouchman authored Oct 14, 2024
2 parents d558a44 + 56fb1dd commit bbede31
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 0 deletions.
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.
1 change: 1 addition & 0 deletions guacamole/src/main/frontend/src/images/logo-vector.svg
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 guacamole/src/main/frontend/src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
<link rel="icon" type="image/png" href="images/logo-64.png">
<link rel="icon" type="image/png" sizes="144x144" href="images/logo-144.png">
<link rel="apple-touch-icon" type="image/png" href="images/logo-144.png">
<link rel="manifest" href="manifest.json">

<!-- Web application CSS (bundled by Webpack) -->
<% for (var index in htmlWebpackPlugin.files.css) { %>
Expand Down
24 changes: 24 additions & 0 deletions guacamole/src/main/frontend/src/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"name": "Guacamole",
"short_name": "Guacamole",
"description": "Guacamole",
"start_url": ".",
"display": "standalone",
"icons": [
{
"src": "./images/logo-vector.svg",
"type": "image/svg+xml",
"sizes": "512x512"
},
{
"src": "./images/logo-512.png",
"type": "image/png",
"sizes": "512x512"
},
{
"src": "./images/logo-192.png",
"type": "image/png",
"sizes": "192x192"
}
]
}
1 change: 1 addition & 0 deletions guacamole/src/main/frontend/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,7 @@ module.exports = {
{ from: 'fonts/**/*' },
{ from: 'images/**/*' },
{ from: 'layouts/**/*' },
{ from: 'manifest.json' },
{ from: 'translations/**/*' },
{ from: 'verifyCachedVersion.js' }
], {
Expand Down

0 comments on commit bbede31

Please sign in to comment.