Skip to content

Commit

Permalink
✨ 新版本
Browse files Browse the repository at this point in the history
  • Loading branch information
luckjiawei committed Aug 26, 2024
1 parent ad31676 commit 4f80fc9
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 16 deletions.
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@
- [x] 支持快速分享frps
- [x] 增加快速选择本地端口
- [x] 支持stcp代理类型
- [ ] 通过镜像站下载frp
- [ ] 支持所有配置的导入导出
- [ ] 支持导入识别frpc.toml、frpc.ini
- [ ] 一键清空所有配置
- [x] 通过镜像站下载frp
- [x] 支持所有配置的导入导出
- [x] 一键清空所有配置
- [x] 支持导入识别frpc.toml
- [ ] tcp、udp协议支持批量端口

## 常见问题
Expand All @@ -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版本
Expand All @@ -59,7 +60,7 @@

<img src="screenshots/wechat-qr.png" alt="二维码" width="200">

**微信群超过200人无法扫码进群 关注公众号进群 😔**
**微信群超过200人无法扫码进群 关注公众号进群 **

<img src="screenshots/mp_qr.jpg" alt="公众号二维码" width="200">

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
23 changes: 13 additions & 10 deletions src/layout/compoenets/LeftMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -66,23 +66,26 @@ 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
) as Array<RouteRecordRaw>;
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>
Expand Down

0 comments on commit 4f80fc9

Please sign in to comment.