Skip to content

Commit

Permalink
Preparation for 0.1.20
Browse files Browse the repository at this point in the history
  • Loading branch information
openbullet committed Jul 10, 2021
1 parent 5e8620c commit 400350e
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Changelog/0.1.19.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Changelog for version 0.1.18
Changelog for version 0.1.19

- Fixed some issues in IMAP block
- Added SMTP blocks
Expand Down
14 changes: 14 additions & 0 deletions Changelog/0.1.20.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
Changelog for version 0.1.20

- Quality of life improvements
- Better syntax highlighting for LoliCode
- Autocompletions for LoliCode snippets and blocks
- Autocompletion for variable names in blocks
- Added support for .ico files as config icon
- Fixed issue where the job viewer would take long to open in case of many hits
- Added SshAuthenticateWithPK block
- Added encoding parameter to file blocks
- Added OverrideHostHeader checkbox to CustomTwoCaptcha provider
- Added POP3 blocks
- Added FTP blocks
- Added timeoutMilliseconds to some TCP blocks
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, 19);
public Version RemoteVersion { get; private set; } = new(0, 1, 19);
public Version CurrentVersion { get; private set; } = new(0, 1, 20);
public Version RemoteVersion { get; private set; } = new(0, 1, 20);
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.19
0.1.20

0 comments on commit 400350e

Please sign in to comment.