Skip to content

Commit f6eeec7

Browse files
authored
Merge branch 'dev' into dynamic_height
2 parents 48d3193 + 1fd1a37 commit f6eeec7

File tree

3 files changed

+12
-11
lines changed

3 files changed

+12
-11
lines changed

.github/ISSUE_TEMPLATE/bug-report.yaml

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -41,25 +41,26 @@ body:
4141
- type: input
4242
attributes:
4343
label: Flow Launcher Version
44-
description: Go to "Settings" => "About".
45-
value: v1.8.3
44+
description: Go to "Settings" => "About". If you are using a prerelease version please append the build number.
45+
placeholder: "Example: 1.11.0"
46+
validations:
47+
required: true
4648

4749
- type: input
4850
attributes:
4951
label: Windows Build Number
50-
description: Run "ver" at CMD (command prompt).
51-
value: 10.0.19043.1288
52+
description: Run "ver" at CMD (command prompt) or go to Windows Settings -> Systems -> About.
53+
placeholder: "Example: 10.0.19043.1288"
54+
validations:
55+
required: true
56+
5257

5358
- type: textarea
5459
id: logs
5560
attributes:
5661
label: Error Log
5762
description: >
58-
Log file place:
59-
60-
- The latest version place: `%AppData%\FlowLauncher\Logs\<version>\<date>.txt`
61-
62-
- For portable mode: `%LocalAppData%\FlowLauncher\<App-Version>\UserData\Logs\<version>\<date>.txt`
63+
From flow type 'open log location' and find log file with the corresponding date containing the error info.
6364
value: >
6465
<details>
6566

Flow.Launcher.Infrastructure/FileExplorerHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public static string GetActiveExplorerPath()
1515
{
1616
var explorerWindow = GetActiveExplorer();
1717
string locationUrl = explorerWindow?.LocationURL;
18-
return !string.IsNullOrEmpty(locationUrl) ? new Uri(locationUrl).LocalPath : null;
18+
return !string.IsNullOrEmpty(locationUrl) ? new Uri(locationUrl).LocalPath + "\\" : null;
1919
}
2020

2121
/// <summary>

Flow.Launcher/ViewModel/ResultViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ private async Task<ImageSource> LoadImageInternalAsync(string imagePath, Result.
188188
{
189189
try
190190
{
191-
var image = await Task.Run(() => icon()).ConfigureAwait(false);
191+
var image = icon();
192192
return image;
193193
}
194194
catch (Exception e)

0 commit comments

Comments
 (0)