Skip to content

Commit

Permalink
Preparation for 0.1.27
Browse files Browse the repository at this point in the history
  • Loading branch information
openbullet committed Nov 25, 2021
1 parent 20f32cf commit 9b8edc3
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 6 deletions.
25 changes: 25 additions & 0 deletions Changelog/0.1.27.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
Changelog for version 0.1.27

**Support for debugging and running legacy .loli configs from OB1** has been added. To import your configs, place them in the `UserData/Configs` folder and hit the Reload button in the configs section. OB2 will automatically repackage them into .opk files so make sure you have a backup before doing this! Also note that not every single function is supported, if you find something that is missing and would like us to implement, please open an issue on the official github repository.

Other fixes:

##### RuriLib
- Added selenium blocks to use selenium in OB2 configs as well
- Added custom headers parameter to Websocket Connect (PR by Mostafa-Mahdi)
- Fixed and changed the signature of RSAPkcs1Pad2 block
- Allowed the `Connection: Keep-Alive` header in the HttpRequest block
- Updated to latest CaptchaSharp (fixed AZCaptcha service)
- Fixed error on utf-8 value for `Content-Encoding` header
- Fixed important error in LRParser with empty delims

##### OpenBullet (Core)
-

##### OpenBullet (Web)
- Added LoliScript section to edit the code of legacy configs
- Updated the about page

##### OpenBullet (Native)
- Added LoliScript section to edit the code of legacy configs
- Updated the about page
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, 1, 26);
public Version RemoteVersion { get; private set; } = new(0, 1, 26);
public Version CurrentVersion { get; private set; } = new(0, 1, 27);
public Version RemoteVersion { get; private set; } = new(0, 1, 27);
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.1.26
0.1.27
4 changes: 2 additions & 2 deletions OpenBullet2/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, 1, 26);
public Version RemoteVersion { get; private set; } = new(0, 1, 26);
public Version CurrentVersion { get; private set; } = new(0, 1, 27);
public Version RemoteVersion { get; private set; } = new(0, 1, 27);
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/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.26
0.1.27

0 comments on commit 9b8edc3

Please sign in to comment.