Skip to content

Commit

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

- Fixed default value detection for LoliCode settings (ListOfStrings, DictionaryOfStrings, ByteArray)
- Added missing integer comparison when using INTKEYs
- Fixed issue with proxies in captcha blocks
- Improved the "add block" menu
- Added support for resources. You can find a small guide [here](https://discourse.openbullet.dev/t/using-global-variables-to-take-lines-from-a-file-in-order/48)
- Improved ZipLists block
- Added "view as HTML" button to single line sources in the bot log
- Added PuppeteerSelectByIndex and PuppeteerSelectByText blocks
- Fixed issue in DataPoolSelector
- Added "Delete Filtered" button to proxy manager
- Automatically cast to int in REPEAT statement
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, 14);
public Version RemoteVersion { get; private set; } = new(0, 1, 14);
public Version CurrentVersion { get; private set; } = new(0, 1, 15);
public Version RemoteVersion { get; private set; } = new(0, 1, 15);
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.14
0.1.15

0 comments on commit 4863d28

Please sign in to comment.