新版本

This commit is contained in:
刘嘉伟 2024-08-26 10:51:12 +08:00
parent ad3167627b
commit 4f80fc9e27
3 changed files with 20 additions and 16 deletions

View File

@ -32,10 +32,10 @@
- [x] 支持快速分享frps
- [x] 增加快速选择本地端口
- [x] 支持stcp代理类型
- [ ] 通过镜像站下载frp
- [ ] 支持所有配置的导入导出
- [ ] 支持导入识别frpc.toml、frpc.ini
- [ ] 一键清空所有配置
- [x] 通过镜像站下载frp
- [x] 支持所有配置的导入导出
- [x] 一键清空所有配置
- [x] 支持导入识别frpc.toml
- [ ] tcp、udp协议支持批量端口
## 常见问题
@ -44,6 +44,7 @@
执行命令:`sudo xattr -cr Frpc-Desktop.app`
## 里程碑
- 2024-08-24: 发布v1.0.9版本 支持镜像下载、导出导入配置
- 2024-08-17: 发布v1.0.8版本 支持stcp代理
- 2024-08-11: 发布v1.0.7版本
- 2024-08-09: 发布v1.0.6版本
@ -59,7 +60,7 @@
<img src="screenshots/wechat-qr.png" alt="二维码" width="200">
**微信群超过200人无法扫码进群 关注公众号进群 😔**
**微信群超过200人无法扫码进群 关注公众号进群 **
<img src="screenshots/mp_qr.jpg" alt="公众号二维码" width="200">

View File

@ -1,6 +1,6 @@
{
"name": "Frpc-Desktop",
"version": "1.0.8",
"version": "1.0.9",
"main": "dist-electron/main/index.js",
"description": "FRP跨平台桌面客户端可视化配置轻松实现内网穿透",
"repository": "github:luckjiawei/frpc-desktop",

View File

@ -66,6 +66,18 @@ const handleOpenGitHubReleases = () => {
});
};
const handleCompleteGuide: () => boolean = () => {
//
confetti({
zIndex: 12002,
particleCount: 200,
spread: 70,
origin: { y: 0.6 }
});
localStorage.setItem("guide", new Date().getTime().toString());
return true; // boolean
};
onMounted(() => {
routes.value = router.options.routes[0].children?.filter(
f => !f.meta?.hidden
@ -73,16 +85,7 @@ onMounted(() => {
if (!localStorage.getItem("guide")) {
//
Intro.onBeforeExit(function () {
//
confetti({
zIndex: 12002,
particleCount: 200,
spread: 70,
origin: { y: 0.6 }
});
localStorage.setItem("guide", new Date().getTime().toString());
}).start();
Intro.onBeforeExit(handleCompleteGuide).start();
}
});
</script>