Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dashboard/AboutWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

<!-- Title -->
<TextBlock Grid.Row="0" Text="Performance Monitor Dashboard" FontWeight="Bold" FontSize="18" Margin="0,0,0,5"/>
<TextBlock Grid.Row="1" x:Name="VersionText" Text="Version 1.0.0" FontSize="12" Foreground="{DynamicResource ForegroundMutedBrush}" Margin="0,0,0,20"/>
<TextBlock Grid.Row="1" x:Name="VersionText" Text="Version 1.1.0" FontSize="12" Foreground="{DynamicResource ForegroundMutedBrush}" Margin="0,0,0,20"/>

<!-- Copyright -->
<StackPanel Grid.Row="2" Margin="0,0,0,20">
Expand Down
2 changes: 1 addition & 1 deletion Dashboard/Dashboard.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<UseWPF>true</UseWPF>
<AssemblyName>PerformanceMonitorDashboard</AssemblyName>
<Product>SQL Server Performance Monitor Dashboard</Product>
<Version>1.0.0</Version>
<Version>1.1.0</Version>
<Company>Darling Data, LLC</Company>
<Copyright>Copyright © 2026 Darling Data, LLC</Copyright>
<ApplicationIcon>EDD.ico</ApplicationIcon>
Expand Down
2 changes: 1 addition & 1 deletion Dashboard/Mcp/McpHostService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ protected override async Task ExecuteAsync(CancellationToken stoppingToken)
options.ServerInfo = new()
{
Name = "PerformanceMonitorDashboard",
Version = "1.0.0"
Version = "1.1.0"
};
options.ServerInstructions = McpInstructions.Text;
})
Expand Down
2 changes: 1 addition & 1 deletion Lite/Mcp/McpHostService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ protected override async Task ExecuteAsync(CancellationToken stoppingToken)
options.ServerInfo = new()
{
Name = "PerformanceMonitorLite",
Version = "1.0.0"
Version = "1.1.0"
};
options.ServerInstructions = McpInstructions.Text;
})
Expand Down
2 changes: 1 addition & 1 deletion Lite/PerformanceMonitorLite.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<AssemblyName>PerformanceMonitorLite</AssemblyName>
<RootNamespace>PerformanceMonitorLite</RootNamespace>
<Product>SQL Server Performance Monitor Lite</Product>
<Version>1.0.0</Version>
<Version>1.1.0</Version>
<Company>Darling Data, LLC</Company>
<Copyright>Copyright © 2026 Darling Data, LLC</Copyright>
<Description>Lightweight SQL Server performance monitoring - no installation required on target servers</Description>
Expand Down
2 changes: 1 addition & 1 deletion Lite/Windows/AboutWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
FontSize="18" FontWeight="Bold" Foreground="{DynamicResource ForegroundBrush}"
Margin="0,0,0,8"/>

<TextBlock Grid.Row="1" x:Name="VersionText" Text="Version 1.0.0"
<TextBlock Grid.Row="1" x:Name="VersionText" Text="Version 1.1.0"
Foreground="{DynamicResource ForegroundMutedBrush}" Margin="0,0,0,16"/>

<TextBlock Grid.Row="2" TextWrapping="Wrap" Foreground="{DynamicResource ForegroundBrush}" Margin="0,0,0,8">
Expand Down
Loading