Skip to content

Commit

Permalink
2.0.beta
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-ward committed Jan 4, 2020
1 parent 35aa7d0 commit c43a489
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
9 changes: 5 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
# Changelog
All notable changes to this project will be documented in this file.

## [Unreleased]
## [2.0-Beta] - 2020-01-04
### Added
- Incorporate mentions into home timeline. Twitter limits the nummber of requests to this API for all Tweetz clients so the update interval is long (once per hour).
- Incorporate mentions into home timeline. Twitter limits the nummber of requests to this API for all Tweetz clients so the update interval is long (once per hour). - [16112b5](https://github.com/mike-ward/tweetz/commit/16112b58b6e89209e57969922039ebc358c3414d)

### Changed
- Change **Like** color to Firebrick - [22085c3](https://github.com/mike-ward/tweetz/commit/c283e2e439ac529a96e53644c3b9d9623d074c8f)
- Add `extended mode` flag to UpdateStatus call - [22085c3](https://github.com/mike-ward/tweetz/commit/c283e2e439ac529a96e53644c3b9d9623d074c8f)
- Add `extended mode` flag to Search call

### Deprecated
- Add button to copy to clipboard in image viewer - [cab9fe5](https://github.com/mike-ward/tweetz/commit/cab9fe5a75797be968a1c89459a038338805ad6f)

### Removed

- Remove automatic copy to clipboard in image viewer. - [cab9fe5](https://github.com/mike-ward/tweetz/commit/cab9fe5a75797be968a1c89459a038338805ad6f)

### Fixed
- Remove option to install for All Users. Rename installer to `tweetz.setup.exe` - [#1](https://github.com/mike-ward/tweetz/issues/1)
- Clear search timeline before getting mentions - [888790b](https://github.com/mike-ward/tweetz/commit/888790b0169b22f975bd5118ae352ba72b8aacea)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@
Width="125"
Margin="0,0,0,5"
Command="commands:OpenLinkCommand.Command"
CommandParameter="https://github.com/mike-ward/tweetz/releases"
CommandParameter="https://github.com/mike-ward/tweetz/releases/latest"
Content="{services:LanguageService get-the-update}" />
</UserControl>
4 changes: 2 additions & 2 deletions src/tweetz.core/Models/VersionInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
{
public class VersionInfo
{
public string Version => "v2.0.alpha";
public string Copyright => "Copyright 2019, Mike Ward";
public string Version => "v2.0.beta";
public string Copyright => "Copyright 2020, Mike Ward";
}
}
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 "2.0 Alpha"
#define MyAppVersion "2.0.Beta"
#define MyAppPublisher "Mike Ward"
#define MyAppURL "https://mike-ward.net/tweetz"
#define MyAppExeName "tweetz.core.exe"
Expand Down

0 comments on commit c43a489

Please sign in to comment.