Skip to content

Commit

Permalink
Preparation for 0.1.24
Browse files Browse the repository at this point in the history
  • Loading branch information
openbullet committed Sep 14, 2021
1 parent 103d5e3 commit 08920c6
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 6 deletions.
18 changes: 18 additions & 0 deletions Changelog/0.1.24.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
Changelog for version 0.1.24

##### RuriLib
- Added option to report the last captcha as bad upon RETRY status (in Config Settings)
- Removed trailing semicolon and space after the last cookie in Cookie header

##### OpenBullet (Core)
-

##### OpenBullet (Web)
-

##### OpenBullet (Native)
- Added ability to test data rules from the config settings
- Show bot log as normal window instead of dialog
- Added search in debugger log
- Fixed an issue with copying to clipboard
- Improved the HTML viewer
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, 23);
public Version RemoteVersion { get; private set; } = new(0, 1, 23);
public Version CurrentVersion { get; private set; } = new(0, 1, 24);
public Version RemoteVersion { get; private set; } = new(0, 1, 24);
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.23
0.1.24
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, 23);
public Version RemoteVersion { get; private set; } = new(0, 1, 23);
public Version CurrentVersion { get; private set; } = new(0, 1, 24);
public Version RemoteVersion { get; private set; } = new(0, 1, 24);
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.23
0.1.24

0 comments on commit 08920c6

Please sign in to comment.