Skip to content

Commit

Permalink
v2021.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-ward committed Apr 10, 2021
1 parent 7a02885 commit 8498e10
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 17 deletions.
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,25 @@
# Changelog
All notable changes to this project will be documented in this file.

## 2021.2 - 2021-04-10

### Added
- new user profile view (click on profile image or screen name)

### Fixed
- Restore Translate feature
- Restore Image copy from viewer

### Changed
- Using HttpClient vs. WebRequest

## 2021.1 - 2021-02-21

### Added
- Mouse wheel controls volume when playing videos

### Changed
- Version numbers are year the revision based
- Version numbers are year and revision based
- Image viewer uses media element for videos only. Other images use image element
- Update packages and SDK to latest releases
- Removed cache hinting option from profile images
Expand Down
7 changes: 0 additions & 7 deletions src/global.json

This file was deleted.

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

0 comments on commit 8498e10

Please sign in to comment.