Compare commits

...

6 Commits

Author SHA1 Message Date
julia.kirschenheuter
68b9e0fb40 fix(files): fix appstore-build-publish.yml
Signed-off-by: julia.kirschenheuter <julia.kirschenheuter@nextcloud.com>
2024-07-26 19:11:08 +02:00
Julius Härtl
f21282c5d6 Merge pull request #6141 from nextcloud/release/1.14.0-beta.1
chore: bump `1.14.0-dev` to version `1.14.0-beta.1`
2024-07-26 18:09:44 +02:00
julia.kirschenheuter
a145cccf34 chore: bump 1.14.0-dev to version 1.14.0-beta.1
Signed-off-by: julia.kirschenheuter <julia.kirschenheuter@nextcloud.com>
2024-07-26 17:54:01 +02:00
Nextcloud bot
9a87f287e3 Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-07-26 00:36:20 +00:00
Nextcloud bot
3dd70f2f8b Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-07-25 00:36:53 +00:00
Nextcloud bot
973d13023b Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-07-24 00:37:40 +00:00
11 changed files with 176 additions and 148 deletions

View File

@@ -56,14 +56,14 @@ jobs:
- name: Set up node ${{ steps.versions.outputs.nodeVersion }} - name: Set up node ${{ steps.versions.outputs.nodeVersion }}
# Skip if no package.json # Skip if no package.json
if: ${{ steps.versions.outputs.nodeVersion }} if: ${{ steps.versions.outputs.nodeVersion }}
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v3 uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3
with: with:
node-version: ${{ steps.versions.outputs.nodeVersion }} node-version: ${{ steps.versions.outputs.nodeVersion }}
- name: Set up npm ${{ steps.versions.outputs.npmVersion }} - name: Set up npm ${{ steps.versions.outputs.npmVersion }}
# Skip if no package.json # Skip if no package.json
if: ${{ steps.versions.outputs.npmVersion }} if: ${{ steps.versions.outputs.npmVersion }}
run: npm i -g npm@"${{ steps.versions.outputs.npmVersion }}" run: npm i -g 'npm@${{ steps.versions.outputs.npmVersion }}'
- name: Get php version - name: Get php version
id: php-versions id: php-versions
@@ -72,7 +72,7 @@ jobs:
filename: ${{ env.APP_NAME }}/appinfo/info.xml filename: ${{ env.APP_NAME }}/appinfo/info.xml
- name: Set up php ${{ steps.php-versions.outputs.php-min }} - name: Set up php ${{ steps.php-versions.outputs.php-min }}
uses: shivammathur/setup-php@c541c155eee45413f5b09a52248675b1a2575231 # v2 uses: shivammathur/setup-php@c541c155eee45413f5b09a52248675b1a2575231 # v2.31.1
with: with:
php-version: ${{ steps.php-versions.outputs.php-min }} php-version: ${{ steps.php-versions.outputs.php-min }}
coverage: none coverage: none
@@ -95,7 +95,7 @@ jobs:
# Skip if no package.json # Skip if no package.json
if: ${{ steps.versions.outputs.nodeVersion }} if: ${{ steps.versions.outputs.nodeVersion }}
env: env:
NODE_ENV: production CYPRESS_INSTALL_BINARY: 0
run: | run: |
cd ${{ env.APP_NAME }} cd ${{ env.APP_NAME }}
npm ci npm ci
@@ -129,7 +129,7 @@ jobs:
continue-on-error: true continue-on-error: true
id: server-checkout id: server-checkout
run: | run: |
NCVERSION=${{ fromJSON(steps.appinfo.outputs.result).nextcloud.min-version }} NCVERSION='${{ fromJSON(steps.appinfo.outputs.result).nextcloud.min-version }}'
wget --quiet https://download.nextcloud.com/server/releases/latest-$NCVERSION.zip wget --quiet https://download.nextcloud.com/server/releases/latest-$NCVERSION.zip
unzip latest-$NCVERSION.zip unzip latest-$NCVERSION.zip
@@ -148,7 +148,7 @@ jobs:
tar -xvf ${{ env.APP_NAME }}.tar.gz tar -xvf ${{ env.APP_NAME }}.tar.gz
cd ../../../ cd ../../../
# Setting up keys # Setting up keys
echo "${{ secrets.APP_PRIVATE_KEY }}" > ${{ env.APP_NAME }}.key echo '${{ secrets.APP_PRIVATE_KEY }}' > ${{ env.APP_NAME }}.key
wget --quiet "https://github.com/nextcloud/app-certificate-requests/raw/master/${{ env.APP_NAME }}/${{ env.APP_NAME }}.crt" wget --quiet "https://github.com/nextcloud/app-certificate-requests/raw/master/${{ env.APP_NAME }}/${{ env.APP_NAME }}.crt"
# Signing # Signing
php nextcloud/occ integrity:sign-app --privateKey=../${{ env.APP_NAME }}.key --certificate=../${{ env.APP_NAME }}.crt --path=../${{ env.APP_NAME }}/build/artifacts/${{ env.APP_NAME }} php nextcloud/occ integrity:sign-app --privateKey=../${{ env.APP_NAME }}.key --certificate=../${{ env.APP_NAME }}.crt --path=../${{ env.APP_NAME }}/build/artifacts/${{ env.APP_NAME }}

View File

@@ -5,6 +5,32 @@
# Changelog # Changelog
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
## 1.14.0-beta.1
### Fixed
- fix: card details focus issue with screen reader @luka-nextcloud [#5858](https://github.com/nextcloud/deck/pull/5858)
- Cleaning up unused indicies @mintsoft [#5612](https://github.com/nextcloud/deck/pull/5612)
- Change import command's config default argument @JimMadge [#5722](https://github.com/nextcloud/deck/pull/5722)
- don't reset update time when no update was written to db @grnd-alt [#6005](https://github.com/nextcloud/deck/pull/6005)
- docs: Fix symlink to readme @juliushaertl [#6033](https://github.com/nextcloud/deck/pull/6033)
- perf: Avoid fetching labels and owner details on permission check @juliushaertl [#6010](https://github.com/nextcloud/deck/pull/6010)
- Only check path for being accessible when the storage is a object home @mejo- [#6062](https://github.com/nextcloud/deck/pull/6062)
- Fix: incorrect height of editing windows and edit bar @pschopen [#6088](https://github.com/nextcloud/deck/pull/6088)
- fix: design review issues @luka-nextcloud [#6113](https://github.com/nextcloud/deck/pull/6113)
- fix: remove redundant log @luka-nextcloud [#6115](https://github.com/nextcloud/deck/pull/6115)
- fix: Adjust dependencies to fix filepicker @susnux [#5964](https://github.com/nextcloud/deck/pull/5964)
- fix: Remove bindParam usage with simpler query @juliushaertl [#6065](https://github.com/nextcloud/deck/pull/6065)
### Other
- Adds link to Nextcloud Deck for iOS in README.md file @StCyr [#5886](https://github.com/nextcloud/deck/pull/5886)
- choir(i18n): Change filter title @rakekniven [#5957](https://github.com/nextcloud/deck/pull/5957)
- chore: Clean up permission service @juliushaertl [#6011](https://github.com/nextcloud/deck/pull/6011)
- Update User_documentation_en.md @StCyr [#6029](https://github.com/nextcloud/deck/pull/6029)
- chore: Move comments event handler to use proper event dispatcher @juliushaertl [#6008](https://github.com/nextcloud/deck/pull/6008)
- Migrate REUSE to TOML format @AndyScherzinger [#6084](https://github.com/nextcloud/deck/pull/6084)
## 1.13.0-beta.1 ## 1.13.0-beta.1
### Added ### Added

View File

@@ -20,7 +20,7 @@
- 🚀 Get your project organized - 🚀 Get your project organized
</description> </description>
<version>1.14.0-dev</version> <version>1.14.0-beta.1</version>
<licence>agpl</licence> <licence>agpl</licence>
<author>Julius Härtl</author> <author>Julius Härtl</author>
<documentation> <documentation>

View File

@@ -251,6 +251,7 @@ OC.L10N.register(
"Remove due date" : "Suprimeix la data de caducitat", "Remove due date" : "Suprimeix la data de caducitat",
"Mark as done" : "Marcat com a fet", "Mark as done" : "Marcat com a fet",
"Due at:" : "Venciment a:", "Due at:" : "Venciment a:",
"Not done" : "No s'ha fet",
"Unarchive card" : "Desarxiva targeta", "Unarchive card" : "Desarxiva targeta",
"Archive card" : "Arxiva la targeta", "Archive card" : "Arxiva la targeta",
"Select Date" : "Selecciona la data", "Select Date" : "Selecciona la data",

View File

@@ -249,6 +249,7 @@
"Remove due date" : "Suprimeix la data de caducitat", "Remove due date" : "Suprimeix la data de caducitat",
"Mark as done" : "Marcat com a fet", "Mark as done" : "Marcat com a fet",
"Due at:" : "Venciment a:", "Due at:" : "Venciment a:",
"Not done" : "No s'ha fet",
"Unarchive card" : "Desarxiva targeta", "Unarchive card" : "Desarxiva targeta",
"Archive card" : "Arxiva la targeta", "Archive card" : "Arxiva la targeta",
"Select Date" : "Selecciona la data", "Select Date" : "Selecciona la data",

View File

@@ -186,7 +186,7 @@ OC.L10N.register(
"Board owner" : "보드 소유자", "Board owner" : "보드 소유자",
"(Group)" : "(그룹)", "(Group)" : "(그룹)",
"(Team)" : "(팀)", "(Team)" : "(팀)",
"Can edit" : "수정할 수 있음", "Can edit" : "편집 허용",
"Can share" : "공유할 수 있음", "Can share" : "공유할 수 있음",
"Can manage" : "관리 가능", "Can manage" : "관리 가능",
"Owner" : "소유자", "Owner" : "소유자",

View File

@@ -184,7 +184,7 @@
"Board owner" : "보드 소유자", "Board owner" : "보드 소유자",
"(Group)" : "(그룹)", "(Group)" : "(그룹)",
"(Team)" : "(팀)", "(Team)" : "(팀)",
"Can edit" : "수정할 수 있음", "Can edit" : "편집 허용",
"Can share" : "공유할 수 있음", "Can share" : "공유할 수 있음",
"Can manage" : "관리 가능", "Can manage" : "관리 가능",
"Owner" : "소유자", "Owner" : "소유자",

View File

@@ -150,7 +150,7 @@ OC.L10N.register(
"Filter by assigned user" : "Отбор по назначению:", "Filter by assigned user" : "Отбор по назначению:",
"Unassigned" : "Без назначения", "Unassigned" : "Без назначения",
"Filter by status" : "Отбор по состоянию:", "Filter by status" : "Отбор по состоянию:",
"Open and completed" : "Открытые и завершённые", "Open and completed" : "Открытые или завершённые",
"Open" : "Открытые", "Open" : "Открытые",
"Completed" : "Завершённые", "Completed" : "Завершённые",
"Filter by due date" : "Отбор по сроку исполнения:", "Filter by due date" : "Отбор по сроку исполнения:",

View File

@@ -148,7 +148,7 @@
"Filter by assigned user" : "Отбор по назначению:", "Filter by assigned user" : "Отбор по назначению:",
"Unassigned" : "Без назначения", "Unassigned" : "Без назначения",
"Filter by status" : "Отбор по состоянию:", "Filter by status" : "Отбор по состоянию:",
"Open and completed" : "Открытые и завершённые", "Open and completed" : "Открытые или завершённые",
"Open" : "Открытые", "Open" : "Открытые",
"Completed" : "Завершённые", "Completed" : "Завершённые",
"Filter by due date" : "Отбор по сроку исполнения:", "Filter by due date" : "Отбор по сроку исполнения:",

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{ {
"name": "deck", "name": "deck",
"version": "1.14.0-dev", "version": "1.14.0-beta.1",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "deck", "name": "deck",
"version": "1.14.0-dev", "version": "1.14.0-beta.1",
"license": "agpl", "license": "agpl",
"dependencies": { "dependencies": {
"@babel/polyfill": "^7.12.1", "@babel/polyfill": "^7.12.1",

View File

@@ -1,7 +1,7 @@
{ {
"name": "deck", "name": "deck",
"description": "", "description": "",
"version": "1.14.0-dev", "version": "1.14.0-beta.1",
"authors": [ "authors": [
{ {
"name": "Julius Härtl", "name": "Julius Härtl",