Ferdinand Thiessen
50309fe436
Merge pull request #44512 from nextcloud/feat/trashbin-orig-location
...
feat(trashbin): Show original location of deleted file
2024-03-29 17:54:04 +07:00
Nextcloud bot
a40838b61c
Fix(l10n): Update translations from Transifex
...
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-03-29 00:24:23 +07:00
Christopher Ng
6ed1b98264
fix(files): Fix error with numeric filenames
...
Signed-off-by: Christopher Ng <chrng8@gmail.com>
2024-03-28 11:22:58 +07:00
Christopher Ng
1ae78095c8
feat(trashbin): Show original location of deleted file
...
Signed-off-by: Christopher Ng <chrng8@gmail.com>
2024-03-28 11:00:22 +07:00
Thomas Citharel
79476682af
fix(dashboard): do not suggest to install new widgets if appstore is disabled
...
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
2024-03-28 15:49:34 +07:00
John Molakvoæ
e317ebdbad
Merge pull request #44526 from nextcloud/bugfix/43947/delete-file-not-translated
2024-03-28 15:28:49 +07:00
Joas Schilling
03090bb5ee
feat(branchoff): Bump versions and requirements in apps
...
Signed-off-by: Joas Schilling <coding@schilljs.com>
2024-03-28 11:26:18 +07:00
Joas Schilling
b08563df32
fix(security): Update expiration date in security.txt
...
Signed-off-by: Joas Schilling <coding@schilljs.com>
2024-03-28 11:20:58 +07:00
Joas Schilling
1dd6f25032
fix(files): Fix translation of "Delete file"
...
Signed-off-by: Joas Schilling <coding@schilljs.com>
2024-03-28 09:56:39 +07:00
Nextcloud bot
d9a750afa9
Fix(l10n): Update translations from Transifex
...
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-03-28 00:19:06 +07:00
Ferdinand Thiessen
5453c1d7fa
feat(settings): Allow to sort groups in the account management alphabetically
...
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>
2024-03-27 12:04:03 +07:00
Nextcloud bot
6d3b4b0f27
Fix(l10n): Update translations from Transifex
...
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-03-27 00:20:10 +07:00
F. E Noel Nfebe
7eb31de349
Merge pull request #44484 from nextcloud/44131-persist-initial-share-configs
...
fix(share): Send correct share attributes upon share creation
2024-03-27 00:56:56 +07:00
Benjamin Gaussorgues
5a6e6a10ab
Merge pull request #44457 from nextcloud/fix/contactsinteraction/download-vcard
2024-03-26 20:18:01 +07:00
Louis
72fbbc72a2
Merge pull request #44187 from nextcloud/artonge/feat/support_migrating_versions_across_storages
...
Add listener and interfaces to allow versions migration across storage
2024-03-26 18:51:58 +07:00
Ferdinand Thiessen
5100c7eb6a
Merge pull request #44483 from nextcloud/fix/setup-check-validate-trusted-proxies
...
fix(settings): Also verify that `trusted_proxies` only contains IP addresses (with range)
2024-03-26 18:38:45 +07:00
Louis Chemineau
369274c9ee
feat(files_versions): Add listener and interfaces to allow versions migration across storages
...
Signed-off-by: Louis Chemineau <louis@chmn.me>
2024-03-26 17:40:31 +07:00
fenn-cs
3a5475bd64
fix(share): Send correct share attributes upon share creation
...
- Send correct share attributes (`share.attributes`) to server upon creation.
- Delete parts of code that create or reference, `share.hasDownloadPermission`
(Not required by Share API)
Resolves : https://github.com/nextcloud/server/issues/44131
Signed-off-by: fenn-cs <fenn25.fn@gmail.com>
2024-03-26 16:36:22 +07:00
Eduardo Morales
7726b15561
fix(personal-files): correctly filters groupfolders now
...
Signed-off-by: Eduardo Morales <emoral435@gmail.com>
2024-03-26 10:10:45 +07:00
Ferdinand Thiessen
14addf3fdb
fix(settings): Also verify that `trusted_proxies` only contains IP addresses (with range)
...
Co-authored-by: Côme Chilliet <91878298+come-nc@users.noreply.github.com>
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
2024-03-26 14:50:57 +07:00
Christoph Wurst
b8250affb0
fix(contactsinteraction): Allow vCard download
...
Sabre calculates a header for the size of a vcard, therefore we have to
implement the size method.
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2024-03-26 14:41:15 +07:00
fenn-cs
d2b0848a29
fix(share): Send empty expireDate when not expireDate set
...
When creating a new share, if the user unchecks "Set expiry date"
no `expireDate` is sent to the server.
However, the server then assumes the default configured, hence better
to send an empty value.
Signed-off-by: fenn-cs <fenn25.fn@gmail.com>
2024-03-26 14:14:06 +07:00
John Molakvoæ
47ac907149
Merge pull request #44017 from rcwschaller/fix/caldav/eventcomparisionservice-uses-wrong-array-comparison
2024-03-26 09:05:59 +07:00
Nextcloud bot
992dd3977e
Fix(l10n): Update translations from Transifex
...
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-03-26 00:19:24 +07:00
Joas Schilling
dababa5138
fix(federation): Fix creating local cloudIds with http:// protocol
...
Signed-off-by: Joas Schilling <coding@schilljs.com>
2024-03-25 14:21:52 +07:00
Robert C. Schaller
fa6e6131ee
fix(dav): wrong comparison method between two events
...
Old comparison implementation compares each element of the array against each other with no respect for the associated array label, which leads to wrongful removals because one value is accidentally present in a completely different label. New comparison works 'by-label' individually.
Partly fixes #41084 because changes between 'SEQUENCE' not present, 'SEQUENCE:0' and 'SEQUENCE:1' were not detected in the old implementation and thus no email update sent.
Co-authored-by: Christoph Wurst <ChristophWurst@users.noreply.github.com>
Signed-off-by: Robert C. Schaller <gtbc_robert.schaller@rsxc.de>
2024-03-25 13:18:58 +07:00
Andy Scherzinger
46906b7d69
Merge pull request #32631 from nextcloud/feature/32629/getAccessList-share-by-email-recipients
...
Get access list share by email recipients
2024-03-25 12:40:10 +07:00
Nextcloud bot
31794adb26
Fix(l10n): Update translations from Transifex
...
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-03-25 00:19:59 +07:00
Nextcloud bot
608c82b88b
Fix(l10n): Update translations from Transifex
...
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-03-24 00:20:00 +07:00
Ferdinand Thiessen
fef9fb3bc0
fix(tests): Add mock for `window._oc_webroot`
...
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
2024-03-23 20:48:13 +07:00
Ferdinand Thiessen
b058af0e5b
Merge pull request #44417 from nextcloud/fix/files-suffix-folders
...
fix(files): Only add copy suffix before file extension for files (not folders)
2024-03-23 10:50:58 +07:00
Nextcloud bot
49cd667002
Fix(l10n): Update translations from Transifex
...
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-03-23 00:19:20 +07:00
John Molakvoæ
fb97d551a1
Merge pull request #44357 from nextcloud/wrapper-instanceof-resiliant
2024-03-22 20:43:34 +07:00
Louis
ddb84f9738
Merge pull request #44362 from nextcloud/artonge/feat/check_permissions_of_all_nodes_for_versions
...
Check permissions of all accessible file for versions
2024-03-22 20:35:11 +07:00
Ferdinand Thiessen
b0b2811211
fix(files): When copying nodes only add the copy suffix for file before file extension
...
Co-authored-by: Pytal <24800714+Pytal@users.noreply.github.com>
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
2024-03-22 19:13:48 +07:00
Ferdinand Thiessen
b9caf24228
fix(files): Do not escape file names for filepicker buttons
...
The text is already escaped by Vue, so we should not escape or sanitize the filename.
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
2024-03-22 14:20:17 +07:00
Nextcloud bot
4121b841de
Fix(l10n): Update translations from Transifex
...
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-03-22 00:19:14 +07:00
Adam Serbinski
f45eb75e3d
ShareByMailProvider: getAccessList: set correct value for 'public'
...
PDOStatement::rowCount behavior is undefined for SELECT statements
for some database types, therefore manually set the value for 'public'
based on actual results fetched.
Signed-off-by: Adam Serbinski <adam@serbinski.com>
2024-03-21 18:25:31 +07:00
Adam Serbinski
01e32340af
ShareByMailProvider: getAccessList: set both array keys 'public' and 'mail'
...
To preserve prior behaviour where 'public' was set 'true' if there
are any mail recipients. The 'mail' key will be an array of email
recipients.
Signed-off-by: Adam Serbinski <adam@serbinski.com>
2024-03-21 18:25:31 +07:00
Adam Serbinski
34ca6bd46a
ShareByMailProvider: getAccessList: recommended style changes
...
Signed-off-by: Adam Serbinski <adam@serbinski.com>
2024-03-21 18:25:31 +07:00
Adam Serbinski
9c528d412c
ShareByMailProvider: getAccessList: add token to returned array
...
This allows the share URI to be regenerated.
Signed-off-by: Adam Serbinski <adam@serbinski.com>
2024-03-21 18:25:31 +07:00
Adam Serbinski
26ae5e6dfb
ShareByMailProvider: getAccessList: return full list of recipients
...
Previously was returning only boolean true if the Node was shared
by email, or false if not. Now provides an array containing the
list of email share recipients.
Signed-off-by: Adam Serbinski <adam@serbinski.com>
2024-03-21 18:25:31 +07:00
John Molakvoæ
e17b94cf2b
Merge pull request #44075 from nextcloud/fix/dav/sync-token-retention-time
2024-03-21 20:21:57 +07:00
Pytal
45efd28db7
Merge pull request #44368 from nextcloud/feat/new-file-menu-icon-svg
...
feat: Add new mdi New file menu icons
2024-03-21 10:45:50 +07:00
Christoph Wurst
3dea99f42b
fix(dav): Add retention time to sync token cleanup
...
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2024-03-21 18:37:21 +07:00
Andy Scherzinger
a7dfec070a
Merge pull request #44381 from nextcloud/fix/workflows-engine-groups
...
fix(workflowengine): Use correct event names to make search for groups work again
2024-03-21 15:10:43 +07:00
Louis Chemineau
a15c0d6515
Merge pull request #44297 from nextcloud/fix/forbid-tagging-readonly-files
...
Forbid tagging readonly files
Signed-off-by: Louis Chemineau <louis@chmn.me>
2024-03-21 15:10:30 +07:00
Anna
bdd4ac2c17
Merge pull request #44360 from nextcloud/fix/add-exdate-exrule-to-confidential-object
...
fix(caldav): add EXDATE and EXRULE to confidential object
2024-03-21 14:34:08 +07:00
Hamza
007b54afed
Merge pull request #44376 from nextcloud/fix/dav/acls-shared-addressbook
...
fix(dav): ACLs for shared addressbooks
2024-03-21 14:33:43 +07:00
Louis
8c3f9a1bb3
Merge pull request #44363 from nextcloud/artonge/debt/rename_author_hook
...
Rename MetadataFileEvents to VersionAuthorListener
2024-03-21 14:27:47 +07:00