We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2514ea3 commit c4958c2Copy full SHA for c4958c2
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "mihomo-party",
3
- "version": "0.1.2",
+ "version": "0.1.3",
4
"description": "Mihomo Party",
5
"main": "./out/main/index.js",
6
"author": "mihomo-party",
src/renderer/src/pages/tun.tsx
@@ -152,7 +152,11 @@ const Tun: React.FC = () => {
152
isLoading={loading}
153
onPress={() => {
154
setLoading(true)
155
- setupFirewall().finally(() => setLoading(false))
+ setupFirewall()
156
+ .then(() => {
157
+ new Notification('防火墙重设成功')
158
+ })
159
+ .finally(() => setLoading(false))
160
}}
161
>
162
重设防火墙
0 commit comments