Skip to content

Commit

Permalink
Preparation for 0.1.14
Browse files Browse the repository at this point in the history
  • Loading branch information
openbullet committed May 11, 2021
1 parent c44b726 commit 32e7de0
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
13 changes: 13 additions & 0 deletions Changelog/0.1.14.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Changelog for version 0.1.14

- Fixed visual issue in request log
- Fixed issue with file lock
- Fixed issue with ApplicationDbContext (when multiple jobs are storing hits at the same time)
- Fixed issue with hits + fails not matching the amount of tested data
- Fixed issue where progress was stuck at 99.99% in jobs
- Added XPath mode to parse block
- Added XPath support to puppeteer blocks
- Improved the hits section

---
About the hits section improvements: users can now download hits as a .txt file, execute actions on all filtered hits (and not only selected) and choose custom export formats from `Environment.ini`
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, 13);
public Version RemoteVersion { get; private set; } = new(0, 1, 13);
public Version CurrentVersion { get; private set; } = new(0, 1, 14);
public Version RemoteVersion { get; private set; } = new(0, 1, 14);
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.13
0.1.14

0 comments on commit 32e7de0

Please sign in to comment.