diff --git a/Changelog/0.1.21.md b/Changelog/0.1.21.md new file mode 100644 index 000000000..21366fb0a --- /dev/null +++ b/Changelog/0.1.21.md @@ -0,0 +1,18 @@ +Changelog for version 0.1.21 + +- Added support for configurable bot limit +- Fixed FtpConnect block not throwing exception on connection failed +- Fixed important issues with email blocks +- Order jobs by id in manager +- Job options should be saved correctly now after being changed in the job viewer +- Fixed yet another issue with ApplicationDbContext +- Fixed issues where some entities wouldn't properly update after being written to the db +- Progress % instead of just progress trigger +- Changed execution info to STOPPED when a bot is stopping (in detailed view) +- Added timeoutMilliseconds to email login blocks +- Added ImapGetLog and Pop3GetLog blocks (for raw protocol logs) +- Fixed data.ERROR not being cleared on retry +- Improved dispose of puppeteer +- Fixed WordlistType not updating after wordlist edit +- Better exception when puppeteer element not found +- Added StringToBytes and BytesToString blocks diff --git a/OpenBullet2/Services/UpdateService.cs b/OpenBullet2/Services/UpdateService.cs index 91f7b91f6..664c52696 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, 20); - public Version RemoteVersion { get; private set; } = new(0, 1, 20); + public Version CurrentVersion { get; private set; } = new(0, 1, 21); + public Version RemoteVersion { get; private set; } = new(0, 1, 21); 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 964f548b5..6cd328617 100644 --- a/OpenBullet2/version.txt +++ b/OpenBullet2/version.txt @@ -1 +1 @@ -0.1.20 \ No newline at end of file +0.1.21 \ No newline at end of file