Merge pull request #15 from nini22P/dev

feat: support for custom https ports when adding WebDAV storage
This commit is contained in:
22
2025-02-06 19:00:59 +08:00
committed by GitHub
3 changed files with 14 additions and 5 deletions

View File

@@ -1,3 +1,14 @@
## v1.3.2
### Changelog
* Support for custom https ports when adding WebDAV storage
### 更新日志
* 添加 WebDAV 存储时支持自定义 https 端口
## v1.3.1
### Changelog

View File

@@ -151,8 +151,6 @@ class WebDAVDialog extends HookWidget {
isTested.value = false;
if (value == '443') {
https.value = true;
} else {
https.value = false;
}
},
),
@@ -176,9 +174,9 @@ class WebDAVDialog extends HookWidget {
value: https.value,
onChanged: (_) {
isTested.value = false;
if (!https.value) {
if (portController.text == '80') {
portController.text = '443';
} else {
} else if (portController.text == '443') {
portController.text = '80';
}
https.value = !https.value;

View File

@@ -1,7 +1,7 @@
name: iris
description: "A lightweight video player"
publish_to: 'none'
version: 1.3.1+3
version: 1.3.2+3
environment:
sdk: ^3.5.4