Skip to content

Commit 1dfec7f

Browse files
authored
Merge branch 'dev' into administrator_mode
2 parents a76ade8 + bb76e4e commit 1dfec7f

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

Flow.Launcher.Infrastructure/UserSettings/Settings.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ public bool HideNotifyIcon
385385

386386
public bool AlwaysRunAsAdministrator { get; set; } = false;
387387

388-
private bool _showAtTopmost = true;
388+
private bool _showAtTopmost = false;
389389
public bool ShowAtTopmost
390390
{
391391
get => _showAtTopmost;

Flow.Launcher/Languages/en.xaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,8 +132,8 @@
132132
<system:String x:Key="historyResultsForHomePage">Show History Results in Home Page</system:String>
133133
<system:String x:Key="historyResultsCountForHomePage">Maximum History Results Shown in Home Page</system:String>
134134
<system:String x:Key="homeToggleBoxToolTip">This can only be edited if plugin supports Home feature and Home Page is enabled.</system:String>
135-
<system:String x:Key="showAtTopmost">Show Search Window at Topmost</system:String>
136-
<system:String x:Key="showAtTopmostToolTip">Show search window above other windows</system:String>
135+
<system:String x:Key="showAtTopmost">Show Search Window at Foremost</system:String>
136+
<system:String x:Key="showAtTopmostToolTip">Overrides other programs' 'Always on Top' setting and displays Flow in the foremost position.</system:String>
137137
<system:String x:Key="alwaysRunAsAdministrator">Always run as administrator</system:String>
138138
<system:String x:Key="alwaysRunAsAdministratorToolTip">Run Flow Launcher as administrator on startup</system:String>
139139
<system:String x:Key="runAsAdministratorChange">Administrator Mode Change</system:String>

Flow.Launcher/SettingPages/Views/SettingsPaneGeneral.xaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,25 +81,27 @@
8181
OffContent="{DynamicResource disable}"
8282
OnContent="{DynamicResource enable}" />
8383
</cc:Card>
84+
8485
<cc:Card Title="{DynamicResource hideNotifyIcon}" Sub="{DynamicResource hideNotifyIconToolTip}">
8586
<ui:ToggleSwitch
8687
IsOn="{Binding Settings.HideNotifyIcon}"
8788
OffContent="{DynamicResource disable}"
8889
OnContent="{DynamicResource enable}" />
8990
</cc:Card>
9091

92+
9193
<cc:Card
9294
Title="{DynamicResource showAtTopmost}"
9395
Margin="0 14 0 0"
94-
Icon="&#xE923;"
96+
Icon="&#xf5ed;"
9597
Sub="{DynamicResource showAtTopmostToolTip}">
9698
<ui:ToggleSwitch
9799
IsOn="{Binding Settings.ShowAtTopmost}"
98100
OffContent="{DynamicResource disable}"
99101
OnContent="{DynamicResource enable}" />
100102
</cc:Card>
101103

102-
<cc:CardGroup Margin="0 14 0 0">
104+
<cc:CardGroup Margin="0 4 0 0">
103105
<cc:Card Title="{DynamicResource SearchWindowPosition}" Icon="&#xe7f4;">
104106
<StackPanel Orientation="Horizontal">
105107
<ComboBox

appveyor.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
version: '1.20.1.{build}'
22

3+
# Do not build on tags because we create a release on merge to master. Otherwise will upload artifacts twice changing the hash, as well as triggering duplicate GitHub release action & NuGet deployments.
4+
skip_tags: true
5+
36
init:
47
- ps: |
58
$version = new-object System.Version $env:APPVEYOR_BUILD_VERSION
@@ -14,7 +17,6 @@ init:
1417
cache:
1518
- '%USERPROFILE%\.nuget\packages -> **.sln, **.csproj' # preserve nuget folder (packages) unless the solution or projects change
1619

17-
1820
assembly_info:
1921
patch: true
2022
file: SolutionAssemblyInfo.cs

0 commit comments

Comments
 (0)