Skip to content

Commit d908d42

Browse files
authored
Merge pull request #1757 from tig/Release_v1_6_4
Release v1.6.4
2 parents efb654e + 4763313 commit d908d42

File tree

6 files changed

+46
-29
lines changed

6 files changed

+46
-29
lines changed

Example/Example.csproj

+7-4
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,13 @@
22
<PropertyGroup>
33
<OutputType>Exe</OutputType>
44
<TargetFramework>net6.0</TargetFramework>
5-
<AssemblyVersion>1.6.2.0</AssemblyVersion>
6-
<FileVersion>1.6.2.0</FileVersion>
7-
<InformationalVersion>1.6.2+Branch.main.Sha.b6eeb6321685af474ffc17b1390ff1d4894a90c5</InformationalVersion>
8-
<Version>1.6.2</Version>
5+
<!-- Version numbers are automatically updated by gitversion when a release is released -->
6+
<!-- In the source tree the version will always be 1.0 for all projects. -->
7+
<!-- Do not modify these. -->
8+
<AssemblyVersion>1.0</AssemblyVersion>
9+
<FileVersion>1.0</FileVersion>
10+
<Version>1.0</Version>
11+
<InformationalVersion>1.0</InformationalVersion>
912
</PropertyGroup>
1013
<ItemGroup>
1114
<PackageReference Include="NStack.Core" Version="0.17.1" />

ReactiveExample/ReactiveExample.csproj

+7-4
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,13 @@
22
<PropertyGroup>
33
<OutputType>Exe</OutputType>
44
<TargetFramework>net6.0</TargetFramework>
5-
<AssemblyVersion>1.6.2.0</AssemblyVersion>
6-
<FileVersion>1.6.2.0</FileVersion>
7-
<InformationalVersion>1.6.2+Branch.main.Sha.b6eeb6321685af474ffc17b1390ff1d4894a90c5</InformationalVersion>
8-
<Version>1.6.2</Version>
5+
<!-- Version numbers are automatically updated by gitversion when a release is released -->
6+
<!-- In the source tree the version will always be 1.0 for all projects. -->
7+
<!-- Do not modify these. -->
8+
<AssemblyVersion>1.0</AssemblyVersion>
9+
<FileVersion>1.0</FileVersion>
10+
<Version>1.0</Version>
11+
<InformationalVersion>1.0</InformationalVersion>
912
</PropertyGroup>
1013
<ItemGroup>
1114
<PackageReference Include="ReactiveUI.Fody" Version="18.0.10" />

StandaloneExample/StandaloneExample.csproj

+1-5
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,8 @@
33
<LangVersion>latest</LangVersion>
44
<OutputType>Exe</OutputType>
55
<TargetFramework>net6.0</TargetFramework>
6-
<AssemblyVersion>1.6.2.0</AssemblyVersion>
7-
<FileVersion>1.6.2.0</FileVersion>
8-
<InformationalVersion>1.6.2+Branch.main.Sha.b6eeb6321685af474ffc17b1390ff1d4894a90c5</InformationalVersion>
9-
<Version>1.6.2</Version>
106
</PropertyGroup>
117
<ItemGroup>
12-
<PackageReference Include="Terminal.Gui" Version="1.4.0" />
8+
<PackageReference Include="Terminal.Gui" Version="*" />
139
</ItemGroup>
1410
</Project>

Terminal.Gui/Terminal.Gui.csproj

+16-7
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,14 @@
66
<DefineConstants>TRACE;DEBUG_IDISPOSABLE</DefineConstants>
77
<DebugType>portable</DebugType>
88
</PropertyGroup>
9-
<!-- Version numbers are automatically updated by gitversion. Do not modify here. -->
109
<PropertyGroup>
11-
<AssemblyVersion>1.6.2.0</AssemblyVersion>
12-
<FileVersion>1.6.2.0</FileVersion>
13-
<Version>1.6.2</Version>
14-
<InformationalVersion>1.6.2+Branch.main.Sha.b6eeb6321685af474ffc17b1390ff1d4894a90c5</InformationalVersion>
10+
<!-- Version numbers are automatically updated by gitversion when a release is released -->
11+
<!-- In the source tree the version will always be 1.0 for all projects. -->
12+
<!-- Do not modify these. -->
13+
<AssemblyVersion>1.0</AssemblyVersion>
14+
<FileVersion>1.0</FileVersion>
15+
<Version>1.0</Version>
16+
<InformationalVersion>1.0</InformationalVersion>
1517
</PropertyGroup>
1618
<ItemGroup>
1719
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.2" PrivateAssets="all" />
@@ -61,8 +63,8 @@
6163
<PackageId>Terminal.Gui</PackageId>
6264
<PackageLicenseExpression>MIT</PackageLicenseExpression>
6365
<PackageProjectUrl>https://github.com/migueldeicaza/gui.cs/</PackageProjectUrl>
64-
<!--<RepositoryUrl>https://github.com/migueldeicaza/gui.cs.git</RepositoryUrl>
65-
<RepositoryType>git</RepositoryType>-->
66+
<RepositoryUrl>https://github.com/migueldeicaza/gui.cs.git</RepositoryUrl>
67+
<RepositoryType>git</RepositoryType>
6668
<IncludeSymbols>true</IncludeSymbols>
6769
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
6870
<!-- Publish the repository URL in the built .nupkg (in the NuSpec <Repository> element) -->
@@ -77,6 +79,13 @@
7779
<Summary>A toolkit for building rich console apps for .NET that works on Windows, Mac, and Linux/Unix.</Summary>
7880
<Title>Terminal.Gui - Cross Platform Terminal user interface toolkit for .NET</Title>
7981
<PackageReleaseNotes>
82+
v1.6.4
83+
* Fixes #1750. Erroneous suppression of Button Text updates.
84+
* Fixes #1753. Update all .csproj files with Release version # upon Release
85+
* Fixes #1742. Explicitly dispose old TreeView instances in UICatalog scenario
86+
* Fixes #1748. Add horizontal scroll idicators to TableView
87+
* StandaloneExample: Updated to use latest version and added help menu
88+
8089
v1.6.0
8190
* Adds ColorPicker control
8291
* Adds Context Menu to TreeView

UICatalog/UICatalog.csproj

+8-5
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,15 @@
22
<PropertyGroup>
33
<OutputType>Exe</OutputType>
44
<TargetFramework>net6.0</TargetFramework>
5-
<StartupObject>UICatalog.UICatalogApp</StartupObject>
6-
<AssemblyVersion>1.6.2.0</AssemblyVersion>
75
<LangVersion>8.0</LangVersion>
8-
<FileVersion>1.6.2.0</FileVersion>
9-
<InformationalVersion>1.6.2+Branch.main.Sha.b6eeb6321685af474ffc17b1390ff1d4894a90c5</InformationalVersion>
10-
<Version>1.6.2</Version>
6+
<StartupObject>UICatalog.UICatalogApp</StartupObject>
7+
<!-- Version numbers are automatically updated by gitversion when a release is released -->
8+
<!-- In the source tree the version will always be 1.0 for all projects. -->
9+
<!-- Do not modify these. -->
10+
<AssemblyVersion>1.0</AssemblyVersion>
11+
<FileVersion>1.0</FileVersion>
12+
<Version>1.0</Version>
13+
<InformationalVersion>1.0</InformationalVersion>
1114
</PropertyGroup>
1215
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
1316
<DefineConstants>TRACE</DefineConstants>

UnitTests/UnitTests.csproj

+7-4
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,13 @@
33
<TargetFramework>net6.0</TargetFramework>
44
<IsPackable>false</IsPackable>
55
<UseDataCollector />
6-
<AssemblyVersion>1.6.2.0</AssemblyVersion>
7-
<FileVersion>1.6.2.0</FileVersion>
8-
<InformationalVersion>1.6.2+Branch.main.Sha.b6eeb6321685af474ffc17b1390ff1d4894a90c5</InformationalVersion>
9-
<Version>1.6.2</Version>
6+
<!-- Version numbers are automatically updated by gitversion when a release is released -->
7+
<!-- In the source tree the version will always be 1.0 for all projects. -->
8+
<!-- Do not modify these. -->
9+
<AssemblyVersion>1.0</AssemblyVersion>
10+
<FileVersion>1.0</FileVersion>
11+
<Version>1.0</Version>
12+
<InformationalVersion>1.0</InformationalVersion>
1013
</PropertyGroup>
1114
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
1215
<DefineConstants>TRACE</DefineConstants>

0 commit comments

Comments
 (0)