File tree Expand file tree Collapse file tree 4 files changed +12
-7
lines changed
Expand file tree Collapse file tree 4 files changed +12
-7
lines changed Original file line number Diff line number Diff line change 1616 </ItemGroup >
1717
1818 <ItemGroup Condition =" '$(TargetFrameworkIdentifier)' != '.NETFramework'" >
19- <PackageReference Include =" System.Drawing.Common" Version =" 8.0.17 " />
19+ <PackageReference Include =" System.Drawing.Common" Version =" 8.0.19 " />
2020 </ItemGroup >
2121
2222 <ItemGroup >
Original file line number Diff line number Diff line change 5555 <PackageReference Include =" CommunityToolkit.WinUI.UI.Controls.DataGrid" Version =" 7.1.2" />
5656 <PackageReference Include =" CommunityToolkit.WinUI.UI.Controls.Layout" Version =" 7.1.2" />
5757 <PackageReference Include =" CommunityToolkit.WinUI.UI.Controls.Markdown" Version =" 7.1.2" />
58- <PackageReference Include =" Downloader" Version =" 3.3.4 " />
58+ <PackageReference Include =" Downloader" Version =" 4.0.3 " />
5959 <PackageReference Include =" MetroLog.Net6" Version =" 2.1.0" />
6060 <PackageReference Include =" Microsoft.Windows.CsWin32" Version =" 0.3.183" PrivateAssets =" all" />
61- <PackageReference Include =" Microsoft.Windows.SDK.BuildTools" Version =" 10.0.26100.4188 " />
61+ <PackageReference Include =" Microsoft.Windows.SDK.BuildTools" Version =" 10.0.26100.4654 " />
6262 <PackageReference Include =" Microsoft.WindowsAppSDK" Version =" 1.7.250606001" />
6363 <PackageReference Include =" QRCoder" Version =" 1.6.0" />
6464 <PackageReference Include =" SharpCompress" Version =" 0.40.0" />
Original file line number Diff line number Diff line change @@ -752,14 +752,19 @@ public async Task InitADBFile()
752752 {
753753 XamlRoot = _page ? . XamlRoot ,
754754 Title = _loader . GetString ( "ADBMissing" ) ,
755- //PrimaryButtonText = _loader.GetString("Download"),
756755 SecondaryButtonText = _loader . GetString ( "Select" ) ,
757756 CloseButtonText = _loader . GetString ( "Cancel" ) ,
758757 Content = new ScrollViewer
759758 {
760759 Content = StackPanel
761760 } ,
762- DefaultButton = ContentDialogButton . Secondary
761+ DefaultButton = ContentDialogButton . Secondary ,
762+ IsDoubleTapEnabled = true
763+ } ;
764+ dialog . DoubleTapped += ( s , e ) =>
765+ {
766+ dialog . PrimaryButtonText = _loader . GetString ( "Download" ) ;
767+ dialog . DefaultButton = ContentDialogButton . Primary ;
763768 } ;
764769 ProgressHelper . SetState ( ProgressState . None , true ) ;
765770 ContentDialogResult result = await dialog . ShowAsync ( ) ;
@@ -1018,14 +1023,14 @@ private async Task InitializeADB()
10181023 IsADBReady = false ;
10191024 return ;
10201025 }
1021- IsADBReady = true ;
10221026 }
10231027 else
10241028 {
10251029 IsADBReady = false ;
10261030 return ;
10271031 }
10281032 }
1033+ IsADBReady = true ;
10291034 WaitProgressText = _loader . GetString ( "Loading" ) ;
10301035 if ( ! await CheckDevice ( ) )
10311036 {
Original file line number Diff line number Diff line change 66 </PropertyGroup >
77
88 <ItemGroup >
9- <PackageReference Include =" Microsoft.Extensions.Logging.Abstractions" Version =" 9.0.6 " />
9+ <PackageReference Include =" Microsoft.Extensions.Logging.Abstractions" Version =" 9.0.8 " />
1010 <PackageReference Include =" Microsoft.SourceLink.GitHub" Version =" 8.0.0" PrivateAssets =" all" >
1111 <IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
1212 </PackageReference >
You can’t perform that action at this time.
0 commit comments