File tree Expand file tree Collapse file tree 6 files changed +33
-8
lines changed Expand file tree Collapse file tree 6 files changed +33
-8
lines changed Original file line number Diff line number Diff line change 1
1
# OpenBullet2 Contributors
2
2
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 )
Original file line number Diff line number Diff line change
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)
Original file line number Diff line number Diff line change @@ -13,8 +13,8 @@ public class UpdateService : IDisposable
13
13
private readonly string versionFile = "version.txt" ;
14
14
private readonly Timer timer ;
15
15
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 ) ;
18
18
public bool IsUpdateAvailable => RemoteVersion > CurrentVersion ;
19
19
public string CurrentVersionType => CurrentVersion . Major == 0
20
20
? ( CurrentVersion . Minor == 0 ? "Alpha" : "Beta" )
Original file line number Diff line number Diff line change 1
- 0.3.0
1
+ 0.3.1
Original file line number Diff line number Diff line change @@ -36,10 +36,10 @@ public UpdateService(ILogger<UpdateService> logger)
36
36
}
37
37
38
38
/// <inheritdoc />
39
- public Version CurrentVersion { get ; } = new ( 0 , 3 , 0 ) ;
39
+ public Version CurrentVersion { get ; } = new ( 0 , 3 , 1 ) ;
40
40
41
41
/// <inheritdoc />
42
- public Version RemoteVersion { get ; private set ; } = new ( 0 , 3 , 0 ) ;
42
+ public Version RemoteVersion { get ; private set ; } = new ( 0 , 3 , 1 ) ;
43
43
44
44
/// <inheritdoc />
45
45
public bool IsUpdateAvailable => RemoteVersion > CurrentVersion ;
Original file line number Diff line number Diff line change 1
- 0.3.0
1
+ 0.3.1
You can’t perform that action at this time.
0 commit comments