Skip to content

Commit

Permalink
[build] 0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
openbullet committed Jul 10, 2024
1 parent a0ae36b commit 3840f99
Show file tree
Hide file tree
Showing 6 changed files with 33 additions and 8 deletions.
7 changes: 5 additions & 2 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
@@ -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)
22 changes: 22 additions & 0 deletions Changelog/0.3.1.md
Original file line number Diff line number Diff line change
@@ -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)
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, 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")
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.0
0.3.1
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, 0);
public Version CurrentVersion { get; } = new(0, 3, 1);

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

/// <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.0
0.3.1

0 comments on commit 3840f99

Please sign in to comment.