Skip to content

Commit

Permalink
Preparation for 0.1.17
Browse files Browse the repository at this point in the history
  • Loading branch information
openbullet committed Jun 21, 2021
1 parent 6df486b commit b18f312
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 3 deletions.
14 changes: 14 additions & 0 deletions Changelog/0.1.17.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
Changelog for version 0.1.17

- Fixed screenshot blocks in puppeteer
- Fixed some memory leaks
- Improved output of LoliCodeParserException
- Added ability to block URLs on puppeteer (in Config Settings)
- Added XOR and XORStrings blocks
- Added ability to move proxies between groups
- Fixed some issues with Cloudflare bot detection when getting proxies from remote (added User-Agent header to requests)
- Fixed the maximum redirects setting in Http Request block
- Added safe mode to auto blocks (see below)
- Added SvgToPng block (to solve svg captchas using captcha services)

**Safe mode** will catch exceptions and store their message in the string variable `data.ERROR` so you don't have to manually deal with try/catch anymore, and you can easily perform a keycheck on the message.
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, 16);
public Version RemoteVersion { get; private set; } = new(0, 1, 16);
public Version CurrentVersion { get; private set; } = new(0, 1, 17);
public Version RemoteVersion { get; private set; } = new(0, 1, 17);
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.16
0.1.17

0 comments on commit b18f312

Please sign in to comment.