From 400350eae40038a6ffc11a8fc933247cdd430c2e Mon Sep 17 00:00:00 2001 From: Ruri Date: Sat, 10 Jul 2021 17:07:54 +0200 Subject: [PATCH] Preparation for 0.1.20 --- Changelog/0.1.19.md | 2 +- Changelog/0.1.20.md | 14 ++++++++++++++ OpenBullet2/Services/UpdateService.cs | 4 ++-- OpenBullet2/version.txt | 2 +- 4 files changed, 18 insertions(+), 4 deletions(-) create mode 100644 Changelog/0.1.20.md diff --git a/Changelog/0.1.19.md b/Changelog/0.1.19.md index 8ec612a3b..4cb65e3ed 100644 --- a/Changelog/0.1.19.md +++ b/Changelog/0.1.19.md @@ -1,4 +1,4 @@ -Changelog for version 0.1.18 +Changelog for version 0.1.19 - Fixed some issues in IMAP block - Added SMTP blocks diff --git a/Changelog/0.1.20.md b/Changelog/0.1.20.md new file mode 100644 index 000000000..76440ce97 --- /dev/null +++ b/Changelog/0.1.20.md @@ -0,0 +1,14 @@ +Changelog for version 0.1.20 + +- Quality of life improvements +- Better syntax highlighting for LoliCode +- Autocompletions for LoliCode snippets and blocks +- Autocompletion for variable names in blocks +- Added support for .ico files as config icon +- Fixed issue where the job viewer would take long to open in case of many hits +- Added SshAuthenticateWithPK block +- Added encoding parameter to file blocks +- Added OverrideHostHeader checkbox to CustomTwoCaptcha provider +- Added POP3 blocks +- Added FTP blocks +- Added timeoutMilliseconds to some TCP blocks diff --git a/OpenBullet2/Services/UpdateService.cs b/OpenBullet2/Services/UpdateService.cs index 97c04fc5c..91f7b91f6 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, 19); - public Version RemoteVersion { get; private set; } = new(0, 1, 19); + public Version CurrentVersion { get; private set; } = new(0, 1, 20); + public Version RemoteVersion { get; private set; } = new(0, 1, 20); 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 d7d9957a4..964f548b5 100644 --- a/OpenBullet2/version.txt +++ b/OpenBullet2/version.txt @@ -1 +1 @@ -0.1.19 \ No newline at end of file +0.1.20 \ No newline at end of file