Skip to content

Commit

Permalink
v2022.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-ward committed Jan 9, 2022
1 parent 9292396 commit b4cbde0
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 10 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Changelog
All notable changes to this project will be documented in this file.

## 2022.2 - 2022-01-09

### Added
- Add option to hide close button in title bar #104

## 2022.1 - 2022-01-01

### Added
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 => "v2022.1";
public static string Version => "v2022.2";
public static string Copyright => "Copyright 2022, Mike Ward";
}
}
8 changes: 4 additions & 4 deletions src/tweetz.core/tweetz.core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<AnalysisLevel>latest</AnalysisLevel>
<ApplicationIcon>app.ico</ApplicationIcon>
<ApplicationManifest>app.manifest</ApplicationManifest>
<Copyright>Copyright 2021, Mike Ward</Copyright>
<Copyright>Copyright 2022, Mike Ward</Copyright>
<Description>A gadget-like desktop twitter client.</Description>
<NeutralLanguage>en-US</NeutralLanguage>
<Nullable>Enable</Nullable>
Expand All @@ -22,9 +22,9 @@
</PropertyGroup>

<PropertyGroup>
<AssemblyVersion>2022.1</AssemblyVersion>
<FileVersion>2022.1</FileVersion>
<Version>2022.1</Version>
<AssemblyVersion>2022.2</AssemblyVersion>
<FileVersion>2022.2</FileVersion>
<Version>2022.2</Version>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'">
Expand Down
8 changes: 4 additions & 4 deletions src/twitter.core/twitter.core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<AnalysisLevel>latest</AnalysisLevel>
<Copyright>Copyright 2021, Mike Ward</Copyright>
<Copyright>Copyright 2022, Mike Ward</Copyright>
<Description>A gadget-like desktop twitter client.</Description>
<NeutralLanguage>en-US</NeutralLanguage>
<Nullable>Enable</Nullable>
Expand All @@ -18,9 +18,9 @@
</PropertyGroup>

<PropertyGroup>
<AssemblyVersion>2022.1</AssemblyVersion>
<FileVersion>2022.1</FileVersion>
<Version>2022.1</Version>
<AssemblyVersion>2022.2</AssemblyVersion>
<FileVersion>2022.2</FileVersion>
<Version>2022.2</Version>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'">
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 "2022.1"
#define MyAppVersion "2022.2"
#define MyAppPublisher "Mike Ward"
#define MyAppURL "https://mike-ward.net/tweetz"
#define MyAppExeName "tweetz.core.exe"
Expand Down

0 comments on commit b4cbde0

Please sign in to comment.