Skip to content

Commit b18f312

Browse files
committed
Preparation for 0.1.17
1 parent 6df486b commit b18f312

3 files changed

Lines changed: 17 additions & 3 deletions

File tree

Changelog/0.1.17.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
Changelog for version 0.1.17
2+
3+
- Fixed screenshot blocks in puppeteer
4+
- Fixed some memory leaks
5+
- Improved output of LoliCodeParserException
6+
- Added ability to block URLs on puppeteer (in Config Settings)
7+
- Added XOR and XORStrings blocks
8+
- Added ability to move proxies between groups
9+
- Fixed some issues with Cloudflare bot detection when getting proxies from remote (added User-Agent header to requests)
10+
- Fixed the maximum redirects setting in Http Request block
11+
- Added safe mode to auto blocks (see below)
12+
- Added SvgToPng block (to solve svg captchas using captcha services)
13+
14+
**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.

OpenBullet2/Services/UpdateService.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ public class UpdateService : IDisposable
1313
private readonly string versionFile = "version.txt";
1414
private readonly Timer timer;
1515

16-
public Version CurrentVersion { get; private set; } = new(0, 1, 16);
17-
public Version RemoteVersion { get; private set; } = new(0, 1, 16);
16+
public Version CurrentVersion { get; private set; } = new(0, 1, 17);
17+
public Version RemoteVersion { get; private set; } = new(0, 1, 17);
1818
public bool IsUpdateAvailable => RemoteVersion > CurrentVersion;
1919
public string CurrentVersionType => CurrentVersion.Major == 0
2020
? (CurrentVersion.Minor == 0 ? "Alpha" : "Beta")

OpenBullet2/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.1.16
1+
0.1.17

0 commit comments

Comments
 (0)