Skip to content

Commit

Permalink
Preparation for 0.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
openbullet committed Apr 27, 2022
1 parent 69fe07f commit 9c44c4a
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 6 deletions.
18 changes: 18 additions & 0 deletions Changelog/0.2.4.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
Changelog for version 0.2.4

##### RuriLib
- Add backoff logic to proxy reload in `ProxyPool`
- Automatically decompress brotli streams in `HttpClient`
- Added support for `BOTNUM` variable
- Added SAFE mode to `Parse` and `HttpRequest` blocks
- Added `extraCmdLineArgs` to `Puppeteer/Selenium OpenBrowser` blocks
- Added `CharAt` block

##### OpenBullet (Core)
-

##### OpenBullet (Web)
- Added word wrap setting for text editors under OB Settings > Customization

##### OpenBullet (Native)
- Added word wrap setting for text editors under OB Settings > Customization
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, 2, 3);
public Version RemoteVersion { get; private set; } = new(0, 2, 3);
public Version CurrentVersion { get; private set; } = new(0, 2, 4);
public Version RemoteVersion { get; private set; } = new(0, 2, 4);
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.2.3
0.2.4
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, 2, 3);
public Version RemoteVersion { get; private set; } = new(0, 2, 3);
public Version CurrentVersion { get; private set; } = new(0, 2, 4);
public Version RemoteVersion { get; private set; } = new(0, 2, 4);
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.2.3
0.2.4

0 comments on commit 9c44c4a

Please sign in to comment.