Skip to content

Commit

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

- Save grid query status per user instead of globally
- Removed scientific notation when displaying floats
- Added ListToDictionary block
- Fixed small bug in Regex Helper
- Allow `Connection: Upgrade` header to upgrade from http(s) to ws(s)
- Fixed vulnerability where guests could access all proxies
- Added `?h` in RandomString block
- Added RemoveAllFromList block
- Fixed IsSubPathOf for relative paths and unix paths
- Fixed admin not being logged in automatically during setup
- Fixed serious issues with file operations
- Added PuppeteerWaitForNavigation block
- Fixed the width of modals on mobile
- Fixed output variable types in Script block
- Fixed errors when getting HTTP responses from some servers (thanks Rydj)
- **BREAKING CHANGE:** Fixed AES blocks to work with byte arrays instead of strings
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, 12);
public Version RemoteVersion { get; private set; } = new(0, 1, 12);
public Version CurrentVersion { get; private set; } = new(0, 1, 13);
public Version RemoteVersion { get; private set; } = new(0, 1, 13);
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.12
0.1.13

0 comments on commit cb4b27d

Please sign in to comment.