From 8f43a0092a66bbfd608d4cab1ba3de178d7d521f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=A4=8F=E6=B2=AB=E8=8A=B1=E7=81=ABzzz?= Date: Sat, 23 Dec 2023 14:45:44 +0800 Subject: [PATCH] [+*]Kill all process when exit & README.md --- README.md | 16 +++++++++++----- lib/ui/model/AppbarActions.dart | 2 ++ 2 files changed, 13 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 2e254ed2..f9a78df3 100644 --- a/README.md +++ b/README.md @@ -1,26 +1,32 @@ -# NyaLCF +# Nya LoCyanFrp! Launcher - + + +一个由非官方打造的 LoCyanFrp 启动器。 An unoffical LoCyanFrp launcher. -## 为什么使用NyaLCF +## NyaLCF 特色 - [x] 质感,美观,基于 Material Design 3 设计 - [x] 跨平台可用 - [x] 高性能,低占用 -- [x] 轻量化体积,启动器总大小不超过50MB,本体不足1MB +- [x] 轻量化体积,启动器总大小不超过 50 MB,本体不足 1 MB - [x] 流畅的界面动画 - [x] 可爱喵!にゃ~ +- [x] HarmonyOS Sans 字体,可读性强 ## 设计功能 +标识\*的代表未完全实现,或未达到预期效果仍需测试。 + - [x] 自动登录 - [ ] Frpc管理 +- [x] *进程管理器 - [x] Frp Token复制 - [x] 隧道信息展示 - [x] 隧道启动 -- [x] 控制台 +- [x] *控制台 - [ ] 隧道编辑 - [x] 公告 diff --git a/lib/ui/model/AppbarActions.dart b/lib/ui/model/AppbarActions.dart index 8c7d6576..96459e0b 100644 --- a/lib/ui/model/AppbarActions.dart +++ b/lib/ui/model/AppbarActions.dart @@ -2,6 +2,7 @@ import 'package:bitsdojo_window/bitsdojo_window.dart'; import 'package:flutter/material.dart'; import 'package:get/get.dart'; import 'package:nyalcf/controller/user.dart'; +import 'package:nyalcf/util/frpc/ProcessManager.dart'; class AppbarActionsX { AppbarActionsX( @@ -95,6 +96,7 @@ class AppbarActionsX { style: TextStyle(color: Colors.red), ), onPressed: () { + ProcessManager().killAll(); Navigator.pop(context, true); }, ),