Skip to content

Commit

Permalink
Preparation for 0.1.11
Browse files Browse the repository at this point in the history
  • Loading branch information
openbullet committed Apr 9, 2021
1 parent 6d68bd4 commit 96a1c9a
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 3 deletions.
16 changes: 16 additions & 0 deletions Changelog/0.1.11.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
Changelog for version 0.1.11

- Fixed FolderDelete block not deleting folders which are not empty
- Added the Custom Webhook hit output. More info [here](https://discourse.openbullet.dev/t/how-to-use-the-custom-webhook-output/1965)
- Added ability to send only hits to webhooks (and not custom / to check)
- Added ability to export proxies to a file
- PuppeteerNavigateTo now also fills the data.ADDRESS field
- Added ability to provide multiple proxy files when importing proxies
- Fixed some UI issue in Job Manager
- Brightened the color of the debugger log
- Added PuppeteerWaitForResponse block
- Added ability to skip reading the response content in HttpRequest block
- Fixed the response's content-related headers not being added to data.HEADERS
- Added extended sorting to configs grid
- Fixed SortList block in numeric mode
- Added SET VAR and SET CAP LoliCode statements. More info in the docs inside the program.
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, 10);
public Version RemoteVersion { get; private set; } = new(0, 1, 10);
public Version CurrentVersion { get; private set; } = new(0, 1, 11);
public Version RemoteVersion { get; private set; } = new(0, 1, 11);
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.10
0.1.11

0 comments on commit 96a1c9a

Please sign in to comment.