Skip to content

Commit 3840f99

Browse files
committed
[build] 0.3.1
1 parent a0ae36b commit 3840f99

File tree

6 files changed

+33
-8
lines changed

6 files changed

+33
-8
lines changed

CONTRIBUTORS.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# OpenBullet2 Contributors
22

3-
- [Ruri](https://github.com/openbullet)
4-
- [Gauvino](https://github.com/Gauvino)
3+
- [Ruri](https://github.com/openbullet)
4+
- [meinname](https://github.com/meinname)
5+
- [Gauvino](https://github.com/Gauvino)
6+
- [rudyrdx](https://github.com/rudyrdx)
7+
- [GekySan](https://github.com/GekySan)

Changelog/0.3.1.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
Changelog for version 0.3.1
2+
3+
This release is mostly a bugfix release. The main changes are:
4+
5+
##### RuriLib
6+
- 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)
7+
- Added workaround to fix PuppeteerSwitchToTab block
8+
- Added more IMAP blocks, mainly to switch folders (e.g. if the mail is in the spam folder instead of the inbox)
9+
- Fixed `ReadResponseContent = false` of the HTTP Request block not working when using the `System.Net` library
10+
- Implemented RSA signing for JWT (by GekySan)
11+
12+
##### OpenBullet (Web)
13+
- Fixed incorrect function calls when trying to edit or clone a proxy check job
14+
- Added warning upon disabling require admin login
15+
- Fixed API Key generation in the Sharing section
16+
- Added version to console output when the program starts
17+
- Fixed wordlist type not being kept in the config debugger
18+
- Added autocomplete for custom input answers and prefilled the default answers
19+
- Fixed the date filter for hits (it was not taking the timezone into account)
20+
21+
##### OpenBullet (Native)
22+
- Fixed multi-line text boxes in RL Settings (global ban keys, global retry keys and custom user agents were not being saved correctly)

OpenBullet2.Native/Services/UpdateService.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ public class UpdateService : IDisposable
1313
private readonly string versionFile = "version.txt";
1414
private readonly Timer timer;
1515

16-
public Version CurrentVersion { get; private set; } = new(0, 3, 0);
17-
public Version RemoteVersion { get; private set; } = new(0, 3, 0);
16+
public Version CurrentVersion { get; private set; } = new(0, 3, 1);
17+
public Version RemoteVersion { get; private set; } = new(0, 3, 1);
1818
public bool IsUpdateAvailable => RemoteVersion > CurrentVersion;
1919
public string CurrentVersionType => CurrentVersion.Major == 0
2020
? (CurrentVersion.Minor == 0 ? "Alpha" : "Beta")

OpenBullet2.Native/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.3.0
1+
0.3.1

OpenBullet2.Web/Services/UpdateService.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@ public UpdateService(ILogger<UpdateService> logger)
3636
}
3737

3838
/// <inheritdoc />
39-
public Version CurrentVersion { get; } = new(0, 3, 0);
39+
public Version CurrentVersion { get; } = new(0, 3, 1);
4040

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

4444
/// <inheritdoc />
4545
public bool IsUpdateAvailable => RemoteVersion > CurrentVersion;

OpenBullet2.Web/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.3.0
1+
0.3.1

0 commit comments

Comments
 (0)