Skip to content

Commit

Permalink
Merge pull request #1089 from Caphyon/release-v8.2.0
Browse files Browse the repository at this point in the history
Update release notes
  • Loading branch information
mariru27 authored Feb 15, 2022
2 parents a14ad93 + ed7e933 commit af44278
Show file tree
Hide file tree
Showing 2 changed files with 94 additions and 97 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
<Metadata>
<Identity Id="Caphyon.705559db-5755-43fa-a023-41a3b14d2935" Version="8.1.1.43" Language="en-US" Publisher="Caphyon" />
<Identity Id="Caphyon.705559db-5755-43fa-a023-41a3b14d2935" Version="8.2.0.48" Language="en-US" Publisher="Caphyon" />
<DisplayName>Clang Power Tools</DisplayName>
<Description xml:space="preserve">A tool bringing clang-tidy magic to Visual Studio C++ developers.</Description>
<MoreInfo>http://www.clangpowertools.com/QaA</MoreInfo>
Expand Down
189 changes: 93 additions & 96 deletions ClangPowerTools/ClangPowerToolsShared/MVVM/Views/ReleaseNotesView.xaml
Original file line number Diff line number Diff line change
@@ -1,29 +1,33 @@
<Window
x:Class="ClangPowerTools.MVVM.Views.ReleaseNotesView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:controls="clr-namespace:ClangPowerTools.MVVM.Views.Components"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:ClangPowerTools"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
Title="Release Notes"
Width="550"
Height="710"
Icon="/ClangPowerTools;component/Resources/ClangPowerToolsIco.ico"
ResizeMode="NoResize"
WindowStartupLocation="CenterScreen"
mc:Ignorable="d">
<Window x:Class="ClangPowerTools.MVVM.Views.ReleaseNotesView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:controls="clr-namespace:ClangPowerTools.MVVM.Views.Components"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:ClangPowerTools"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
Title="Release Notes"
Width="550"
Height="710"
Icon="/ClangPowerTools;component/Resources/ClangPowerToolsIco.ico"
ResizeMode="NoResize"
WindowStartupLocation="CenterScreen"
mc:Ignorable="d">

<StackPanel>

<StackPanel.Resources>
<Style TargetType="{x:Type Hyperlink}">
<Setter Property="FocusVisualStyle" Value="{x:Null}" />
<Setter Property="Foreground" Value="#FFFAA8B4" />
<Setter Property="TextBlock.TextDecorations" Value="{x:Null}" />
<Setter Property="FocusVisualStyle"
Value="{x:Null}" />
<Setter Property="Foreground"
Value="#FFFAA8B4" />
<Setter Property="TextBlock.TextDecorations"
Value="{x:Null}" />
<Style.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="Foreground" Value="#FFFAD4DB" />
<Trigger Property="IsMouseOver"
Value="True">
<Setter Property="Foreground"
Value="#FFFAD4DB" />
</Trigger>
</Style.Triggers>
</Style>
Expand Down Expand Up @@ -51,43 +55,40 @@

</Grid.ColumnDefinitions>

<Image
Grid.Row="0"
Grid.Column="1"
Width="70"
Height="70"
Margin="0,5,0,0"
HorizontalAlignment="Center"
VerticalAlignment="Center"
Source="/ClangPowerTools;component/Resources/CPTLogo.png" />

<TextBlock
Grid.Row="1"
Grid.Column="1"
HorizontalAlignment="Center"
FontSize="32"
Text="Clang Power Tools" />

<TextBlock
Grid.Row="2"
Grid.Column="1"
HorizontalAlignment="Center"
FontSize="15"
Foreground="#3A3B40"
Text="version 8.1.1" />

<ListView
Grid.Row="3"
Grid.Column="1"
Height="420"
Margin="0,20,0,0"
Background="Transparent"
Focusable="False"
ScrollViewer.HorizontalScrollBarVisibility="Disabled">
<Image Grid.Row="0"
Grid.Column="1"
Width="70"
Height="70"
Margin="0,5,0,0"
HorizontalAlignment="Center"
VerticalAlignment="Center"
Source="/ClangPowerTools;component/Resources/CPTLogo.png" />

<TextBlock Grid.Row="1"
Grid.Column="1"
HorizontalAlignment="Center"
FontSize="32"
Text="Clang Power Tools" />

<TextBlock Grid.Row="2"
Grid.Column="1"
HorizontalAlignment="Center"
FontSize="15"
Foreground="#3A3B40"
Text="version 8.2.0" />

<ListView Grid.Row="3"
Grid.Column="1"
Height="420"
Margin="0,20,0,0"
Background="Transparent"
Focusable="False"
ScrollViewer.HorizontalScrollBarVisibility="Disabled">

<ListView.ItemContainerStyle>
<Style TargetType="{x:Type ListViewItem}">
<Setter Property="Background" Value="Transparent" />
<Setter Property="Background"
Value="Transparent" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type ListViewItem}">
Expand All @@ -98,55 +99,51 @@
</Style>
</ListView.ItemContainerStyle>

<!-- What's new --><!--
<TextBox
Margin="5,20,0,0"
HorizontalAlignment="Left"
Background="Transparent"
BorderThickness="0"
FontSize="22"
IsReadOnly="True"
Text="What's New" />
<TextBox
Margin="15,15,0,0"
HorizontalAlignment="Left"
Background="Transparent"
BorderThickness="0"
FontSize="16"
IsReadOnly="True"
Text="• Run tidy, format and compile on files with extension .cu"
TextWrapping="Wrap" />-->

<!--Bug Fixes-->
<TextBox
Margin="5,35,0,0"
HorizontalAlignment="Left"
Background="Transparent"
BorderThickness="0"
FontSize="22"
IsReadOnly="True"
Text="Bug Fixes" />

<TextBox
Margin="15,5,0,0"
HorizontalAlignment="Left"
Background="Transparent"
BorderThickness="0"
FontSize="15"
IsReadOnly="True"
Text="• Dialogs stay on top of every window in the system"
TextWrapping="Wrap" />

<TextBox
<!--What's new-->
<TextBox Margin="5,20,0,0"
HorizontalAlignment="Left"
Background="Transparent"
BorderThickness="0"
FontSize="22"
IsReadOnly="True"
Text="What's New" />

<TextBox Margin="15,15,0,0"
HorizontalAlignment="Left"
Background="Transparent"
BorderThickness="0"
FontSize="16"
IsReadOnly="True"
Text="• LLVM 13.0.1"
TextWrapping="Wrap" />

<!--Bug Fixes-->
<TextBox Margin="5,20,0,0"
HorizontalAlignment="Left"
Background="Transparent"
BorderThickness="0"
FontSize="22"
IsReadOnly="True"
Text="Bug Fixes" />

<TextBox Margin="15,15,0,0"
HorizontalAlignment="Left"
Background="Transparent"
BorderThickness="0"
FontSize="16"
IsReadOnly="True"
Text="• False triggers for PowerShell script auto-updater"
TextWrapping="Wrap" />

<!--<TextBox
Margin="15,5,0,0"
HorizontalAlignment="Left"
Background="Transparent"
BorderThickness="0"
FontSize="15"
IsReadOnly="True"
Text="• Can't run tidy or compile in offline mode"
TextWrapping="Wrap" />
TextWrapping="Wrap" />-->
</ListView>
</Grid>
</StackPanel>
Expand Down

0 comments on commit af44278

Please sign in to comment.