Skip to content

Commit

Permalink
Bump to 0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
openbullet committed Sep 7, 2024
1 parent 5b5ac43 commit 8097d9f
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 6 deletions.
23 changes: 23 additions & 0 deletions Changelog/0.3.2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
Changelog for version 0.3.2

This release contains some bugfixes and improvements.
Most notably, `CaptchaSharp` has been upgraded to version `2.1.0` and **many new captcha-related blocks and services have been added**.
Check them out in the "RL Settings" and Stacker!

Other changes:

##### RuriLib
- Added support for parsing comma-separated cookies from the `Set-Cookie` and `Set-Cookie2` headers in the `RuriLib.Http` client. *This breaks support for cookie values that contain commas, but [they are disallowed](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie) by the standard anyway*
- Removed auth constraint from SMTP blocks that send mails, allowing to send mails as an anonymous user on servers that allow it
- Fixed/Added support for the `ListOfStrings` and `DictionaryOfStrings` output variables when using Node.js in the Script block
- Removed support for the CapSolver service upon request from the service owner
- Added missing timeouts to `NoProxyClient`'s `ProxySettings`
- Added elliptic curve support for JWT signature (by GekySan)

##### OpenBullet (Web)
- Fixed missing suggestions in variable-mode input fields
- Removed double labels from some boolean parameters for a cleaner UI
- Added try/catch in `ReadNetworkUsage` due to a macOS issue that caused the program to crash

##### OpenBullet (Native)
- Fixed annoying auto word selection in Windows Forms' RichTextBoxes
4 changes: 2 additions & 2 deletions OpenBullet2.Native/Services/UpdateService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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, 1);
public Version RemoteVersion { get; private set; } = new(0, 3, 1);
public Version CurrentVersion { get; private set; } = new(0, 3, 2);
public Version RemoteVersion { get; private set; } = new(0, 3, 2);
public bool IsUpdateAvailable => RemoteVersion > CurrentVersion;
public string CurrentVersionType => CurrentVersion.Major == 0
? (CurrentVersion.Minor == 0 ? "Alpha" : "Beta")
Expand Down
2 changes: 1 addition & 1 deletion OpenBullet2.Native/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.3.1
0.3.2
4 changes: 2 additions & 2 deletions OpenBullet2.Web/Services/UpdateService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ public UpdateService(ILogger<UpdateService> logger)
}

/// <inheritdoc />
public Version CurrentVersion { get; } = new(0, 3, 1);
public Version CurrentVersion { get; } = new(0, 3, 2);

/// <inheritdoc />
public Version RemoteVersion { get; private set; } = new(0, 3, 1);
public Version RemoteVersion { get; private set; } = new(0, 3, 2);

/// <inheritdoc />
public bool IsUpdateAvailable => RemoteVersion > CurrentVersion;
Expand Down
2 changes: 1 addition & 1 deletion OpenBullet2.Web/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.3.1
0.3.2

0 comments on commit 8097d9f

Please sign in to comment.