Skip to content

Commit

Permalink
v2.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-ward committed Apr 16, 2020
1 parent ed4243f commit ff5c98c
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 6 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
# Changelog
All notable changes to this project will be documented in this file.

## 2.2.3 - 2020-04-16

### Fixed
- Handle DragMove() being weird sometimes [afa8b49](https://github.com/mike-ward/tweetz/commit/afa8b497cafeaa8a532c7657b7ee54bd3d388532)
- CPU usage constantly 2-5% after posting an update [2199964](https://github.com/mike-ward/tweetz/commit/21999640960c5075d134107eb1e7fccd474da299)

### Changed
- Increase min width of profile control [7e84031](https://github.com/mike-ward/tweetz/commit/7e84031c20dbd11b3e9a116baf1f22aede41d6eb)
- Supppress crash reports from debug sessions [1a46798](https://github.com/mike-ward/tweetz/commit/1a467982f6d41aa1ca8e04c606a5db09f4bdec86)

## 2.2.1 - 2020-04-05
### Fixed

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.2.1";
public static string Version => "v2.2.3";
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.2.1.0" name="tweetz.core.exe" />
<assemblyIdentity version="2.2.3.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
6 changes: 3 additions & 3 deletions src/tweetz.core/tweetz.core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@
<UseWindowsForms>true</UseWindowsForms>
<ApplicationIcon>app.ico</ApplicationIcon>
<ServerGarbageCollection>false</ServerGarbageCollection>
<Version>2.2.1</Version>
<Version>2.2.3</Version>
<Description>A gadget-like desktop twitter client.</Description>
<Copyright>Copyright 2020, Mike Ward</Copyright>
<PackageProjectUrl>https://github.com/mike-ward/tweetz</PackageProjectUrl>
<RepositoryUrl>https://github.com/mike-ward/tweetz</RepositoryUrl>
<NeutralLanguage>en-US</NeutralLanguage>
<RunAnalyzersDuringBuild>true</RunAnalyzersDuringBuild>
<RunAnalyzersDuringLiveAnalysis>true</RunAnalyzersDuringLiveAnalysis>
<AssemblyVersion>2.2.1.0</AssemblyVersion>
<FileVersion>2.2.1.0</FileVersion>
<AssemblyVersion>2.2.3.0</AssemblyVersion>
<FileVersion>2.2.3.0</FileVersion>
<ApplicationManifest>app.manifest</ApplicationManifest>
</PropertyGroup>

Expand Down
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.2.1"
#define MyAppVersion "2.2.3"
#define MyAppPublisher "Mike Ward"
#define MyAppURL "https://mike-ward.net/tweetz"
#define MyAppExeName "tweetz.core.exe"
Expand Down

0 comments on commit ff5c98c

Please sign in to comment.