Skip to content

Commit

Permalink
v2022.4
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-ward committed Dec 2, 2022
1 parent f7ff8b0 commit f3bcca9
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 11 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.

## 2022.4 - 2022-12-02

### Changed
- Changed default notification sound to classic cricket chirp
- Debounced internal collection change notifications

## 2022.3 - 2022-11-20

### 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.3";
public static string Version => "v2022.4";
public static string Copyright => "Copyright 2022, 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="2022.3.0.0" name="tweetz.core.exe"/>
<assemblyIdentity version="2022.4.0.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
10 changes: 5 additions & 5 deletions src/tweetz.core/tweetz.core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
</PropertyGroup>

<PropertyGroup>
<AssemblyVersion>2022.3</AssemblyVersion>
<FileVersion>2022.3</FileVersion>
<Version>2022.3</Version>
<AssemblyVersion>2022.4</AssemblyVersion>
<FileVersion>2022.4</FileVersion>
<Version>2022.4</Version>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'">
Expand Down Expand Up @@ -67,8 +67,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AppCenter.Analytics" Version="5.0.0" />
<PackageReference Include="Microsoft.AppCenter.Crashes" Version="5.0.0" />
<PackageReference Include="Microsoft.AppCenter.Analytics" Version="5.0.1" />
<PackageReference Include="Microsoft.AppCenter.Crashes" Version="5.0.1" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="7.0.0" />
<PackageReference Include="Microsoft.VisualStudio.Threading.Analyzers" Version="17.4.27">
<PrivateAssets>all</PrivateAssets>
Expand Down
6 changes: 3 additions & 3 deletions src/twitter.core/twitter.core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
</PropertyGroup>

<PropertyGroup>
<AssemblyVersion>2022.3</AssemblyVersion>
<FileVersion>2022.3</FileVersion>
<Version>2022.3</Version>
<AssemblyVersion>2022.4</AssemblyVersion>
<FileVersion>2022.4</FileVersion>
<Version>2022.4</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.3"
#define MyAppVersion "2022.4"
#define MyAppPublisher "Mike Ward"
#define MyAppURL "https://mike-ward.net/tweetz"
#define MyAppExeName "tweetz.core.exe"
Expand Down

0 comments on commit f3bcca9

Please sign in to comment.