Skip to content

Commit c4108b0

Browse files
committed
Add to query context menu for tags, narrow font in tooltip, version check
1 parent 6a1bc42 commit c4108b0

File tree

4 files changed

+296
-146
lines changed

4 files changed

+296
-146
lines changed

AzTagger/AzTagger.csproj

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<OutputType>WinExe</OutputType>
55
<TargetFramework>net9.0-windows7.0</TargetFramework>
66
<UseWindowsForms>true</UseWindowsForms>
7-
<Version>1.0.13.0</Version>
7+
<Version>1.0.14.0</Version>
88
<Authors>Thomas Gossler</Authors>
99
<Description>
1010
A Windows Desktop GUI application for fast and flexible querying of Azure resources
@@ -18,8 +18,8 @@
1818
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1919
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
2020
<ApplicationIcon>images\icon.ico</ApplicationIcon>
21-
<AssemblyVersion>1.0.13.0</AssemblyVersion>
22-
<FileVersion>1.0.13.0</FileVersion>
21+
<AssemblyVersion>1.0.14.0</AssemblyVersion>
22+
<FileVersion>1.0.14.0</FileVersion>
2323
</PropertyGroup>
2424

2525

@@ -28,15 +28,15 @@
2828
</ItemGroup>
2929

3030
<ItemGroup>
31-
<PackageReference Include="Azure.Identity" Version="1.13.1" />
31+
<PackageReference Include="Azure.Identity" Version="1.13.2" />
3232
<PackageReference Include="Azure.ResourceManager.Resources" Version="1.9.0" />
33-
<PackageReference Include="Microsoft.Graph" Version="5.64.0" />
34-
<PackageReference Include="Microsoft.Identity.Client" Version="4.66.2" />
33+
<PackageReference Include="Microsoft.Graph" Version="5.69.0" />
34+
<PackageReference Include="Microsoft.Identity.Client" Version="4.67.2" />
3535
<PackageReference Include="Azure.ResourceManager" Version="1.13.0" />
3636
<PackageReference Include="Azure.ResourceManager.ResourceGraph" Version="1.0.1" />
37-
<PackageReference Include="Serilog" Version="4.1.0" />
37+
<PackageReference Include="Serilog" Version="4.2.0" />
3838
<PackageReference Include="Serilog.Sinks.File" Version="6.0.0" />
39-
<PackageReference Include="System.Text.Json" Version="9.0.0" />
39+
<PackageReference Include="System.Text.Json" Version="9.0.1" />
4040
</ItemGroup>
4141

4242
</Project>

AzTagger/CustomToolTipForm.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ public void ShowToolTip(Form owner, string text, Point location, Font font = nul
6161

6262
Size toolTipLabelSize = GetPreferredLabelSize(text, font);
6363
_label.Size = toolTipLabelSize;
64+
_label.Font = font;
6465

6566
Rectangle tooltipLabelRect = new Rectangle(0, 0, toolTipLabelSize.Width, toolTipLabelSize.Height);
6667
Size bitmapSize = new Size(

0 commit comments

Comments
 (0)