Skip to content

Commit

Permalink
Add config and fix selenium
Browse files Browse the repository at this point in the history
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
  • Loading branch information
skjnldsv committed Oct 19, 2022
1 parent 278c4e7 commit 38d6f9f
Show file tree
Hide file tree
Showing 22 changed files with 53 additions and 120 deletions.
10 changes: 10 additions & 0 deletions config/config.sample.php
Expand Up @@ -2182,6 +2182,16 @@

'login_form_autocomplete' => true,

/**
* If your user is using an outdated browser, a warning will be shown
* to offer some guidance to upgrade and ensure a proper Nextcloud experience.
* They can still bypass it after they have read the warning.
*
* Simply set this property to "false", if you want to turn this feature off.
*/

'no_unsupported_browser_warning' => false,

/**
* Disable background scanning of files
*
Expand Down
13 changes: 0 additions & 13 deletions core/css/apps.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion core/css/apps.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 0 additions & 4 deletions core/css/public.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion core/css/public.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 0 additions & 17 deletions core/css/server.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion core/css/server.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion core/src/main.js
Expand Up @@ -38,7 +38,7 @@ import { initCore } from './init.js'
import { registerAppsSlideToggle } from './OC/apps.js'
import { testSupportedBrowser } from './utils/RedirectUnsupportedBrowsers.js'

if (window.TESTING === undefined) {
if (!window.TESTING && !OC?.config?.no_unsupported_browser_warning) {
testSupportedBrowser()
}

Expand Down
2 changes: 1 addition & 1 deletion core/src/services/BrowserStorageService.js
Expand Up @@ -3,7 +3,7 @@
*
* @author John Molakvoæ <skjnldsv@protonmail.com>
*
* @license GNU AGPL version 3 or any later version
* @license AGPL-3.0-or-later
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
Expand Down
2 changes: 1 addition & 1 deletion core/src/services/BrowsersListService.js
Expand Up @@ -3,7 +3,7 @@
*
* @author John Molakvoæ <skjnldsv@protonmail.com>
*
* @license GNU AGPL version 3 or any later version
* @license AGPL-3.0-or-later
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
Expand Down

0 comments on commit 38d6f9f

Please sign in to comment.