Skip to content

Commit f68f7b5

Browse files
Merge branch 'main' into main
2 parents 8a9751a + dd4da2d commit f68f7b5

11 files changed

Lines changed: 445 additions & 196 deletions

File tree

.github/workflows/appstore-build-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ jobs:
173173
tar -zcvf ${{ env.APP_NAME }}.tar.gz ${{ env.APP_NAME }}
174174
175175
- name: Attach tarball to github release
176-
uses: svenstaro/upload-release-action@04733e069f2d7f7f0b4aebc4fbdbce8613b03ccd # v2
176+
uses: svenstaro/upload-release-action@81c65b7cd4de9b2570615ce3aad67a41de5b1a13 # v2
177177
id: attach_to_release
178178
with:
179179
repo_token: ${{ secrets.GITHUB_TOKEN }}

composer.lock

Lines changed: 15 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cypress/e2e/cardFeatures.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -302,6 +302,9 @@ describe('Card', function () {
302302
.first().click()
303303
cy.get(`.card:contains("${newCardTitle}")`).should('be.visible').click()
304304

305+
// Add delay to ensure the events are bound
306+
cy.wait(1000)
307+
305308
cy.get('#app-sidebar-vue [data-test="tag-selector"] .vs__dropdown-toggle').should('be.visible').click()
306309
cy.get('.vs__dropdown-menu .tag:contains("Action needed")').should('be.visible').click()
307310
cy.get('.vs__dropdown-menu .tag:contains("Later")').should('be.visible').click()

cypress/support/commands.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,11 @@ Cypress.Commands.add('shareBoardWithUi', (query, userId=query) => {
102102
cy.intercept({ method: 'GET', url: `**/ocs/v2.php/apps/files_sharing/api/v1/sharees?search=${query}*` }).as('fetchRecipients')
103103
cy.get('[aria-label="Open details"]').click()
104104
cy.get('.app-sidebar').should('be.visible')
105-
cy.get('.select input').type(`${query}`)
105+
106+
// Add delay to ensure the events are bound
107+
cy.wait(1000)
108+
109+
cy.get('.select input').click().type(`${query}`)
106110
cy.wait('@fetchRecipients', { timeout: 7000 })
107111

108112
cy.get('.vs__dropdown-menu .option').first().contains(query)

l10n/pl.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -312,6 +312,7 @@ OC.L10N.register(
312312
"Clone cards" : "Klonuj karty",
313313
"Advanced options" : "Opcje zaawansowane",
314314
"Clone" : "Klonuj",
315+
"Export {boardTitle}" : "Eksportuj {boardTitle}",
315316
"Export" : "Eksportuj",
316317
"Loading filtered view" : "Wczytywanie przefiltrowanego widoku",
317318
"Today" : "Dzisiaj",

l10n/pl.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -310,6 +310,7 @@
310310
"Clone cards" : "Klonuj karty",
311311
"Advanced options" : "Opcje zaawansowane",
312312
"Clone" : "Klonuj",
313+
"Export {boardTitle}" : "Eksportuj {boardTitle}",
313314
"Export" : "Eksportuj",
314315
"Loading filtered view" : "Wczytywanie przefiltrowanego widoku",
315316
"Today" : "Dzisiaj",

0 commit comments

Comments
 (0)