Jack251970
3d8fd1d352
Improve cancellation, locking, and logging mechanisms
...
Enhanced cancellation handling by adding `token.IsCancellationRequested` checks to improve responsiveness. Refactored locking mechanisms for `_win32sLock` and `_uwpsLock` using `try-finally` blocks to ensure proper acquisition and release, improving thread safety and preventing deadlocks.
Reorganized Win32 and UWP program querying logic for better modularity and readability. Replaced shared collection access with local variables to improve clarity and maintain thread safety. Simplified empty result handling by directly returning `emptyResults` when canceled.
Removed redundant debug log statements to reduce verbosity and updated remaining logs for clarity. Suppressed unused result warnings by replacing direct calls to `EverythingApiDllImport.Everything_GetMajorVersion()` with null-coalescing assignments.
2025-11-06 15:28:13 +08:00
Jack251970
db0c86d50c
Remove CancellationToken from semaphore WaitAsync calls
...
Removed the `CancellationToken` parameter from `WaitAsync` calls
on semaphores in `EverythingAPI.cs` and `Main.cs`. This change
eliminates cancellation support for semaphore waits, likely due
to a design decision prioritizing simplicity or avoiding issues
with cancellation handling.
In `EverythingAPI.cs`, `WaitAsync(token)` was replaced with
`WaitAsync()` in two methods. Similarly, in `Main.cs`, the
`WaitAsync` calls for `_win32sLock` and `_uwpsLock` were updated
to remove the `token` parameter.
Note: This change may impact the ability to gracefully handle
cancellation during semaphore waits.
2025-11-04 14:25:55 +08:00
Diego Henrique
1bfd147421
BUG: Explorer plugin navigate path should only show results in current path ( #4053 )
2025-10-21 12:12:45 +11:00
Jeremy Wu
02a29c6af4
New Crowdin updates ( #4002 )
2025-10-14 12:14:37 +03:00
Jack Ye
5ae159de5b
Move to iNKORE.UI.WPF.Modern UI Framework ( #3593 )
2025-10-05 13:44:40 +03:00
Jeremy Wu
d7e1ad73cc
New Crowdin updates ( #3948 )
2025-09-21 14:36:35 +03:00
Jack251970
78e5bf2a60
Use Flow.Launcher.Localization to improve code quality
2025-09-21 11:50:51 +08:00
Jack251970
23d0b73e20
Fix AllEverythingSortOptions issue
2025-09-17 17:30:03 +08:00
Jack251970
29b675b26a
Upgrade nuget packages
2025-09-13 14:14:59 +08:00
Jack251970
8e837b8e56
Avoid clobbering inherited NoWarn; append instead.
2025-09-06 13:37:27 +08:00
Jack Ye
8bc60e55e0
Merge branch 'dev' into nuget_package_upgrade
2025-09-06 13:31:24 +08:00
Jeremy Wu
09366f5bed
New Crowdin updates ( #3931 )
2025-09-03 09:32:29 +08:00
Jeremy Wu
ca01d15dde
New Crowdin updates ( #3824 )
...
* New translations en.xaml (German)
[ci skip]
* New translations en.xaml (French)
[ci skip]
* New translations en.xaml (Arabic)
[ci skip]
* New translations en.xaml (Czech)
[ci skip]
* New translations en.xaml (Danish)
[ci skip]
* New translations en.xaml (Hebrew)
[ci skip]
* New translations en.xaml (Italian)
[ci skip]
* New translations en.xaml (Japanese)
[ci skip]
* New translations en.xaml (Korean)
[ci skip]
* New translations en.xaml (Dutch)
[ci skip]
* New translations en.xaml (Polish)
[ci skip]
* New translations en.xaml (Portuguese)
[ci skip]
* New translations en.xaml (Russian)
[ci skip]
* New translations en.xaml (Slovak)
[ci skip]
* New translations en.xaml (Turkish)
[ci skip]
* New translations en.xaml (Ukrainian)
[ci skip]
* New translations en.xaml (Chinese Simplified)
[ci skip]
* New translations en.xaml (Chinese Traditional)
[ci skip]
* New translations en.xaml (Vietnamese)
[ci skip]
* New translations en.xaml (Portuguese, Brazilian)
[ci skip]
* New translations en.xaml (Norwegian Bokmal)
[ci skip]
* New translations en.xaml (Serbian (Latin))
[ci skip]
* New translations en.xaml (Spanish (Modern))
[ci skip]
* New translations en.xaml (Spanish, Latin America)
[ci skip]
* New translations en.xaml (French)
[ci skip]
* New translations en.xaml (Slovak)
[ci skip]
* New translations en.xaml (Chinese Simplified)
[ci skip]
* New translations en.xaml (Ukrainian)
[ci skip]
* New translations en.xaml (French)
[ci skip]
* New translations en.xaml (Chinese Simplified)
[ci skip]
* New translations en.xaml (Chinese Simplified)
[ci skip]
* New translations en.xaml (Portuguese)
[ci skip]
* New translations en.xaml (German)
[ci skip]
* New translations en.xaml (French)
[ci skip]
* New translations en.xaml (Arabic)
[ci skip]
* New translations en.xaml (Czech)
[ci skip]
* New translations en.xaml (Danish)
[ci skip]
* New translations en.xaml (Hebrew)
[ci skip]
* New translations en.xaml (Italian)
[ci skip]
* New translations en.xaml (Japanese)
[ci skip]
* New translations en.xaml (Korean)
[ci skip]
* New translations en.xaml (Dutch)
[ci skip]
* New translations en.xaml (Polish)
[ci skip]
* New translations en.xaml (Portuguese)
[ci skip]
* New translations en.xaml (Russian)
[ci skip]
* New translations en.xaml (Slovak)
[ci skip]
* New translations en.xaml (Turkish)
[ci skip]
* New translations en.xaml (Ukrainian)
[ci skip]
* New translations en.xaml (Chinese Simplified)
[ci skip]
* New translations en.xaml (Chinese Traditional)
[ci skip]
* New translations en.xaml (Vietnamese)
[ci skip]
* New translations en.xaml (Portuguese, Brazilian)
[ci skip]
* New translations en.xaml (Norwegian Bokmal)
[ci skip]
* New translations en.xaml (Serbian (Latin))
[ci skip]
* New translations en.xaml (Spanish (Modern))
[ci skip]
* New translations en.xaml (Spanish, Latin America)
[ci skip]
* New translations en.xaml (Slovak)
[ci skip]
* New translations en.xaml (French)
[ci skip]
2025-08-31 13:05:43 +03:00
Jeremy Wu
e1cc50c579
Merge remote-tracking branch 'origin/master' into resolve_conflicts
2025-08-31 17:53:21 +10:00
Jack251970
b07763ad05
Suppress FLSG0007
2025-08-19 14:27:45 +08:00
Jack251970
922c3d5611
Upgrade nuget packages & Update lock files
2025-08-17 16:54:41 +08:00
Jack251970
6751942179
Use Binding instead of RelativeResource for code quality
2025-08-17 14:30:03 +08:00
Jack251970
b097aa0c29
Apply style formatter
2025-08-17 14:23:04 +08:00
Jack251970
0228e6e488
Remove unused trigger
2025-08-17 14:22:50 +08:00
Jack251970
ce8b544ff5
Display FilePath in preview panel
2025-08-17 14:20:55 +08:00
Jack251970
21299d153f
Add FileName & FilePath as public properties
2025-08-17 14:18:18 +08:00
Jack251970
9d3a0f0b70
Show FileName under preview image
2025-08-17 14:14:17 +08:00
Jack251970
f1628eec66
Add MaxHeight & MaxWidth for preview image
2025-08-17 14:14:02 +08:00
Jack251970
9f8ff12155
Bind DataContext to itself
2025-08-17 14:13:32 +08:00
VictoriousRaptor
b637e0a028
Use Flow.Launcher.Localization 0.0.4 & update expect list
2025-07-27 00:17:09 +08:00
Jack Ye
54a2817962
Merge branch 'dev' into code_quality
2025-07-24 11:55:46 +01:00
Jack251970
3cfe122c7b
Use new MonitorInfo class class
2025-07-23 13:51:35 +08:00
Jack251970
69c4d19f8b
Improve code quality
2025-07-23 09:09:12 +08:00
VictoriousRaptor
63009ba332
Use ContextMenu class instead of interface
2025-07-23 00:03:48 +08:00
Jack251970
af3aaa8ce7
Update labels for setting view model when culture info changes
2025-07-21 10:29:14 +08:00
Jack251970
b9e0669c46
Intialize translations in InitAsync
2025-07-21 10:27:25 +08:00
VictoriousRaptor
1e4ff43bfc
Use length and count instead of Any()
2025-07-20 23:33:38 +08:00
VictoriousRaptor
ad1d42b5dd
Update labels on initialization to update on language change
2025-07-20 23:23:36 +08:00
VictoriousRaptor
bea1078d20
Remove redundant function call
2025-07-20 23:20:55 +08:00
Jack Ye
ed0524d207
Merge branch 'dev' into code_quality
2025-07-20 20:02:51 +08:00
Jack Ye
8b3f5aa536
Merge branch 'dev' into nuget_dependency
2025-07-20 19:55:36 +08:00
Kevin Zhang
4f269d3fa9
Dialog Jump - Quickly navigate the Open/Save As dialog window ( #1018 )
2025-07-20 21:11:09 +10:00
Jack251970
ba0a113cc9
Add translations & Use ShowMsgError
2025-07-20 12:28:55 +08:00
Jack251970
85ffd6024b
Add translations
2025-07-20 12:07:15 +08:00
Jack Ye
010b6dde79
Merge branch 'dev' into code_quality
2025-07-19 20:40:49 +08:00
Jack251970
7af3c5febf
Upgrade NuGet dependency
2025-07-19 20:26:33 +08:00
Jack Ye
48822fffa7
Merge branch 'dev' into dependabot/nuget/System.Data.OleDb-9.0.3
2025-07-19 19:34:19 +08:00
VictoriousRaptor
81ae8a4687
Only assign when value is different
2025-07-18 21:33:45 +08:00
VictoriousRaptor
2e99ff96c0
Merge branch 'dev' into code_quality
2025-07-18 21:30:25 +08:00
VictoriousRaptor
b03dae638f
Remove redundent save settings call
2025-07-18 21:17:48 +08:00
VictoriousRaptor
976c30e0d2
Update labels on first get
2025-07-18 21:07:53 +08:00
Jack Ye
9b8c1c42c9
Merge branch 'dev' into net9
2025-07-18 09:50:02 +08:00
VictoriousRaptor
7ca0dba461
Remove unnecessary view model reference
2025-07-18 00:15:46 +08:00
Jack251970
3b3fe5201b
Add delete confirmation when deleting quick access links & index search excluded paths
2025-07-17 12:05:10 +08:00
Jack251970
2018956034
Fix label translation issue
2025-07-16 22:02:56 +08:00