Skip to content
Closed
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
feat(PWA): change display-mode to minimal-ui
Signed-off-by: Simon L. <[email protected]>
  • Loading branch information
szaimen committed Jan 31, 2025
commit 50cd8a59668c7d6554f04cd1e77f4ab6be62847c
2 changes: 1 addition & 1 deletion apps/theming/lib/Controller/ThemingController.php
Original file line number Diff line number Diff line change
Expand Up @@ -481,7 +481,7 @@ public function getManifest(string $app): JSONResponse {
'sizes' => '16x16'
]
],
'display' => 'standalone'
'display' => 'minimal-ui'
];
$response = new JSONResponse($responseJS);
$response->cacheFor(3600);
Expand Down
2 changes: 1 addition & 1 deletion apps/theming/tests/Controller/ThemingControllerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -750,7 +750,7 @@ public function testGetManifest(): void {
'sizes' => '16x16'
]
],
'display' => 'standalone',
'display' => 'minimal-ui',
'short_name' => 'Nextcloud',
'theme_color' => null,
'background_color' => null,
Expand Down
2 changes: 1 addition & 1 deletion core/img/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@
"type": "image/svg+xml",
"sizes": "16x16"
}],
"display": "standalone"
"display": "minimal-ui"
}
Loading