Skip to content

Commit

Permalink
Preparation for 0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
openbullet committed Feb 13, 2022
1 parent a7c21b0 commit 7f10b62
Show file tree
Hide file tree
Showing 5 changed files with 36 additions and 6 deletions.
30 changes: 30 additions & 0 deletions Changelog/0.2.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
Changelog for version 0.2.1

##### RuriLib
- Added AWS4 signature block (by tcortega)
- Added option to automatically decode HTML in Http Request Block (by tcortega)
- Improved plugin system (added `BlockAction` and `BlockImage` attributes)

##### OpenBullet (Core)
-

##### OpenBullet (Web)
- Update skip count on different wordlist selection (by tcortega)
- Added setting to print all lines to job log with their status (by tcortega)
- Added support for loading `.loli` configs directly with the Upload button
- Added suggestion to switch to interpolated mode when using `<` and `>` in fixed mode

##### OpenBullet (Native)
- Update skip count on different wordlist selection (by tcortega)
- Added setting to print all lines to job log with their status (by tcortega)
- Enhanced data tester in Config > Settings > Data section (by tcortega)
- Fixed author field in Config > Metadata not being saved properly (by tcortega)
- Removed the 'is capture' box if the block has no return value
- Added variable suggestions when block settings are in VAR mode
- Fixed a memory leak related to the job log
- Added suggestion to switch to interpolated mode when using `<` and `>` in fixed mode
- Added license info

#### Docker
- Added puppeteer support
- Removed verbose logs on startup
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, 0);
public Version RemoteVersion { get; private set; } = new(0, 2, 0);
public Version CurrentVersion { get; private set; } = new(0, 2, 1);
public Version RemoteVersion { get; private set; } = new(0, 2, 1);
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.0
0.2.1
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, 0);
public Version RemoteVersion { get; private set; } = new(0, 2, 0);
public Version CurrentVersion { get; private set; } = new(0, 2, 1);
public Version RemoteVersion { get; private set; } = new(0, 2, 1);
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.0
0.2.1

0 comments on commit 7f10b62

Please sign in to comment.