mirror of
https://github.com/nini22P/iris.git
synced 2026-05-22 18:10:44 +08:00
Merge pull request #15 from nini22P/dev
feat: support for custom https ports when adding WebDAV storage
This commit is contained in:
11
CHANGELOG.md
11
CHANGELOG.md
@@ -1,3 +1,14 @@
|
||||
## v1.3.2
|
||||
|
||||
### Changelog
|
||||
|
||||
* Support for custom https ports when adding WebDAV storage
|
||||
|
||||
### 更新日志
|
||||
|
||||
* 添加 WebDAV 存储时支持自定义 https 端口
|
||||
|
||||
|
||||
## v1.3.1
|
||||
|
||||
### Changelog
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user