Skip to content

Commit 4e94dc5

Browse files
authored
Merge pull request #26 from andrey18106/dev
MediaDC v0.1.7
2 parents 665b717 + 64c1ceb commit 4e94dc5

25 files changed

+360
-204
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ A clear and concise description of what you expected to happen.
2020
If applicable, add screenshots to help explain your problem.
2121

2222
**Desktop (please complete the following information):**
23-
- OS: [e.g. iOS]
23+
- OS [e.g. iOS]
24+
- CPU (architecture)
2425
- Browser [e.g. chrome, safari]
2526
- Nextcloud version [e.g. 22]
2627
- Database configuration (without sensitive information)
@@ -29,7 +30,7 @@ If applicable, add screenshots to help explain your problem.
2930

3031
**Smartphone (please complete the following information):**
3132
- Device: [e.g. iPhone6]
32-
- OS: [e.g. iOS8.1]
33+
- OS: [e.g. iOS 8.1]
3334
- Browser [e.g. stock browser, safari]
3435
- Nextcloud version [e.g. 22]
3536
- MediaDC version [e.g. 0.1.0]

.github/workflows/static-analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Static analysis
22

33
on:
44
pull_request:
5-
branches: [main, test, dev]
5+
branches: [main, dev]
66
types: [opened, reopened, edited]
77
push:
88
branches: [dev]
@@ -37,7 +37,7 @@ jobs:
3737
runs-on: ubuntu-latest
3838
strategy:
3939
matrix:
40-
php-versions: [7.4, 8.0]
40+
php-versions: [7.3, 7.4, 8.0]
4141
steps:
4242
- uses: actions/checkout@v2
4343

CHANGELOG.md

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

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

5+
## [0.1.7 - 2021-10-30]
6+
7+
### Added
8+
9+
- Added php `exec` function availability check
10+
11+
### Changed
12+
13+
- Changed missed PHP version requirement from 7.4 to 7.3
14+
- Moved MediaDC admin settings from Groupware tab to separate Administrator menu item
15+
- Changed server errors messages and moved them to the Congiguration page
16+
17+
### Fixed
18+
19+
- Fixed Python version validation fails
20+
521
## [0.1.6 - 2021-10-22]
622

723
### Added

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
![build](https://github.com/andrey18106/mediadc/actions/workflows/create-release-draft.yml/badge.svg)
44
![static-analysis](https://github.com/andrey18106/mediadc/actions/workflows/static-analysis.yml/badge.svg)
55

6+
[![Github All Releases](https://img.shields.io/github/downloads/andrey18106/mediadc/total.svg)](https://github.com/andrey18106/mediadc/releases)
7+
8+
69
**📸📹 Collect photo and video duplicates to save your cloud storage space**
710

811
![Home page](/screenshots/task-managment.png)

appinfo/info.xml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
<summary>Nextcloud Media Duplicate Collector application</summary>
77
<description>
88
<![CDATA[
9+
10+
**Python 3.6.8 or higher required**
11+
912
This app allows to find duplicate or similar 📸📹 photos and videos
1013
* **Many image formats supported** Jpeg, png, tiff, bmp, gif, heic/hif, cr2 and others.
1114
* **Large amount of supported video formats** All that is supported by ffmpeg.
@@ -17,7 +20,7 @@ This app allows to find duplicate or similar 📸📹 photos and videos
1720
Quick start guide and further information in our [Wiki](https://github.com/andrey18106/mediadc/wiki).
1821
]]>
1922
</description>
20-
<version>0.1.6</version>
23+
<version>0.1.7</version>
2124
<licence>agpl</licence>
2225
<author mail="andrey18106x@gmail.com" homepage="https://github.com/andrey18106">Andrey Borysenko</author>
2326
<author mail="bigcat88@icloud.com" homepage="https://github.com/bigcat88">Alexander Piskun</author>
@@ -36,11 +39,11 @@ Quick start guide and further information in our [Wiki](https://github.com/andre
3639
<screenshot>https://raw.githubusercontent.com/andrey18106/mediadc/main/screenshots/admin-config.png</screenshot>
3740
<dependencies>
3841
<nextcloud min-version="21" max-version="22" />
39-
<php min-version="7.4" />
40-
<python min-version="3.6.8" />
42+
<php min-version="7.3" />
4143
</dependencies>
4244
<settings>
4345
<admin>OCA\MediaDC\Settings\AdminSettings</admin>
46+
<admin-section>OCA\MediaDC\Settings\AdminSection</admin-section>
4447
</settings>
4548
<repair-steps>
4649
<install>

appinfo/routes.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<?php
22
/**
33
* @copyright 2021 Andrey Borysenko <andrey18106x@gmail.com>
4+
*
45
* @copyright 2021 Alexander Piskun <bigcat88@icloud.com>
56
*
67
* @author Andrey Borysenko <andrey18106x@gmail.com>

img/settings.svg

Lines changed: 2 additions & 0 deletions
Loading

js/mediadc-dashboard.js

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

js/mediadc-dashboard.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/mediadc-main.js

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

0 commit comments

Comments
 (0)