Skip to content

Commit

Permalink
v2.8.6
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-ward committed Nov 11, 2020
1 parent 31801c7 commit f25a389
Show file tree
Hide file tree
Showing 6 changed files with 45 additions and 27 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Changelog
All notable changes to this project will be documented in this file.

## 2.8.6 - 2020-11-11

### Changed

- Update to .Net 5.0

## 2.8.5 - 2020-09-27

### Changed
Expand Down
2 changes: 1 addition & 1 deletion src/tweetz.core/Models/VersionInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
{
public static class VersionInfo
{
public static string Version => "v2.8.5";
public static string Version => "v2.8.6";
public static string Copyright => "Copyright 2020, Mike Ward";
}
}
2 changes: 1 addition & 1 deletion src/tweetz.core/app.manifest
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1">
<assemblyIdentity version="2.8.5.0" name="tweetz.core.exe" />
<assemblyIdentity version="2.8.6.0" name="tweetz.core.exe" />
<!-- Indicates that the application is DPI-aware and will not be automatically scaled by Windows at higher
DPIs. Windows Presentation Foundation (WPF) applications are automatically DPI-aware and do not need
to opt in. Windows Forms applications targeting .NET Framework 4.6 that opt into this setting, should
Expand Down
34 changes: 19 additions & 15 deletions src/tweetz.core/tweetz.core.csproj
Original file line number Diff line number Diff line change
@@ -1,27 +1,31 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net5.0-windows</TargetFramework>
<UseWPF>true</UseWPF>
<Nullable>Enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<AnalysisLevel>latest</AnalysisLevel>
<ApplicationIcon>app.ico</ApplicationIcon>
<ServerGarbageCollection>false</ServerGarbageCollection>
<Version>2.8.5</Version>
<FileVersion>2.8.5</FileVersion>
<AssemblyVersion>2.8.5</AssemblyVersion>
<Description>A gadget-like desktop twitter client.</Description>
<ApplicationManifest>app.manifest</ApplicationManifest>
<Copyright>Copyright 2020, Mike Ward</Copyright>
<Description>A gadget-like desktop twitter client.</Description>
<NeutralLanguage>en-US</NeutralLanguage>
<Nullable>Enable</Nullable>
<OutputType>WinExe</OutputType>
<PackageProjectUrl>https://github.com/mike-ward/tweetz</PackageProjectUrl>
<Platforms>x86</Platforms>
<PublishReadyToRun>false</PublishReadyToRun>
<RepositoryUrl>https://github.com/mike-ward/tweetz</RepositoryUrl>
<NeutralLanguage>en-US</NeutralLanguage>
<RunAnalyzersDuringBuild>true</RunAnalyzersDuringBuild>
<RunAnalyzersDuringLiveAnalysis>true</RunAnalyzersDuringLiveAnalysis>
<AnalysisLevel>latest</AnalysisLevel>
<ApplicationManifest>app.manifest</ApplicationManifest>
<Platforms>x86</Platforms>
<PublishReadyToRun>false</PublishReadyToRun>
<ServerGarbageCollection>false</ServerGarbageCollection>
<TargetFramework>net5.0-windows</TargetFramework>
<TieredCompilation>true</TieredCompilation>
<UseWindowsForms>true</UseWindowsForms>
<UseWPF>true</UseWPF>
</PropertyGroup>

<PropertyGroup>
<AssemblyVersion>2.8.6</AssemblyVersion>
<FileVersion>2.8.6</FileVersion>
<Version>2.8.6</Version>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'">
Expand Down
26 changes: 17 additions & 9 deletions src/twitter.core/twitter.core.csproj
Original file line number Diff line number Diff line change
@@ -1,21 +1,29 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net5.0-windows</TargetFramework>
<AnalysisLevel>latest</AnalysisLevel>
<Copyright>Copyright 2020, Mike Ward</Copyright>
<Description>A gadget-like desktop twitter client.</Description>
<NeutralLanguage>en-US</NeutralLanguage>
<Nullable>Enable</Nullable>
<Version>2.0.0</Version>
<Description />
<PackageProjectUrl>https://github.com/mike-ward/tweetz</PackageProjectUrl>
<PackageProjectUrl>https://github.com/mike-ward/tweetz</PackageProjectUrl>
<Platforms>x86</Platforms>
<PublishReadyToRun>false</PublishReadyToRun>
<RepositoryUrl>https://github.com/mike-ward/tweetz</RepositoryUrl>
<Copyright>Copyright 2020, Mike Ward</Copyright>
<NeutralLanguage>en-US</NeutralLanguage>
<RepositoryUrl>https://github.com/mike-ward/tweetz</RepositoryUrl>
<RunAnalyzersDuringBuild>true</RunAnalyzersDuringBuild>
<RunAnalyzersDuringLiveAnalysis>true</RunAnalyzersDuringLiveAnalysis>
<AnalysisLevel>latest</AnalysisLevel>
<Platforms>x86</Platforms>
<PublishReadyToRun>false</PublishReadyToRun>
<TargetFramework>net5.0-windows</TargetFramework>
<TieredCompilation>true</TieredCompilation>
</PropertyGroup>

<PropertyGroup>
<AssemblyVersion>2.8.6</AssemblyVersion>
<FileVersion>2.8.6</FileVersion>
<Version>2.8.6</Version>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'">
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<WarningsAsErrors />
Expand All @@ -27,6 +35,6 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="HtmlAgilityPack" Version="1.11.27" />
<PackageReference Include="HtmlAgilityPack" Version="1.11.28" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion tweetz.core.setup.iss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "Tweetz"
#define MyAppVersion "2.8.5"
#define MyAppVersion "2.8.6"
#define MyAppPublisher "Mike Ward"
#define MyAppURL "https://mike-ward.net/tweetz"
#define MyAppExeName "tweetz.core.exe"
Expand Down

0 comments on commit f25a389

Please sign in to comment.