From 6d38d57346fab91a208d9f769417000db7daa043 Mon Sep 17 00:00:00 2001 From: Ruri Date: Fri, 2 Jul 2021 20:39:11 +0200 Subject: [PATCH] Preparation for 0.1.19 --- Changelog/0.1.19.md | 7 +++++++ OpenBullet2/Services/UpdateService.cs | 4 ++-- OpenBullet2/version.txt | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) create mode 100644 Changelog/0.1.19.md diff --git a/Changelog/0.1.19.md b/Changelog/0.1.19.md new file mode 100644 index 000000000..8ec612a3b --- /dev/null +++ b/Changelog/0.1.19.md @@ -0,0 +1,7 @@ +Changelog for version 0.1.18 + +- Fixed some issues in IMAP block +- Added SMTP blocks +- Fixed LockRecursionException in file blocks +- Fixed issues with ApplicationDbContext when storing hits +- Fixed issue with solvecaptcha.com diff --git a/OpenBullet2/Services/UpdateService.cs b/OpenBullet2/Services/UpdateService.cs index c852d65c0..97c04fc5c 100644 --- a/OpenBullet2/Services/UpdateService.cs +++ b/OpenBullet2/Services/UpdateService.cs @@ -13,8 +13,8 @@ public class UpdateService : IDisposable private readonly string versionFile = "version.txt"; private readonly Timer timer; - public Version CurrentVersion { get; private set; } = new(0, 1, 18); - public Version RemoteVersion { get; private set; } = new(0, 1, 18); + public Version CurrentVersion { get; private set; } = new(0, 1, 19); + public Version RemoteVersion { get; private set; } = new(0, 1, 19); public bool IsUpdateAvailable => RemoteVersion > CurrentVersion; public string CurrentVersionType => CurrentVersion.Major == 0 ? (CurrentVersion.Minor == 0 ? "Alpha" : "Beta") diff --git a/OpenBullet2/version.txt b/OpenBullet2/version.txt index 44905e76e..d7d9957a4 100644 --- a/OpenBullet2/version.txt +++ b/OpenBullet2/version.txt @@ -1 +1 @@ -0.1.18 \ No newline at end of file +0.1.19 \ No newline at end of file