Skip to content

Commit ca1786a

Browse files
authored
Merge branch 'dev' into 250412-SettingWindowFont
2 parents 9b52cb6 + dbe3bd5 commit ca1786a

File tree

5 files changed

+28
-11
lines changed

5 files changed

+28
-11
lines changed

.github/workflows/dotnet.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- uses: actions/checkout@v4
2424
- name: Set Flow.Launcher.csproj version
2525
id: update
26-
uses: vers-one/dotnet-project-version-updater@v1.5
26+
uses: vers-one/dotnet-project-version-updater@v1.7
2727
with:
2828
file: |
2929
"**/SolutionAssemblyInfo.cs"

.github/workflows/website_deploy.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
3+
name: Deploy Website On Release
4+
on:
5+
release:
6+
types: [published]
7+
workflow_dispatch:
8+
9+
jobs:
10+
dispatch:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Dispatch event
14+
run: |
15+
http_status=$(curl -L -f -s -o /dev/null -w "%{http_code}" \
16+
-X POST \
17+
-H "Accept: application/vnd.github+json" \
18+
-H "Authorization: Bearer ${{ secrets.DEPLOY_FLOW_WEBSITE }}" \
19+
https://api.github.com/repos/Flow-Launcher/flow-launcher.github.io/dispatches \
20+
-d '{"event_type":"deploy"}')
21+
if [ "$http_status" -ne 204 ]; then echo "Error: Deploy trigger failed, HTTP status code is $http_status"; exit 1; fi

Flow.Launcher/Languages/en.xaml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -142,8 +142,8 @@
142142
<system:String x:Key="currentActionKeywords">Current action keyword</system:String>
143143
<system:String x:Key="newActionKeyword">New action keyword</system:String>
144144
<system:String x:Key="actionKeywordsTooltip">Change Action Keywords</system:String>
145-
<system:String x:Key="pluginSearchDelayTime">Plugin seach delay time</system:String>
146-
<system:String x:Key="pluginSearchDelayTimeTooltip">Change Plugin Seach Delay Time</system:String>
145+
<system:String x:Key="pluginSearchDelayTime">Plugin search delay time</system:String>
146+
<system:String x:Key="pluginSearchDelayTimeTooltip">Change Plugin Search Delay Time</system:String>
147147
<system:String x:Key="FilterComboboxLabel">Advanced Settings:</system:String>
148148
<system:String x:Key="DisplayModeOnOff">Enabled</system:String>
149149
<system:String x:Key="DisplayModePriority">Priority</system:String>
@@ -235,7 +235,7 @@
235235
<system:String x:Key="BackdropTypesAcrylic">Acrylic</system:String>
236236
<system:String x:Key="BackdropTypesMica">Mica</system:String>
237237
<system:String x:Key="BackdropTypesMicaAlt">Mica Alt</system:String>
238-
<system:String x:Key="TypeIsDarkToolTip">This theme supports two(light/dark) modes.</system:String>
238+
<system:String x:Key="TypeIsDarkToolTip">This theme supports two (light/dark) modes.</system:String>
239239
<system:String x:Key="TypeHasBlurToolTip">This theme supports Blur Transparent Background.</system:String>
240240
<system:String x:Key="ShowPlaceholder">Show placeholder</system:String>
241241
<system:String x:Key="ShowPlaceholderTip">Display placeholder when query is empty</system:String>
@@ -303,9 +303,8 @@
303303
<system:String x:Key="useGlyphUIEffect">Use Segoe Fluent Icons for query results where supported</system:String>
304304
<system:String x:Key="flowlauncherPressHotkey">Press Key</system:String>
305305
<system:String x:Key="showBadges">Show Result Badges</system:String>
306-
<system:String x:Key="showBadgesToolTip">Show badges for query results where supported</system:String>
306+
<system:String x:Key="showBadgesToolTip">For supported plugins, badges are displayed to help distinguish them more easily.</system:String>
307307
<system:String x:Key="showBadgesGlobalOnly">Show Result Badges for Global Query Only</system:String>
308-
<system:String x:Key="showBadgesGlobalOnlyToolTip">Show badges for global query results only</system:String>
309308

310309
<!-- Setting Proxy -->
311310
<system:String x:Key="proxy">HTTP Proxy</system:String>

Flow.Launcher/SettingPages/Views/SettingsPaneTheme.xaml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -740,10 +740,7 @@
740740
OffContent="{DynamicResource disable}"
741741
OnContent="{DynamicResource enable}" />
742742
</cc:ExCard.SideContent>
743-
<cc:Card
744-
Title="{DynamicResource showBadgesGlobalOnly}"
745-
Sub="{DynamicResource showBadgesGlobalOnlyToolTip}"
746-
Type="InsideFit">
743+
<cc:Card Title="{DynamicResource showBadgesGlobalOnly}" Type="InsideFit">
747744
<ui:ToggleSwitch
748745
IsOn="{Binding Settings.ShowBadgesGlobalOnly}"
749746
OffContent="{DynamicResource disable}"

Plugins/Flow.Launcher.Plugin.Program/Languages/en.xaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
<system:String x:Key="flowlauncher_plugin_program_run_as_different_user">Run As Different User</system:String>
7777
<system:String x:Key="flowlauncher_plugin_program_run_as_administrator">Run As Administrator</system:String>
7878
<system:String x:Key="flowlauncher_plugin_program_open_containing_folder">Open containing folder</system:String>
79-
<system:String x:Key="flowlauncher_plugin_program_disable_program">Disable this program from displaying</system:String>
79+
<system:String x:Key="flowlauncher_plugin_program_disable_program">Hide</system:String>
8080
<system:String x:Key="flowlauncher_plugin_program_open_target_folder">Open target folder</system:String>
8181

8282
<system:String x:Key="flowlauncher_plugin_program_plugin_name">Program</system:String>

0 commit comments

Comments
 (0)