release/dist/synology: remove 'version' field from ui/config
As far as I can tell from the DSM documentation and known undocumented fields, there is no 'version' field in this config file that DSM cares about. Updates #8232 Signed-off-by: David Anderson <danderson@tailscale.com>pull/8428/head
parent
7c1068b7ac
commit
4a58b1c293
|
@ -2,7 +2,6 @@
|
||||||
".url": {
|
".url": {
|
||||||
"SYNO.SDS.Tailscale": {
|
"SYNO.SDS.Tailscale": {
|
||||||
"type": "url",
|
"type": "url",
|
||||||
"version": "1.8.3",
|
|
||||||
"title": "Tailscale",
|
"title": "Tailscale",
|
||||||
"icon": "PACKAGE_ICON_256.PNG",
|
"icon": "PACKAGE_ICON_256.PNG",
|
||||||
"url": "webman/3rdparty/Tailscale/",
|
"url": "webman/3rdparty/Tailscale/",
|
||||||
|
|
|
@ -176,7 +176,7 @@ func (m *synologyBuilds) buildInnerPackage(b *dist.Build, dsmVersion int, goenv
|
||||||
static(fmt.Sprintf("logrotate-dsm%d", dsmVersion), "conf/logrotate.conf", 0644),
|
static(fmt.Sprintf("logrotate-dsm%d", dsmVersion), "conf/logrotate.conf", 0644),
|
||||||
dir("ui"),
|
dir("ui"),
|
||||||
static("PACKAGE_ICON_256.PNG", "ui/PACKAGE_ICON_256.PNG", 0644),
|
static("PACKAGE_ICON_256.PNG", "ui/PACKAGE_ICON_256.PNG", 0644),
|
||||||
static("config", "ui/config", 0644), // TODO: this has "1.8.3" hard-coded in it; why? what is it? bug?
|
static("config", "ui/config", 0644),
|
||||||
static("index.cgi", "ui/index.cgi", 0755))
|
static("index.cgi", "ui/index.cgi", 0755))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
|
|
Loading…
Reference in New Issue