Skip to content

Commit

Permalink
Preparation for 0.1.21
Browse files Browse the repository at this point in the history
  • Loading branch information
openbullet committed Jul 25, 2021
1 parent 75101a0 commit db3f8ff
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 3 deletions.
18 changes: 18 additions & 0 deletions Changelog/0.1.21.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
Changelog for version 0.1.21

- Added support for configurable bot limit
- Fixed FtpConnect block not throwing exception on connection failed
- Fixed important issues with email blocks
- Order jobs by id in manager
- Job options should be saved correctly now after being changed in the job viewer
- Fixed yet another issue with ApplicationDbContext
- Fixed issues where some entities wouldn't properly update after being written to the db
- Progress % instead of just progress trigger
- Changed execution info to STOPPED when a bot is stopping (in detailed view)
- Added timeoutMilliseconds to email login blocks
- Added ImapGetLog and Pop3GetLog blocks (for raw protocol logs)
- Fixed data.ERROR not being cleared on retry
- Improved dispose of puppeteer
- Fixed WordlistType not updating after wordlist edit
- Better exception when puppeteer element not found
- Added StringToBytes and BytesToString blocks
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, 20);
public Version RemoteVersion { get; private set; } = new(0, 1, 20);
public Version CurrentVersion { get; private set; } = new(0, 1, 21);
public Version RemoteVersion { get; private set; } = new(0, 1, 21);
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.20
0.1.21

0 comments on commit db3f8ff

Please sign in to comment.