mirror of
https://github.com/hassio-addons/repository.git
synced 2025-05-06 20:21:26 +00:00
🎉 Release of add-on FTP 3.4.0
This commit is contained in:
parent
d7d448d09f
commit
3a14a440d0
5 changed files with 29 additions and 19 deletions
|
@ -875,10 +875,10 @@ SOFTWARE.
|
|||
[example-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg
|
||||
[example-armv7-shield]: https://img.shields.io/badge/armv7-yes-green.svg
|
||||
[example-i386-shield]: https://img.shields.io/badge/i386-yes-green.svg
|
||||
[addon-ftp]: https://github.com/hassio-addons/addon-ftp/tree/v3.3.3
|
||||
[addon-doc-ftp]: https://github.com/hassio-addons/addon-ftp/blob/v3.3.3/README.md
|
||||
[addon-ftp]: https://github.com/hassio-addons/addon-ftp/tree/v3.4.0
|
||||
[addon-doc-ftp]: https://github.com/hassio-addons/addon-ftp/blob/v3.4.0/README.md
|
||||
[ftp-issue]: https://github.com/hassio-addons/addon-ftp/issues
|
||||
[ftp-version-shield]: https://img.shields.io/badge/version-v3.3.3-blue.svg
|
||||
[ftp-version-shield]: https://img.shields.io/badge/version-v3.4.0-blue.svg
|
||||
[ftp-pulls-shield]: https://img.shields.io/docker/pulls/hassioaddons/ftp-armhf.svg
|
||||
[ftp-aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg
|
||||
[ftp-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg
|
||||
|
|
|
@ -1,15 +1,16 @@
|
|||
[Full Changelog][changelog]
|
||||
|
||||
This release add support for the new media folder that is exposed.
|
||||
Please note, this also means the configuration changed!
|
||||
|
||||
Each user now has a `allow_media` configuration option, to grant users access to that folder.
|
||||
|
||||
### 🔨 Changes
|
||||
|
||||
- ⬆ Upgrades add-on base image to v8.0.1
|
||||
- ⬆ Upgrades gcc to 9.3.0-r2
|
||||
- ⬆ Upgrades linux-pam-dev to 1.3.1-r4
|
||||
- ⬆ Upgrades make to 4.3-r0
|
||||
- ⬆ Upgrades musl-dev to 1.1.24-r9
|
||||
- 🔥 Remove Renovatebot
|
||||
- ✨ Add support for the new media folder
|
||||
- ⬆ Upgrades add-on base image to v8.0.2
|
||||
|
||||
[changelog]: https://github.com/hassio-addons/addon-ftp/compare/v3.3.2...v3.3.3
|
||||
[changelog]: https://github.com/hassio-addons/addon-ftp/compare/v3.3.3...v3.4.0
|
||||
|
||||
Questions? Join our Discord server! https://discord.me/hassioaddons
|
||||
Enjoying my add-ons? Consider supporting my work:
|
||||
|
|
16
ftp/DOCS.md
16
ftp/DOCS.md
|
@ -35,7 +35,7 @@ banner: Welcome to the Hass.io FTP service.
|
|||
pasv: true
|
||||
pasv_min_port: 30000
|
||||
pasv_max_port: 30010
|
||||
pasv_address: ''
|
||||
pasv_address: ""
|
||||
ssl: false
|
||||
certfile: fullchain.pem
|
||||
keyfile: privkey.pem
|
||||
|
@ -51,6 +51,7 @@ users:
|
|||
addons: false
|
||||
backup: true
|
||||
config: true
|
||||
media: true
|
||||
share: true
|
||||
ssl: false
|
||||
- username: camera
|
||||
|
@ -62,6 +63,7 @@ users:
|
|||
addons: false
|
||||
backup: false
|
||||
config: false
|
||||
media: false
|
||||
share: true
|
||||
ssl: false
|
||||
```
|
||||
|
@ -201,6 +203,10 @@ Allow the user to access the `/backup` directory.
|
|||
|
||||
Allow the user to access the `/config` directory.
|
||||
|
||||
#### Sub-option: `media`
|
||||
|
||||
Allow the user to access the `/media` directory.
|
||||
|
||||
#### Sub-option: `share`
|
||||
|
||||
Allow the user to access the `/share` directory.
|
||||
|
@ -224,12 +230,12 @@ functionality. The format of the log is based on
|
|||
[Keep a Changelog][keepchangelog].
|
||||
|
||||
Releases are based on [Semantic Versioning][semver], and use the format
|
||||
of ``MAJOR.MINOR.PATCH``. In a nutshell, the version will be incremented
|
||||
of `MAJOR.MINOR.PATCH`. In a nutshell, the version will be incremented
|
||||
based on the following:
|
||||
|
||||
- ``MAJOR``: Incompatible or major changes.
|
||||
- ``MINOR``: Backwards-compatible new features and enhancements.
|
||||
- ``PATCH``: Backwards-compatible bugfixes and package updates.
|
||||
- `MAJOR`: Incompatible or major changes.
|
||||
- `MINOR`: Backwards-compatible new features and enhancements.
|
||||
- `PATCH`: Backwards-compatible bugfixes and package updates.
|
||||
|
||||
## Support
|
||||
|
||||
|
|
|
@ -34,5 +34,5 @@ access to your Home Assistant configuration via FTP.
|
|||
[patreon-shield]: https://frenck.dev/wp-content/uploads/2019/12/patreon.png
|
||||
[patreon]: https://www.patreon.com/frenck
|
||||
[project-stage-shield]: https://img.shields.io/badge/project%20stage-production%20ready-brightgreen.svg
|
||||
[release-shield]: https://img.shields.io/badge/version-v3.3.3-blue.svg
|
||||
[release]: https://github.com/hassio-addons/addon-ftp/tree/v3.3.3
|
||||
[release-shield]: https://img.shields.io/badge/version-v3.4.0-blue.svg
|
||||
[release]: https://github.com/hassio-addons/addon-ftp/tree/v3.4.0
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "FTP",
|
||||
"version": "3.3.3",
|
||||
"version": "3.4.0",
|
||||
"slug": "ftp",
|
||||
"description": "A secure and fast FTP server for Home Assistant",
|
||||
"url": "https://github.com/hassio-addons/addon-ftp",
|
||||
|
@ -26,6 +26,7 @@
|
|||
"addons:rw",
|
||||
"backup:rw",
|
||||
"config:rw",
|
||||
"media:rw",
|
||||
"share:rw",
|
||||
"ssl:rw"
|
||||
],
|
||||
|
@ -53,6 +54,7 @@
|
|||
"addons": false,
|
||||
"backup": false,
|
||||
"config": false,
|
||||
"media": true,
|
||||
"share": true,
|
||||
"ssl": false
|
||||
}
|
||||
|
@ -83,6 +85,7 @@
|
|||
"addons": "bool",
|
||||
"backup": "bool",
|
||||
"config": "bool",
|
||||
"media": "bool",
|
||||
"share": "bool",
|
||||
"ssl": "bool"
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue