diff --git a/Changelog/0.1.14.md b/Changelog/0.1.14.md new file mode 100644 index 000000000..d3ffcc8c7 --- /dev/null +++ b/Changelog/0.1.14.md @@ -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` \ No newline at end of file diff --git a/OpenBullet2/Services/UpdateService.cs b/OpenBullet2/Services/UpdateService.cs index 83a892fcd..24ef6b771 100644 --- a/OpenBullet2/Services/UpdateService.cs +++ b/OpenBullet2/Services/UpdateService.cs @@ -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") diff --git a/OpenBullet2/version.txt b/OpenBullet2/version.txt index 45263abba..f1f123210 100644 --- a/OpenBullet2/version.txt +++ b/OpenBullet2/version.txt @@ -1 +1 @@ -0.1.13 \ No newline at end of file +0.1.14 \ No newline at end of file