Luka Trovic
c9bacabd4c
fix: redirect to cleaner URL if RewriteBase is enabled
...
Signed-off-by: Luka Trovic <luka@nextcloud.com >
2025-09-24 19:15:49 +02:00
Nextcloud bot
4abf895d22
fix(l10n): Update translations from Transifex
...
Signed-off-by: Nextcloud bot <bot@nextcloud.com >
2025-09-24 00:31:53 +00:00
Nextcloud bot
d216e56dac
fix(l10n): Update translations from Transifex
...
Signed-off-by: Nextcloud bot <bot@nextcloud.com >
2025-09-23 00:31:50 +00:00
Luka Trovic
15514162f3
Merge pull request #7256 from nextcloud/bump-nextcloud-vue-8.31.0
...
Chore(deps): Bump @nextcloud/vue from 8.27.0 to 8.31.0
2025-09-22 21:34:25 +02:00
Luka Trovic
b3bb29157c
Chore(deps): Bump @nextcloud/vue from 8.27.0 to 8.31.0
...
Signed-off-by: Luka Trovic <luka@nextcloud.com >
2025-09-22 20:45:52 +02:00
Nextcloud bot
12b656dd8c
fix(l10n): Update translations from Transifex
...
Signed-off-by: Nextcloud bot <bot@nextcloud.com >
2025-09-22 00:31:30 +00:00
github-actions[bot]
661eea3018
Merge pull request #7250 from nextcloud/automated/noid/main-update-nextcloud-ocp
...
[main] Update nextcloud/ocp dependency
2025-09-21 03:31:25 +00:00
nextcloud-command
ecd3cb42de
chore(dev-deps): Bump nextcloud/ocp package
...
Signed-off-by: GitHub <noreply@github.com >
2025-09-21 02:40:50 +00:00
github-actions[bot]
f49c8f6ee4
Merge pull request #7231 from nextcloud/automated/noid/main-update-nextcloud-ocp
...
[main] Update nextcloud/ocp dependency
2025-09-19 17:09:19 +00:00
nextcloud-command
96b56a2447
chore(dev-deps): Bump nextcloud/ocp package
...
Signed-off-by: GitHub <noreply@github.com >
2025-09-19 19:03:21 +02:00
Nextcloud bot
26badb58dd
fix(l10n): Update translations from Transifex
...
Signed-off-by: Nextcloud bot <bot@nextcloud.com >
2025-09-19 00:32:01 +00:00
Nextcloud bot
04d9433bdd
fix(l10n): Update translations from Transifex
...
Signed-off-by: Nextcloud bot <bot@nextcloud.com >
2025-09-18 00:31:43 +00:00
Nextcloud bot
a69eb654fd
fix(l10n): Update translations from Transifex
...
Signed-off-by: Nextcloud bot <bot@nextcloud.com >
2025-09-17 00:31:43 +00:00
Elizabeth Danzberger
ab5ccb7bc1
Merge pull request #7238 from nextcloud/bugfix/noid/activity-icons
...
fix(darkmode): Fix activity icon colors
2025-09-16 14:57:18 -04:00
Luka Trovic
f054cc2fbd
Merge pull request #7225 from ABartelt/fix/mysql-error-1093-user-deletion
...
fix: resolve MySQL Error 1093 when deleting users from boards
2025-09-16 20:43:16 +02:00
Luka Trovic
1afc5cdbcc
Merge pull request #7237 from nextcloud/bugfix/7207/fix-colors
...
fix: Fix colors from due dates and done
2025-09-16 20:16:18 +02:00
Joas Schilling
1a6e5929b2
fix(darkmode): Fix activity icon colors
...
Signed-off-by: Joas Schilling <coding@schilljs.com >
2025-09-16 15:17:54 +02:00
Joas Schilling
74a3ab5008
fix: Fix colors from due dates and done
...
Signed-off-by: Joas Schilling <coding@schilljs.com >
2025-09-16 14:42:54 +02:00
Luka Trovic
0ebd05e649
Merge pull request #7210 from nextcloud/style/noid/deleteMaterialSymbolOutline
...
Migrate delete icon to Material Symbol outline variant
2025-09-16 13:43:08 +02:00
Luka Trovic
3611c8f8ac
Merge pull request #7159 from Somebodyisnobody/patch-1
...
Docs: Updating docs for API endpoints for uploading attachments
2025-09-16 10:31:31 +02:00
Luka Trovic
da3b857ab0
Merge pull request #7165 from nextcloud/get-cards-at-once
...
perf(cards): fetch all cards at once
2025-09-16 10:31:00 +02:00
Nextcloud bot
199b698cb7
fix(l10n): Update translations from Transifex
...
Signed-off-by: Nextcloud bot <bot@nextcloud.com >
2025-09-16 00:31:49 +00:00
Nextcloud bot
fb1132652a
fix(l10n): Update translations from Transifex
...
Signed-off-by: Nextcloud bot <bot@nextcloud.com >
2025-09-15 00:31:00 +00:00
Nextcloud bot
f78c3d42df
fix(l10n): Update translations from Transifex
...
Signed-off-by: Nextcloud bot <bot@nextcloud.com >
2025-09-14 00:30:54 +00:00
Nextcloud bot
4a879ab1fb
fix(l10n): Update translations from Transifex
...
Signed-off-by: Nextcloud bot <bot@nextcloud.com >
2025-09-13 00:31:23 +00:00
Nextcloud bot
b4e9dd39cc
fix(l10n): Update translations from Transifex
...
Signed-off-by: Nextcloud bot <bot@nextcloud.com >
2025-09-12 00:31:48 +00:00
Nextcloud bot
9035a23af8
fix(l10n): Update translations from Transifex
...
Signed-off-by: Nextcloud bot <bot@nextcloud.com >
2025-09-11 00:31:52 +00:00
Arne Bartelt
bffa4d0925
fix: resolve MySQL Error 1093 when deleting users from boards
...
Fixes #7125 and #7069 by implementing a two-step deletion process
that avoids MySQL's restriction on deleting from a table while
selecting from it in a subquery.
The fix separates the SELECT and DELETE operations:
1. First query: Get card IDs for assignments to delete
2. Second query: Delete assignments using the collected IDs
This approach works on all supported database systems (MySQL 5.7+,
MySQL 8.0+, MariaDB 10.x+) and follows MySQL's official best practices
for handling Error 1093: 'You can't specify target table for update in FROM clause'.
The issue occurred because the original deleteByParticipantOnBoard method
used a subquery that referenced the same table being deleted from,
which MySQL prohibits but MariaDB allows (explaining why it worked
in development but failed in production).
Signed-off-by: Arne Bartelt <arne.bartelt@gmail.com >
Signed-off-by: Arne Bartelt <Arne.Bartelt@gmail.com >
2025-09-10 16:39:51 +02:00
Luka Trovic
516294ee23
Merge pull request #6640 from ludij/feature/3331-dynamic-column-width
...
Feature/3331 dynamic column width
2025-09-10 09:50:07 +02:00
Luutzen Dijkstra
5a39996357
feature(3331): aligned stack children spacing and fixed linting issues
...
Signed-off-by: Luutzen Dijkstra <luutzen.dijkstra@gmail.com >
2025-09-10 09:44:36 +02:00
Luutzen Dijkstra
569a0961fd
feature(3331): card image refactor
...
Signed-off-by: Luutzen Dijkstra <luutzen.dijkstra@gmail.com >
2025-09-10 09:44:36 +02:00
Luutzen Dijkstra
376f46b7ba
feature(3331): scroll column instead of page for board and overview
...
Signed-off-by: Luutzen Dijkstra <luutzen.dijkstra@gmail.com >
2025-09-10 09:44:36 +02:00
Luutzen Dijkstra
447dc60f37
feature(3331): removed duplicate flex-grow property from GlobalSearchResults
...
Signed-off-by: Luutzen Dijkstra <luutzen.dijkstra@gmail.com >
2025-09-10 09:44:36 +02:00
Luutzen Dijkstra
480af39d56
feature(3331): specify phrasing for search results depending on view
...
Signed-off-by: Luutzen Dijkstra <luutzen.dijkstra@gmail.com >
2025-09-10 09:44:36 +02:00
Luutzen Dijkstra
7d18f3a48b
feature(3331): improve accessibility attributes for overview column titles
...
Signed-off-by: Luutzen Dijkstra <luutzen.dijkstra@gmail.com >
2025-09-10 09:44:36 +02:00
Luutzen Dijkstra
51f5b8f023
fix(3331): bind title attribute on h3 in stack
...
Signed-off-by: Luutzen Dijkstra <luutzen.dijkstra@gmail.com >
2025-09-10 09:44:36 +02:00
Luutzen Dijkstra
1e68e1ff03
feature(3331): use existingIndex to define existingCard
...
Signed-off-by: Luutzen Dijkstra <luutzen.dijkstra@gmail.com >
2025-09-10 09:44:36 +02:00
Luutzen Dijkstra
a13619690e
fix(3331): fixed border around add list form in boards
...
Signed-off-by: Luutzen Dijkstra <luutzen.dijkstra@gmail.com >
2025-09-10 09:44:36 +02:00
Luutzen Dijkstra
3115363c28
feature(3331): made board, overview, stack and search result cards width behave more dynamic
...
Signed-off-by: Luutzen Dijkstra <luutzen.dijkstra@gmail.com >
2025-09-10 09:44:36 +02:00
rakekniven
6ace1867e1
Merge pull request #7222 from nextcloud/fix/4466/refproviders-translator-comments
2025-09-09 14:02:53 +02:00
Julien Veyssier
af4a610a25
feat(reference): add translators comments in reference providers
...
Signed-off-by: Julien Veyssier <julien-nc@posteo.net >
2025-09-09 12:57:14 +02:00
Nextcloud bot
d40661a985
fix(l10n): Update translations from Transifex
...
Signed-off-by: Nextcloud bot <bot@nextcloud.com >
2025-09-09 00:33:39 +00:00
Nextcloud bot
0a14a0dfd8
fix(l10n): Update translations from Transifex
...
Signed-off-by: Nextcloud bot <bot@nextcloud.com >
2025-09-08 00:32:13 +00:00
github-actions[bot]
72d3cfa771
Merge pull request #7215 from nextcloud/automated/noid/main-update-nextcloud-ocp
...
[main] Update nextcloud/ocp dependency
2025-09-07 03:02:50 +00:00
nextcloud-command
411c0d9d46
chore(dev-deps): Bump nextcloud/ocp package
...
Signed-off-by: GitHub <noreply@github.com >
2025-09-07 02:39:28 +00:00
Nextcloud bot
ec33c26fe4
fix(l10n): Update translations from Transifex
...
Signed-off-by: Nextcloud bot <bot@nextcloud.com >
2025-09-07 00:33:30 +00:00
Nextcloud bot
8fcb4a47ae
fix(l10n): Update translations from Transifex
...
Signed-off-by: Nextcloud bot <bot@nextcloud.com >
2025-09-06 00:31:26 +00:00
Andy Scherzinger
44d244f9aa
style(icon): Migrate delete icon to Material Symbol outline variant
...
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de >
2025-09-05 18:26:28 +02:00
Nextcloud bot
3ed1fbcc40
fix(l10n): Update translations from Transifex
...
Signed-off-by: Nextcloud bot <bot@nextcloud.com >
2025-09-05 00:32:02 +00:00
Luka Trovic
7394cb2d48
Merge pull request #7204 from nextcloud/update-main-version
...
feat(deps): Add Nextcloud 33 support on main
2025-09-04 21:24:36 +02:00