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