We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32b5b8b commit 36d58ceCopy full SHA for 36d58ce
2 files changed
README.md
@@ -10,6 +10,7 @@ tui界面的v2ray
10
* 按h出设置界面,设置界面里面有两个设置
11
* v2raycore
12
* 订阅,当在第二个设置里面添加了订阅后按下键可以选中订阅,d键删除
13
+ * s 回到popup的只读界面后按下s进行设置更新和订阅同步,同步失败后不会回退,应该需要做个提示
14
* e
15
* TODO, 计划作为设置
16
* s
src/state.rs
@@ -26,10 +26,6 @@ pub fn run_app(terminal: &mut Terminal<MyBackend>) -> io::Result<()> {
26
let mut appsub = AppSub::default();
27
let informations = utils::start();
28
if !informations.is_empty() {
29
- //appsub.subs[0] = informations[0]
30
- // .iter()
31
- // .map(|amessage| spider::remove_quotation(amessage.ps.clone()))
32
- // .collect();
33
appsub.subs = informations
34
.iter()
35
.map(|ainformation| ainformation
0 commit comments