From 4863d286f462b2d671205d14a4f6e16a6c7b09c5 Mon Sep 17 00:00:00 2001 From: Ruri Date: Thu, 3 Jun 2021 17:34:11 +0200 Subject: [PATCH] Preparation for 0.1.15 --- Changelog/0.1.15.md | 13 +++++++++++++ OpenBullet2/Services/UpdateService.cs | 4 ++-- OpenBullet2/version.txt | 2 +- 3 files changed, 16 insertions(+), 3 deletions(-) create mode 100644 Changelog/0.1.15.md diff --git a/Changelog/0.1.15.md b/Changelog/0.1.15.md new file mode 100644 index 000000000..8190a0fe8 --- /dev/null +++ b/Changelog/0.1.15.md @@ -0,0 +1,13 @@ +Changelog for version 0.1.15 + +- Fixed default value detection for LoliCode settings (ListOfStrings, DictionaryOfStrings, ByteArray) +- Added missing integer comparison when using INTKEYs +- Fixed issue with proxies in captcha blocks +- Improved the "add block" menu +- Added support for resources. You can find a small guide [here](https://discourse.openbullet.dev/t/using-global-variables-to-take-lines-from-a-file-in-order/48) +- Improved ZipLists block +- Added "view as HTML" button to single line sources in the bot log +- Added PuppeteerSelectByIndex and PuppeteerSelectByText blocks +- Fixed issue in DataPoolSelector +- Added "Delete Filtered" button to proxy manager +- Automatically cast to int in REPEAT statement diff --git a/OpenBullet2/Services/UpdateService.cs b/OpenBullet2/Services/UpdateService.cs index 24ef6b771..1d7fdb0b1 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, 14); - public Version RemoteVersion { get; private set; } = new(0, 1, 14); + public Version CurrentVersion { get; private set; } = new(0, 1, 15); + public Version RemoteVersion { get; private set; } = new(0, 1, 15); 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 f1f123210..106528b75 100644 --- a/OpenBullet2/version.txt +++ b/OpenBullet2/version.txt @@ -1 +1 @@ -0.1.14 \ No newline at end of file +0.1.15 \ No newline at end of file