Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | fix(settings): When testing server stability, request URL with trailing slash | Ferdinand Thiessen | 2024-05-06 | 1 | -1/+1 |
| | | | | | | | This prevents one HTTP request for most situations (301 from `apps/files` to `apps/files/`) and helps users with faulty reverse-proxy configuration. Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de> | ||||
* | feat(webauthn): submit device name by pressing enter | Richard Steinmetz | 2024-05-01 | 1 | -8/+11 |
| | | | | Signed-off-by: Richard Steinmetz <richard@steinmetz.cloud> | ||||
* | fix: Use `@simplewebauthn` for frontend logic | Ferdinand Thiessen | 2024-04-16 | 5 | -113/+124 |
| | | | | | | | | | This simplifies the code a lot and fixes errors with the exisiting custom code, where slightly different base64 values were emitted which are not valid according to the standard. ref: https://github.com/web-auth/webauthn-framework/issues/510 Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de> | ||||
* | fix(encryption): Clicking default module in UI sets bogus value | Josh | 2024-04-01 | 1 | -3/+2 |
| | | | | | | | | Fixes #44532 Likely fixes #43123 Signed-off-by: Josh <josh.t.richards@gmail.com> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com> | ||||
* | feat(settings): Allow to sort groups in the account management alphabetically | Ferdinand Thiessen | 2024-03-27 | 4 | -21/+117 |
| | | | | | | | We can do this purly in the frontend - but when enforced from the backend using the existing system config, we need to follow the requirement. We then show a warning about the configuration. Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de> | ||||
* | feat(settings): Implement `app` type for AppDiscover section | Ferdinand Thiessen | 2024-03-19 | 3 | -12/+139 |
| | | | | Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de> | ||||
* | feat(settings): Implement `showcase` type for App Discover section | Ferdinand Thiessen | 2024-03-19 | 3 | -0/+144 |
| | | | | Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de> | ||||
* | fix(settings): Make App Discover PostType responsive based on available width | Ferdinand Thiessen | 2024-03-19 | 1 | -5/+21 |
| | | | | Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de> | ||||
* | fix(settings): Fit media into post type (app discover section) | Ferdinand Thiessen | 2024-03-19 | 1 | -2/+13 |
| | | | | Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de> | ||||
* | fix(settings): Show proper warning if app discover section could not be fetched | Ferdinand Thiessen | 2024-03-19 | 1 | -0/+5 |
| | | | | Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de> | ||||
* | fix(settings): Support `order` property on App Discover elements and hide ↵ | Ferdinand Thiessen | 2024-03-19 | 4 | -8/+133 |
| | | | | | | | | | future elements This adds support to pinning elements by setting the `order` property on the element (e.g. `order: 0` will always be the first element to show). Also filter list of elements to remove upcoming and outdated elements (as the json might be cached). Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de> | ||||
* | fix(settings): make apps list search result valid table | Grigorii K. Shartsev | 2024-03-19 | 1 | -8/+22 |
| | | | | Signed-off-by: Grigorii K. Shartsev <me@shgk.me> | ||||
* | fix(settings): app list scroll on Safari | Grigorii K. Shartsev | 2024-03-19 | 2 | -14/+48 |
| | | | | Signed-off-by: Grigorii K. Shartsev <me@shgk.me> | ||||
* | refactor(settings): move AppItem styles to AppItem component | Grigorii K. Shartsev | 2024-03-19 | 2 | -174/+135 |
| | | | | Signed-off-by: Grigorii K. Shartsev <me@shgk.me> | ||||
* | refactor(settings): use more BEM styles in apps settings | Grigorii K. Shartsev | 2024-03-19 | 2 | -97/+107 |
| | | | | Signed-off-by: Grigorii K. Shartsev <me@shgk.me> | ||||
* | refactor(settings): move apps list styles to components | Grigorii K. Shartsev | 2024-03-19 | 3 | -11/+244 |
| | | | | Signed-off-by: Grigorii K. Shartsev <me@shgk.me> | ||||
* | refactor(settings): remove unused styles from apps settings | Grigorii K. Shartsev | 2024-03-19 | 1 | -4/+2 |
| | | | | Signed-off-by: Grigorii K. Shartsev <me@shgk.me> | ||||
* | refactor(settings): remove unneeded classes from hidden header | Grigorii K. Shartsev | 2024-03-19 | 1 | -10/+10 |
| | | | | Signed-off-by: Grigorii K. Shartsev <me@shgk.me> | ||||
* | fix(settings): apps list layout on mobile | Grigorii K. Shartsev | 2024-03-19 | 2 | -3/+6 |
| | | | | Signed-off-by: Grigorii K. Shartsev <me@shgk.me> | ||||
* | fix(settings): use correct dynamic component load for apps/users | Grigorii K. Shartsev | 2024-03-19 | 1 | -8/+6 |
| | | | | Signed-off-by: Grigorii K. Shartsev <me@shgk.me> | ||||
* | fix(settings): App Store Discover carousel animations are inverted | Ferdinand Thiessen | 2024-03-18 | 1 | -3/+3 |
| | | | | Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de> | ||||
* | fix(settings): Open app details also on app discover section when requested | Ferdinand Thiessen | 2024-03-18 | 5 | -6/+11 |
| | | | | Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de> | ||||
* | feat(settings): Allow app discover links to open app routes or the appstore page | Ferdinand Thiessen | 2024-03-18 | 2 | -6/+125 |
| | | | | Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de> | ||||
* | fix(settings): Adjust appstore types as `releases` are not always set | Ferdinand Thiessen | 2024-03-18 | 2 | -2/+2 |
| | | | | Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de> | ||||
* | fix(settings): Add event search listener on mounted to guarantee function exists | Ferdinand Thiessen | 2024-03-18 | 2 | -414/+3 |
| | | | | Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de> | ||||
* | fix: more comprehensive wording for devices wipe action | Jérôme Herbinet | 2024-03-16 | 1 | -1/+1 |
| | | | | Signed-off-by: skjnldsv <skjnldsv@protonmail.com> | ||||
* | feat(files_sharing): allow to specify allowed groups to share instead of ↵ | Corentin Damman | 2024-03-15 | 1 | -10/+26 |
| | | | | | | | | excluded groups Relates to #3387 Signed-off-by: Corentin Damman <c.damman@intopix.com> | ||||
* | Merge pull request #44202 from nextcloud/fix/migrate-webdav-check-to-setupcheck | John Molakvoæ | 2024-03-15 | 1 | -3/+1 |
|\ | |||||
| * | fix: Migrate WebDAV endpoint check to SetupCheck API | Côme Chilliet | 2024-03-14 | 1 | -3/+1 |
| | | | | | | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com> | ||||
* | | feat(settings): Cache app discover images to ensure privacy of users | Ferdinand Thiessen | 2024-03-14 | 1 | -5/+14 |
| | | | | | | | | | | | | | | Co-authored-by: Benjamin Gaussorgues <benjamin.gaussorgues@nextcloud.com> Co-authored-by: Ferdinand Thiessen <opensource@fthiessen.de> Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de> | ||||
* | | feat(settings): Implement `carousel` type for app discover section | Ferdinand Thiessen | 2024-03-14 | 4 | -4/+222 |
| | | | | | | | | Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de> | ||||
* | | feat(settings): Implement `post` type for app discover section | Ferdinand Thiessen | 2024-03-14 | 6 | -34/+506 |
| | | | | | | | | Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de> | ||||
* | | feat(settings): Implement new app discover section for app management | Ferdinand Thiessen | 2024-03-14 | 6 | -19/+213 |
|/ | | | | Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de> | ||||
* | feat: Migrate HSTS check to Security headers SetupCheck | Côme Chilliet | 2024-03-13 | 1 | -3/+2 |
| | | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com> | ||||
* | feat: Add declarative settings | jld3103 | 2024-03-12 | 2 | -0/+318 |
| | | | | | | Signed-off-by: jld3103 <jld3103yt@gmail.com> Signed-off-by: Julien Veyssier <julien-nc@posteo.net> Signed-off-by: Andrey Borysenko <andrey18106x@gmail.com> | ||||
* | fix(settings): Save account management settings in local storage | Ferdinand Thiessen | 2024-03-11 | 2 | -34/+18 |
| | | | | Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de> | ||||
* | fix(settings): Always open the details tab for selected app | Ferdinand Thiessen | 2024-03-11 | 1 | -4/+10 |
| | | | | Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de> | ||||
* | feat(settings): Split account management into navigation and content | Ferdinand Thiessen | 2024-03-11 | 8 | -329/+352 |
| | | | | | | The should ease the maintenance of it due to reduced complexity. Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de> | ||||
* | feat(settings): Split account management and app store views into chunks | Ferdinand Thiessen | 2024-03-11 | 6 | -133/+258 |
| | | | | Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de> | ||||
* | feat(settings): Refactor appstore to use Pinia | Ferdinand Thiessen | 2024-03-11 | 1 | -0/+104 |
| | | | | Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de> | ||||
* | feat: Add composable to fetch app icon as SVG for inline use | Ferdinand Thiessen | 2024-03-11 | 1 | -0/+52 |
| | | | | Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de> | ||||
* | feat: Make appstore sidebar tabs standalone components | Ferdinand Thiessen | 2024-03-11 | 5 | -267/+635 |
| | | | | Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de> | ||||
* | fix: Get rid of PrefixMixin | Ferdinand Thiessen | 2024-03-11 | 2 | -35/+1 |
| | | | | Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de> | ||||
* | feat(settings): Split appstore code into better maintainable pieces | Ferdinand Thiessen | 2024-03-11 | 5 | -1/+351 |
| | | | | Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de> | ||||
* | feat(settings): Refactor routing code to use named router views | Ferdinand Thiessen | 2024-03-11 | 6 | -154/+122 |
| | | | | Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de> | ||||
* | fix: Remove deprecated parts from `AppLevelBadge` | Ferdinand Thiessen | 2024-03-07 | 1 | -7/+1 |
| | | | | Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de> | ||||
* | fix(settings): Remove migrated SetupCheck from legacy JS code | Ferdinand Thiessen | 2024-03-07 | 1 | -6/+2 |
| | | | | Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de> | ||||
* | fix(settings): users settings cypress | John Molakvoæ (skjnldsv) | 2024-03-07 | 1 | -3/+3 |
| | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | ||||
* | feat: Make the AppScorce component to use SVG icons | Ferdinand Thiessen | 2024-03-06 | 1 | -13/+61 |
| | | | | Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de> | ||||
* | fix(settings): Split group lists | Christopher Ng | 2024-03-06 | 1 | -29/+34 |
| | | | | Signed-off-by: Christopher Ng <chrng8@gmail.com> |