Merge branch 'dev' into fix_quickfolderaccess_explorer
BIN
Doc/Default Icons/app_missing_img.png
Normal file
|
After Width: | Height: | Size: 23 KiB |
BIN
Doc/Default Icons/app_missing_img_01.png
Normal file
|
After Width: | Height: | Size: 43 KiB |
44
Doc/Default Icons/app_missing_img_01.svg
Normal file
|
After Width: | Height: | Size: 48 KiB |
BIN
Doc/Default Icons/app_missing_img_02.png
Normal file
|
After Width: | Height: | Size: 43 KiB |
44
Doc/Default Icons/app_missing_img_02.svg
Normal file
|
After Width: | Height: | Size: 49 KiB |
BIN
Doc/Default Icons/app_missing_img_03.png
Normal file
|
After Width: | Height: | Size: 44 KiB |
44
Doc/Default Icons/app_missing_img_03.svg
Normal file
|
After Width: | Height: | Size: 49 KiB |
BIN
Doc/Default Icons/app_missing_img_buttons.png
Normal file
|
After Width: | Height: | Size: 45 KiB |
48
Doc/Default Icons/app_missing_img_buttons.svg
Normal file
|
After Width: | Height: | Size: 70 KiB |
BIN
Doc/Default Icons/app_missing_img_fluent.png
Normal file
|
After Width: | Height: | Size: 42 KiB |
49
Doc/Default Icons/app_missing_img_fluent.svg
Normal file
|
After Width: | Height: | Size: 40 KiB |
BIN
Doc/Default Icons/app_missing_img_huge.png
Normal file
|
After Width: | Height: | Size: 43 KiB |
42
Doc/Default Icons/app_missing_img_huge.svg
Normal file
|
After Width: | Height: | Size: 67 KiB |
BIN
Doc/Default Icons/app_missing_img_lightblue.png
Normal file
|
After Width: | Height: | Size: 54 KiB |
38
Doc/Default Icons/app_missing_img_lightblue.svg
Normal file
|
After Width: | Height: | Size: 35 KiB |
BIN
Doc/Default Icons/app_missing_img_lightblue_buttons.png
Normal file
|
After Width: | Height: | Size: 55 KiB |
42
Doc/Default Icons/app_missing_img_lightblue_buttons.svg
Normal file
|
After Width: | Height: | Size: 52 KiB |
BIN
Doc/Default Icons/app_missing_img_minimal.png
Normal file
|
After Width: | Height: | Size: 45 KiB |
40
Doc/Default Icons/app_missing_img_minimal.svg
Normal file
|
After Width: | Height: | Size: 40 KiB |
BIN
Doc/Default Icons/app_missing_img_minimal_buttons.png
Normal file
|
After Width: | Height: | Size: 47 KiB |
42
Doc/Default Icons/app_missing_img_minimal_buttons.svg
Normal file
|
After Width: | Height: | Size: 58 KiB |
|
|
@ -51,7 +51,12 @@ namespace Flow.Launcher.Plugin.Explorer.Search.WindowsIndex
|
|||
{
|
||||
if (dataReaderResults.GetValue(0) != DBNull.Value && dataReaderResults.GetValue(1) != DBNull.Value)
|
||||
{
|
||||
var path = new Uri(dataReaderResults.GetString(1)).LocalPath;
|
||||
// # is URI syntax for the fragment component, need to be encoded so LocalPath returns complete path
|
||||
var encodedFragmentPath = dataReaderResults
|
||||
.GetString(1)
|
||||
.Replace("#", "%23", StringComparison.OrdinalIgnoreCase);
|
||||
|
||||
var path = new Uri(encodedFragmentPath).LocalPath;
|
||||
|
||||
if (dataReaderResults.GetString(2) == "Directory")
|
||||
{
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@
|
|||
"Name": "Explorer",
|
||||
"Description": "Search and manage files and folders. Explorer utilises Windows Index Search",
|
||||
"Author": "Jeremy Wu",
|
||||
"Version": "1.2.3",
|
||||
"Version": "1.2.4",
|
||||
"Language": "csharp",
|
||||
"Website": "https://github.com/Flow-Launcher/Flow.Launcher",
|
||||
"ExecuteFileName": "Flow.Launcher.Plugin.Explorer.dll",
|
||||
|
|
|
|||
|
|
@ -16,6 +16,6 @@ using System.Runtime.InteropServices;
|
|||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
[assembly: ComVisible(false)]
|
||||
[assembly: AssemblyVersion("1.2.0")]
|
||||
[assembly: AssemblyFileVersion("1.2.0")]
|
||||
[assembly: AssemblyInformationalVersion("1.2.0")]
|
||||
[assembly: AssemblyVersion("1.2.1")]
|
||||
[assembly: AssemblyFileVersion("1.2.1")]
|
||||
[assembly: AssemblyInformationalVersion("1.2.1")]
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
version: '1.2.0.{build}'
|
||||
version: '1.2.1.{build}'
|
||||
|
||||
init:
|
||||
- ps: |
|
||||
|
|
|
|||