Skip to content
This repository was archived by the owner on Oct 13, 2025. It is now read-only.

Commit 7f1d501

Browse files
authored
0.3.9 ui minor fixes and packages update (#241)
* 0.3.9 ui minor fixes and packages update Signed-off-by: Andrey Borysenko <[email protected]> * update lint workflow --------- Signed-off-by: Andrey Borysenko <[email protected]>
1 parent 68798a9 commit 7f1d501

File tree

13 files changed

+6588
-8735
lines changed

13 files changed

+6588
-8735
lines changed

.github/workflows/lint.yml

Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -21,31 +21,30 @@ env:
2121

2222
jobs:
2323
xml-lint:
24-
runs-on: ubuntu-latest
24+
runs-on: ubuntu-22.04
2525
name: info.xml lint
2626

2727
steps:
2828
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
29+
2930
- name: Download xml appinfo schema
3031
run: wget https://raw.githubusercontent.com/nextcloud/appstore/master/nextcloudappstore/api/v1/release/info.xsd
3132

3233
- name: Lint appinfo/info.xml
33-
uses: ChristophWurst/xmllint-action@v1
34+
uses: ChristophWurst/xmllint-action@v1.1
3435
with:
3536
xml-file: ./appinfo/info.xml
3637
xml-schema-file: ./info.xsd
3738

3839
php-lint:
39-
runs-on: ubuntu-latest
40+
runs-on: ubuntu-22.04
41+
name: php-lint
4042
strategy:
4143
matrix:
42-
php-versions: ["7.4", "8.0", "8.1"]
43-
44-
name: php-lint
44+
php-versions: ["8.0", "8.1"]
4545

4646
steps:
47-
- name: Checkout
48-
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
47+
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
4948

5049
- name: Set up php ${{ matrix.php-versions }}
5150
uses: shivammathur/setup-php@v2
@@ -57,17 +56,19 @@ jobs:
5756
run: composer run lint
5857

5958
php-cs:
60-
runs-on: ubuntu-latest
59+
runs-on: ubuntu-22.04
6160
name: php-cs
61+
strategy:
62+
matrix:
63+
php-versions: ["8.0", "8.1"]
6264

6365
steps:
64-
- name: Checkout
65-
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
66+
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
6667

6768
- name: Set up php ${{ matrix.php-versions }}
6869
uses: shivammathur/setup-php@v2
6970
with:
70-
php-version: 7.4
71+
php-version: ${{ maxtrix.php-versions }}
7172
coverage: none
7273

7374
- name: Install dependencies
@@ -77,7 +78,7 @@ jobs:
7778
run: composer run cs:check || ( echo 'Please run `composer run cs:fix` to format your code' && exit 1 )
7879

7980
php-psalm-analysis:
80-
runs-on: ubuntu-latest
81+
runs-on: ubuntu-22.04
8182
strategy:
8283
matrix:
8384
php-versions: ["7.4", "8.0", "8.1"]
@@ -116,7 +117,7 @@ jobs:
116117
- name: Set up php ${{ matrix.php-versions }}
117118
uses: shivammathur/setup-php@v2
118119
with:
119-
php-version: 7.4
120+
php-version: ${{ matrix.php-versions }}
120121
coverage: none
121122

122123
- name: Install dependencies
@@ -148,7 +149,7 @@ jobs:
148149
# sarif_file: results.sarif
149150

150151
js-eslint:
151-
runs-on: ubuntu-latest
152+
runs-on: ubuntu-22.04
152153
name: eslint
153154

154155
steps:
@@ -160,7 +161,7 @@ jobs:
160161
run: npm run lint
161162

162163
stylelint:
163-
runs-on: ubuntu-latest
164+
runs-on: ubuntu-22.04
164165

165166
name: stylelint
166167

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,21 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [0.3.9 - 2024-06-23]
6+
7+
Maintenance update.
8+
9+
### Fixed
10+
11+
- Fixed taskName is not set for new tasks
12+
- Fixed filePicker dialog
13+
- Other minor UI fixes after packages update
14+
15+
### Updated
16+
17+
- Updated packages (security fixes)
18+
- Updated l10n (localization)
19+
520
## [0.3.8 - 2023-12-14]
621

722
Maintenance update.

appinfo/info.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ This app allows to find duplicate or similar 📸📹 photos and videos
2020
Quick start guide and further information in our [Wiki](https://github.com/cloud-py-api/mediadc/wiki).
2121
]]>
2222
</description>
23-
<version>0.3.8</version>
23+
<version>0.3.9</version>
2424
<licence>agpl</licence>
2525
<author mail="[email protected]" homepage="https://github.com/andrey18106">Andrey Borysenko</author>
2626
<author mail="[email protected]" homepage="https://github.com/bigcat88">Alexander Piskun</author>

0 commit comments

Comments
 (0)