Skip to content

Commit 5de16c6

Browse files
committed
修复浮窗背景色,调整changelog路径
1 parent 5ae3116 commit 5de16c6

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/Build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,8 @@ jobs:
134134
fi
135135
136136
version_no_v="${version#v}"
137-
changelog="CHANGELOG/${version}/CHANGELOG.md"
137+
major_version="v${version_no_v%%.*}"
138+
changelog="CHANGELOG/${major_version}/${version}/CHANGELOG.md"
138139
if [ "${create_release}" = "true" ] && [ ! -f "${changelog}" ]; then
139140
echo "Missing changelog: ${changelog}"
140141
exit 1

SecRandom/Views/FloatingWindow.axaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@
2727
SizeToContent="WidthAndHeight"
2828
Loaded="OnLoaded">
2929
<Grid>
30-
<Border Background="{StaticResource SmokeFillColorDefaultBrush}"
30+
<Border Background="{StaticResource SolidBackgroundFillColorQuarternaryBrush}"
31+
Opacity="{Binding ViewModel.Config.FloatingWindowSettings.FloatingWindowOpacity}"
3132
CornerRadius="8" ClipToBounds="True" />
3233

3334
<StackPanel x:Name="RootStackPanel"

0 commit comments

Comments
 (0)