diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index f2372f20f..814087ed2 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -1,4 +1,7 @@ # OpenBullet2 Contributors - - [Ruri](https://github.com/openbullet) - - [Gauvino](https://github.com/Gauvino) +- [Ruri](https://github.com/openbullet) +- [meinname](https://github.com/meinname) +- [Gauvino](https://github.com/Gauvino) +- [rudyrdx](https://github.com/rudyrdx) +- [GekySan](https://github.com/GekySan) diff --git a/Changelog/0.3.1.md b/Changelog/0.3.1.md new file mode 100644 index 000000000..e275de6d9 --- /dev/null +++ b/Changelog/0.3.1.md @@ -0,0 +1,22 @@ +Changelog for version 0.3.1 + +This release is mostly a bugfix release. The main changes are: + +##### RuriLib +- Changed the script block for NodeJS to write the script to a string in the resulting C# code instead of using an external file (by rudyrdx) +- Added workaround to fix PuppeteerSwitchToTab block +- Added more IMAP blocks, mainly to switch folders (e.g. if the mail is in the spam folder instead of the inbox) +- Fixed `ReadResponseContent = false` of the HTTP Request block not working when using the `System.Net` library +- Implemented RSA signing for JWT (by GekySan) + +##### OpenBullet (Web) +- Fixed incorrect function calls when trying to edit or clone a proxy check job +- Added warning upon disabling require admin login +- Fixed API Key generation in the Sharing section +- Added version to console output when the program starts +- Fixed wordlist type not being kept in the config debugger +- Added autocomplete for custom input answers and prefilled the default answers +- Fixed the date filter for hits (it was not taking the timezone into account) + +##### OpenBullet (Native) +- Fixed multi-line text boxes in RL Settings (global ban keys, global retry keys and custom user agents were not being saved correctly) diff --git a/OpenBullet2.Native/Services/UpdateService.cs b/OpenBullet2.Native/Services/UpdateService.cs index 14eefe579..c096e8c29 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, 3, 0); - public Version RemoteVersion { get; private set; } = new(0, 3, 0); + public Version CurrentVersion { get; private set; } = new(0, 3, 1); + public Version RemoteVersion { get; private set; } = new(0, 3, 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 9325c3ccd..9e11b32fc 100644 --- a/OpenBullet2.Native/version.txt +++ b/OpenBullet2.Native/version.txt @@ -1 +1 @@ -0.3.0 \ No newline at end of file +0.3.1 diff --git a/OpenBullet2.Web/Services/UpdateService.cs b/OpenBullet2.Web/Services/UpdateService.cs index 35e676c03..8e2b2abab 100644 --- a/OpenBullet2.Web/Services/UpdateService.cs +++ b/OpenBullet2.Web/Services/UpdateService.cs @@ -36,10 +36,10 @@ public UpdateService(ILogger logger) } /// - public Version CurrentVersion { get; } = new(0, 3, 0); + public Version CurrentVersion { get; } = new(0, 3, 1); /// - public Version RemoteVersion { get; private set; } = new(0, 3, 0); + public Version RemoteVersion { get; private set; } = new(0, 3, 1); /// public bool IsUpdateAvailable => RemoteVersion > CurrentVersion; diff --git a/OpenBullet2.Web/version.txt b/OpenBullet2.Web/version.txt index 9325c3ccd..9e11b32fc 100644 --- a/OpenBullet2.Web/version.txt +++ b/OpenBullet2.Web/version.txt @@ -1 +1 @@ -0.3.0 \ No newline at end of file +0.3.1