Skip to content

Commit

Permalink
v2021.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-ward committed Sep 15, 2021
1 parent 7886d7a commit 017b308
Show file tree
Hide file tree
Showing 6 changed files with 33 additions and 11 deletions.
26 changes: 24 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,30 @@
__zmeta_tags:
__zmeta_project:
# Changelog
All notable changes to this project will be documented in this file.

#2021.3 - 2021-09-15

### Added
- Alternate tweet layout
![Imgur](https://i.imgur.com/QjuJJMr.png)
- Option to hide specific images (shift-click image)
- Images as links option
- Links as \[link\] option
- Translate API key (ping me on how use)
- Private setting to change font (no UI, in settings file only)

### Fixed
- Better image layout
- Handle images with embedded DPI correctly
- Observable Collection fires fewer events

### Changed
- New user profile view
- New public translation API
- Shrink profile images by 5 dips
- Cache images using browser cache settings
- Dotnet 6, RC1
- Jab Dependency injection library

## 2021.2 - 2021-04-10

### 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 => "v2021.2";
public static string Version => "v2021.3";
public static string Copyright => "Copyright 2021, 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="2021.2.0.0" name="tweetz.core.exe" />
<assemblyIdentity version="2021.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>2021.2</AssemblyVersion>
<FileVersion>2021.2</FileVersion>
<Version>2021.2</Version>
<AssemblyVersion>2021.3</AssemblyVersion>
<FileVersion>2021.4</FileVersion>
<Version>2021.5</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>2021.2</AssemblyVersion>
<FileVersion>2021.2</FileVersion>
<Version>2021.2</Version>
<AssemblyVersion>2021.3</AssemblyVersion>
<FileVersion>2021.3</FileVersion>
<Version>2021.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 "2021.2"
#define MyAppVersion "2021.3"
#define MyAppPublisher "Mike Ward"
#define MyAppURL "https://mike-ward.net/tweetz"
#define MyAppExeName "tweetz.core.exe"
Expand Down

0 comments on commit 017b308

Please sign in to comment.