Skip to content
Open
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
4 changes: 2 additions & 2 deletions TuneUp/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.0.5")]
[assembly: AssemblyFileVersion("2.0.5")]
[assembly: AssemblyVersion("2.0.6")]
[assembly: AssemblyFileVersion("2.0.6")]
7 changes: 4 additions & 3 deletions TuneUp/TuneUpWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@
<Setter Property="SnapsToDevicePixels" Value="True" />
<Setter Property="Background" Value="{StaticResource ExtensionBackgroundColor}" />
<Setter Property="HorizontalAlignment" Value="Stretch" />
<Setter Property="IsReadOnly" Value="True" />
</Style>
<!-- DataGridColumnHeader style -->
<Style x:Key="ColumnHeaderStyleTuneUp" TargetType="DataGridColumnHeader">
Expand Down Expand Up @@ -598,7 +599,7 @@
Loaded="ScrollViewer_Loaded">
<DataGrid.Columns>
<!-- Execution Order -->
<DataGridTextColumn Width="40" Binding="{Binding Converter={StaticResource ExecutionOrderNumberConverter}}">
<DataGridTextColumn Width="40" Binding="{Binding Converter={StaticResource ExecutionOrderNumberConverter}}" >
<DataGridTextColumn.ElementStyle>
<Style BasedOn="{StaticResource ExecutionOrderTextBlockStyle}" TargetType="TextBlock">
<Setter Property="Text" Value="{Binding ExecutionOrderNumber}" />
Expand Down Expand Up @@ -662,15 +663,15 @@
Loaded="ScrollViewer_Loaded">
<DataGrid.Columns>
<!-- Execution Order -->
<DataGridTextColumn Width="40" />
<DataGridTextColumn Width="40"/>
<!-- Node Name -->
<DataGridTemplateColumn Width="*">
<DataGridTemplateColumn.CellTemplate>
<StaticResource ResourceKey="NodeNameTemplate" />
</DataGridTemplateColumn.CellTemplate>
</DataGridTemplateColumn>
<!-- Execution Time -->
<DataGridTextColumn Width="145" />
<DataGridTextColumn Width="145" IsReadOnly="True"/>
</DataGrid.Columns>
</DataGrid>
</StackPanel>
Expand Down
2 changes: 1 addition & 1 deletion TuneUp/manifests/pkg.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"license": "MIT",
"file_hash": null,
"name": "TuneUp",
"version": "2.0.5",
"version": "2.0.6",
"description": "On Dynamo 2.5–2.19 (.NET 4.8), use TuneUp versions up to 1.0.7.\r\nOn Dynamo 3.0+ (.NET 8), use TuneUp version 2.0.0+.\r\n\r\nTuneUp is a view extension for analyzing the performance of Dynamo graphs. TuneUp allows you to see overall graph execution time, per-node execution time, execution time of groups, and other helpful information. With TuneUp, you can rerun all nodes, including ones that are normally skipped for optimization/caching during repeated runs of a graph. This enables you to compare the actual execution times between multiple runs. Read more here: https://dynamobim.org/tuneup-extension-explore-your-node-and-graph-execution-times/. \r\n\r\nKnown issues:\r\n1. TuneUp does not work in a custom node workspace.\r\n2. TuneUp binaries are not semantically versioned and are not intended to be built on top of as an API. Do not treat these binaries like DynamoCore.",
"group": "",
"keywords": [
Expand Down
Loading