Skip to content

Commit 5aa6604

Browse files
committed
Release v1.15.1
1 parent bd7f354 commit 5aa6604

File tree

3 files changed

+9
-10
lines changed

3 files changed

+9
-10
lines changed

bridge/bridge.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ var Env = &EnvResult{
2727
FromTaskSch: false,
2828
WebviewPath: "",
2929
AppName: "",
30-
AppVersion: "v1.15.0",
30+
AppVersion: "v1.15.1",
3131
BasePath: "",
3232
OS: sysruntime.GOOS,
3333
ARCH: sysruntime.GOARCH,

frontend/.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
VITE_APP_TITLE = GUI.for.Clash
2-
VITE_APP_VERSION = v1.15.0
2+
VITE_APP_VERSION = v1.15.1
33
VITE_APP_PROJECT_URL = https://github.com/GUI-for-Cores/GUI.for.Clash
44
VITE_APP_VERSION_API = https://api.github.com/repos/GUI-for-Cores/GUI.for.Clash/releases/latest
55
VITE_APP_LOCALES_URL = https://github.com/GUI-for-Cores/GUI-for-Cores.github.io/tree/main/app-resources/locales/gfc

frontend/src/components/TitleBar.vue

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -67,13 +67,8 @@ onUnmounted(() => window.removeEventListener('resize', onResize))
6767
</script>
6868

6969
<template>
70-
<div
71-
v-if="!isDarwin"
72-
v-menu="menus"
73-
class="flex items-center py-8 gap-8 px-12"
74-
style="--wails-draggable: drag"
75-
>
76-
<img class="w-24 h-24" draggable="false" src="@/assets/logo.png" />
70+
<div v-menu="menus" class="flex items-center py-8 gap-8 px-12" style="--wails-draggable: drag">
71+
<img v-if="!isDarwin" class="w-24 h-24" draggable="false" src="@/assets/logo.png" />
7772

7873
<div
7974
@dblclick="WindowToggleMaximise"
@@ -93,7 +88,11 @@ onUnmounted(() => window.removeEventListener('resize', onResize))
9388
/>
9489
</div>
9590

96-
<div class="ml-auto flex items-center gap-4" style="--wails-draggable: disabled">
91+
<div
92+
v-if="!isDarwin"
93+
class="ml-auto flex items-center gap-4"
94+
style="--wails-draggable: disabled"
95+
>
9796
<Button @click.stop="pinWindow" type="text" :icon="isPinned ? 'pinFill' : 'pin'" />
9897
<Button @click.stop="WindowMinimise" icon="minimize" type="text" />
9998
<Button

0 commit comments

Comments
 (0)