diff --git a/Changelog/0.2.4.md b/Changelog/0.2.4.md new file mode 100644 index 000000000..434b7dea7 --- /dev/null +++ b/Changelog/0.2.4.md @@ -0,0 +1,18 @@ +Changelog for version 0.2.4 + +##### RuriLib +- Add backoff logic to proxy reload in `ProxyPool` +- Automatically decompress brotli streams in `HttpClient` +- Added support for `BOTNUM` variable +- Added SAFE mode to `Parse` and `HttpRequest` blocks +- Added `extraCmdLineArgs` to `Puppeteer/Selenium OpenBrowser` blocks +- Added `CharAt` block + +##### OpenBullet (Core) +- + +##### OpenBullet (Web) +- Added word wrap setting for text editors under OB Settings > Customization + +##### OpenBullet (Native) +- Added word wrap setting for text editors under OB Settings > Customization \ No newline at end of file diff --git a/OpenBullet2.Native/Services/UpdateService.cs b/OpenBullet2.Native/Services/UpdateService.cs index 48f873c8f..ad0a46ea5 100644 --- a/OpenBullet2.Native/Services/UpdateService.cs +++ b/OpenBullet2.Native/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, 2, 3); - public Version RemoteVersion { get; private set; } = new(0, 2, 3); + public Version CurrentVersion { get; private set; } = new(0, 2, 4); + public Version RemoteVersion { get; private set; } = new(0, 2, 4); public bool IsUpdateAvailable => RemoteVersion > CurrentVersion; public string CurrentVersionType => CurrentVersion.Major == 0 ? (CurrentVersion.Minor == 0 ? "Alpha" : "Beta") diff --git a/OpenBullet2.Native/version.txt b/OpenBullet2.Native/version.txt index 373f8c6f0..72f9fa820 100644 --- a/OpenBullet2.Native/version.txt +++ b/OpenBullet2.Native/version.txt @@ -1 +1 @@ -0.2.3 \ No newline at end of file +0.2.4 \ No newline at end of file diff --git a/OpenBullet2/Services/UpdateService.cs b/OpenBullet2/Services/UpdateService.cs index cb3daba60..92d5d8155 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, 2, 3); - public Version RemoteVersion { get; private set; } = new(0, 2, 3); + public Version CurrentVersion { get; private set; } = new(0, 2, 4); + public Version RemoteVersion { get; private set; } = new(0, 2, 4); 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 373f8c6f0..72f9fa820 100644 --- a/OpenBullet2/version.txt +++ b/OpenBullet2/version.txt @@ -1 +1 @@ -0.2.3 \ No newline at end of file +0.2.4 \ No newline at end of file