diff --git a/Changelog/0.2.1.md b/Changelog/0.2.1.md new file mode 100644 index 000000000..a056fba4c --- /dev/null +++ b/Changelog/0.2.1.md @@ -0,0 +1,30 @@ +Changelog for version 0.2.1 + +##### RuriLib +- Added AWS4 signature block (by tcortega) +- Added option to automatically decode HTML in Http Request Block (by tcortega) +- Improved plugin system (added `BlockAction` and `BlockImage` attributes) + +##### OpenBullet (Core) +- + +##### OpenBullet (Web) +- Update skip count on different wordlist selection (by tcortega) +- Added setting to print all lines to job log with their status (by tcortega) +- Added support for loading `.loli` configs directly with the Upload button +- Added suggestion to switch to interpolated mode when using `<` and `>` in fixed mode + +##### OpenBullet (Native) +- Update skip count on different wordlist selection (by tcortega) +- Added setting to print all lines to job log with their status (by tcortega) +- Enhanced data tester in Config > Settings > Data section (by tcortega) +- Fixed author field in Config > Metadata not being saved properly (by tcortega) +- Removed the 'is capture' box if the block has no return value +- Added variable suggestions when block settings are in VAR mode +- Fixed a memory leak related to the job log +- Added suggestion to switch to interpolated mode when using `<` and `>` in fixed mode +- Added license info + +#### Docker +- Added puppeteer support +- Removed verbose logs on startup \ No newline at end of file diff --git a/OpenBullet2.Native/Services/UpdateService.cs b/OpenBullet2.Native/Services/UpdateService.cs index 5a0e815d8..dedc5c5e4 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, 0); - public Version RemoteVersion { get; private set; } = new(0, 2, 0); + public Version CurrentVersion { get; private set; } = new(0, 2, 1); + public Version RemoteVersion { get; private set; } = new(0, 2, 1); 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 341cf11fa..7dff5b892 100644 --- a/OpenBullet2.Native/version.txt +++ b/OpenBullet2.Native/version.txt @@ -1 +1 @@ -0.2.0 \ No newline at end of file +0.2.1 \ No newline at end of file diff --git a/OpenBullet2/Services/UpdateService.cs b/OpenBullet2/Services/UpdateService.cs index 12615ebcc..81aa049a9 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, 0); - public Version RemoteVersion { get; private set; } = new(0, 2, 0); + public Version CurrentVersion { get; private set; } = new(0, 2, 1); + public Version RemoteVersion { get; private set; } = new(0, 2, 1); 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 341cf11fa..7dff5b892 100644 --- a/OpenBullet2/version.txt +++ b/OpenBullet2/version.txt @@ -1 +1 @@ -0.2.0 \ No newline at end of file +0.2.1 \ No newline at end of file