Compare commits

..

8 Commits

Author SHA1 Message Date
copilot-swe-agent[bot]
14d1cbe8c7 Complete text selection implementation for MSI info panel
Co-authored-by: emako <24737061+emako@users.noreply.github.com>
2025-07-26 06:43:28 +00:00
copilot-swe-agent[bot]
6cacc139a6 Enable text selection for copying file information values
Co-authored-by: emako <24737061+emako@users.noreply.github.com>
2025-07-26 06:41:17 +00:00
copilot-swe-agent[bot]
8846a84835 Initial plan 2025-07-26 06:31:17 +00:00
dependabot[bot]
d88c8ab8de Bump Magick.NET-Q8-AnyCPU from 14.6.0 to 14.7.0
Some checks failed
MSBuild / build (push) Has been cancelled
MSBuild / publish (push) Has been cancelled
---
updated-dependencies:
- dependency-name: Magick.NET-Q8-AnyCPU
  dependency-version: 14.7.0
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-07-24 16:35:58 +08:00
copilot-swe-agent[bot]
a38b7a450a Fix code alignment by adding space to align .Replace method calls
Some checks failed
MSBuild / build (push) Has been cancelled
MSBuild / publish (push) Has been cancelled
Co-authored-by: emako <24737061+emako@users.noreply.github.com>
2025-07-23 23:57:13 +08:00
copilot-swe-agent[bot]
8ad5f39eab Add missing using System.Linq to fix compile error
Co-authored-by: emako <24737061+emako@users.noreply.github.com>
2025-07-23 23:57:13 +08:00
copilot-swe-agent[bot]
83cfd2a3d8 Remove unnecessary Translations.config and simplify RTL detection code
Co-authored-by: emako <24737061+emako@users.noreply.github.com>
2025-07-23 23:57:13 +08:00
copilot-swe-agent[bot]
4840a87858 Add RTL support for markdown files
Co-authored-by: emako <24737061+emako@users.noreply.github.com>
2025-07-23 23:57:13 +08:00
6 changed files with 15 additions and 1 deletions

View File

@@ -89,6 +89,7 @@
Padding="3"
FontSize="19"
FontWeight="SemiBold"
IsTextSelectionEnabled="True"
LineHeight="25"
TextTrimming="CharacterEllipsis"
TextWrapping="Wrap">
@@ -110,6 +111,7 @@
Margin="8,0,0,0"
Padding="3"
Foreground="{DynamicResource WindowTextForegroundAlternative}"
IsTextSelectionEnabled="True"
Text="Searching..."
TextTrimming="CharacterEllipsis"
TextWrapping="Wrap" />

View File

@@ -84,6 +84,7 @@
Padding="3"
FontSize="19"
FontWeight="SemiBold"
IsTextSelectionEnabled="True"
LineHeight="25"
TextTrimming="CharacterEllipsis"
TextWrapping="Wrap">
@@ -105,6 +106,7 @@
Margin="8,0,0,0"
Padding="3"
Foreground="{DynamicResource WindowTextForegroundAlternative}"
IsTextSelectionEnabled="True"
Text="Searching..."
TextTrimming="CharacterEllipsis"
TextWrapping="Wrap" />
@@ -121,6 +123,7 @@
Margin="8,0,0,0"
Padding="3"
Foreground="{DynamicResource WindowTextForegroundAlternative}"
IsTextSelectionEnabled="True"
Text="Searching..."
TextTrimming="CharacterEllipsis"
TextWrapping="Wrap" />
@@ -137,6 +140,7 @@
Margin="8,0,0,0"
Padding="3"
Foreground="{DynamicResource WindowTextForegroundAlternative}"
IsTextSelectionEnabled="True"
Text="Searching..."
TextTrimming="CharacterEllipsis"
TextWrapping="Wrap" />
@@ -153,6 +157,7 @@
Margin="8,0,0,0"
Padding="3"
Foreground="{DynamicResource WindowTextForegroundAlternative}"
IsTextSelectionEnabled="True"
Text="Calculating size..." />
<!-- Last Modified -->
<TextBlock x:Name="modDateTitle"
@@ -167,6 +172,7 @@
Margin="8,0,0,0"
Padding="3"
Foreground="{DynamicResource WindowTextForegroundAlternative}"
IsTextSelectionEnabled="True"
Text="Searching..."
TextTrimming="CharacterEllipsis" />
<!-- Capabilities -->

View File

@@ -110,6 +110,7 @@
Margin="8,0,0,0"
Padding="3"
Foreground="{DynamicResource WindowTextForegroundAlternative}"
IsTextSelectionEnabled="True"
Text="Searching..."
TextTrimming="CharacterEllipsis"
TextWrapping="Wrap" />

View File

@@ -98,6 +98,7 @@
Margin="8,0,0,0"
Padding="3"
Foreground="{DynamicResource WindowTextForegroundAlternative}"
IsTextSelectionEnabled="True"
Text="Searching..."
TextTrimming="CharacterEllipsis"
TextWrapping="Wrap" />

View File

@@ -59,7 +59,7 @@
<PackageReference Include="QuickLook.ImageGlass.WebP" Version="1.4.0">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Magick.NET-Q8-AnyCPU" Version="14.6.0">
<PackageReference Include="Magick.NET-Q8-AnyCPU" Version="14.7.0">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.Web.WebView2" Version="1.0.3351.48">

View File

@@ -72,6 +72,7 @@
Padding="3"
FontSize="19"
FontWeight="SemiBold"
IsTextSelectionEnabled="True"
LineHeight="25"
TextTrimming="CharacterEllipsis"
TextWrapping="Wrap">
@@ -107,6 +108,7 @@
Margin="8,0,0,0"
Padding="3"
Foreground="{DynamicResource WindowTextForegroundAlternative}"
IsTextSelectionEnabled="True"
Text="Calculating size..." />
<!-- File Version -->
<TextBlock x:Name="fileVersionTitle"
@@ -121,6 +123,7 @@
Margin="8,0,0,0"
Padding="3"
Foreground="{DynamicResource WindowTextForegroundAlternative}"
IsTextSelectionEnabled="True"
Text="Searching..."
TextTrimming="CharacterEllipsis" />
<!-- Product Version -->
@@ -136,6 +139,7 @@
Margin="8,0,0,0"
Padding="3"
Foreground="{DynamicResource WindowTextForegroundAlternative}"
IsTextSelectionEnabled="True"
Text="Searching..."
TextTrimming="CharacterEllipsis"
TextWrapping="Wrap" />