Skip to content

Commit

Permalink
v2022.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-ward committed Nov 20, 2022
1 parent 29ec509 commit 0c93ea7
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 12 deletions.
19 changes: 16 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,28 @@
# Changelog
All notable changes to this project will be documented in this file.

## 2022.3 - 2022-11-20

### Added
- Visual indicator of new messages when minimized [#125](https://github.com/mike-ward/tweetz/issues/125)
- Sound notification for new tweets [#113](https://github.com/mike-ward/tweetz/issues/113)
- Zoom in/out on images with mouse wheel [#91](https://github.com/mike-ward/tweetz/issues/91)

### Changed
- Upgraded dotnet runtime to v7.0

### Fixed
- Pictures are often truncated, showing only the top. [#118](https://github.com/mike-ward/tweetz/issues/118)

## 2022.2 - 2022-01-09

### Added
- Add option to hide close button in title bar #104
- Add option to hide close button in title bar [#104](https://github.com/mike-ward/tweetz/issues/104)

## 2022.1 - 2022-01-01

### Added
- Add options to hide retweets and tweets with no media #100
- Add options to hide retweets and tweets with no media [#100](https://github.com/mike-ward/tweetz/issues/100)

### Changed
- Update runtime to .NET 6.0
Expand All @@ -20,7 +33,7 @@ All notable changes to this project will be documented in this file.
- GDI font metric mode option

### Fixed
- hide minimized window when system tray setting is true #41
- hide minimized window when system tray setting is true [#41](https://github.com/mike-ward/tweetz/issues/41)
- Fix images not showing at times

### 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 => "v2022.2";
public static string Version => "v2022.3";
public static string Copyright => "Copyright 2022, Mike Ward";
}
}
1 change: 1 addition & 0 deletions src/tweetz.core/Resources/Strings.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -125,4 +125,5 @@
x:Key="tips-profiles"
xml:space="preserve">Specify an alternate profile on the command line or shortcut.&#x0a;(e.g. tweetz.core.exe account2)</sys:String>
<sys:String x:Key="tips-volume">Mouse wheel controls volume when playing clips</sys:String>
<sys:String x:Key="tips-images">Mouse wheel zooms in/out when viewing images</sys:String>
</ResourceDictionary>
1 change: 1 addition & 0 deletions src/tweetz.core/Views/SettingsBlock/SettingsBlockTips.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,6 @@
<controls1:BulletedItem BulletText="{StaticResource tips-hide-image}" />
<controls1:BulletedItem BulletText="{StaticResource tips-profiles}" />
<controls1:BulletedItem BulletText="{StaticResource tips-volume}" />
<controls1:BulletedItem BulletText="{StaticResource tips-images}" />
</StackPanel>
</UserControl>
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="2021.4.0.0" name="tweetz.core.exe"/>
<assemblyIdentity version="2022.3.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
6 changes: 3 additions & 3 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.2</AssemblyVersion>
<FileVersion>2022.2</FileVersion>
<Version>2022.2</Version>
<AssemblyVersion>2022.3</AssemblyVersion>
<FileVersion>2022.3</FileVersion>
<Version>2022.3</Version>
</PropertyGroup>

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

0 comments on commit 0c93ea7

Please sign in to comment.