Update to 1.0.1

This commit is contained in:
alexbelgium
2021-11-20 01:55:46 +01:00
parent aadf99898b
commit 0deb9fe765
2 changed files with 26 additions and 6 deletions

View File

@@ -1,3 +1,6 @@
## 1.0.1 (20-11-2021)
- Update to latest version from linuxserver/docker-bazarr
- Allow mounting local drives by label. Just pust the label instead of sda1 for example - Allow mounting local drives by label. Just pust the label instead of sda1 for example
- Improve SMB mount code to v1.5 ; accepts several network disks separated by commas (//123.12.12.12/share,//123.12.12.12/hello) that are mount to /mnt/$sharename - Improve SMB mount code to v1.5 ; accepts several network disks separated by commas (//123.12.12.12/share,//123.12.12.12/hello) that are mount to /mnt/$sharename

View File

@@ -1,7 +1,16 @@
{ {
"apparmor": true, "apparmor": true,
"arch": ["aarch64", "amd64", "armv7", "armhf"], "arch": [
"backup_exclude": ["**/Backups/*", "**/logs/*", "**/MediaCover/*"], "aarch64",
"amd64",
"armv7",
"armhf"
],
"backup_exclude": [
"**/Backups/*",
"**/logs/*",
"**/MediaCover/*"
],
"boot": "auto", "boot": "auto",
"description": "Companion application to Sonarr and Radarr to download subtitles", "description": "Companion application to Sonarr and Radarr to download subtitles",
"devices": [ "devices": [
@@ -25,7 +34,12 @@
"PGID": "0" "PGID": "0"
}, },
"ingress": false, "ingress": false,
"map": ["config:rw", "share:rw", "media:rw", "ssl"], "map": [
"config:rw",
"share:rw",
"media:rw",
"ssl"
],
"name": "Bazarr NAS", "name": "Bazarr NAS",
"options": { "options": {
"PUID": 0, "PUID": 0,
@@ -37,7 +51,10 @@
"ports_description": { "ports_description": {
"6767/tcp": "web interface" "6767/tcp": "web interface"
}, },
"privileged": ["SYS_ADMIN", "DAC_READ_SEARCH"], "privileged": [
"SYS_ADMIN",
"DAC_READ_SEARCH"
],
"schema": { "schema": {
"PUID": "int", "PUID": "int",
"PGID": "int", "PGID": "int",
@@ -48,8 +65,8 @@
}, },
"slug": "bazarr_nas", "slug": "bazarr_nas",
"startup": "services", "startup": "services",
"upstream": "1.0.0", "upstream": "1.0.1",
"url": "https://github.com/alexbelgium/hassio-addons", "url": "https://github.com/alexbelgium/hassio-addons",
"version": "1.0.0-4", "version": "1.0.1",
"webui": "http://[HOST]:[PORT:6767]" "webui": "http://[HOST]:[PORT:6767]"
} }