diff --git a/Changelog/0.1.16.md b/Changelog/0.1.16.md new file mode 100644 index 000000000..9229d5231 --- /dev/null +++ b/Changelog/0.1.16.md @@ -0,0 +1,7 @@ +Changelog for version 0.1.16 + +- Implemented async locks. You can find a sample use case [here](https://discourse.openbullet.dev/t/global-session-token-that-refreshes/2854) +- Fixed game breaking bug in auto-blocks that use dictionaries +- Removed error on invalid cookies sent from the server + +This is a very small update but it's fixing a game breaking bug introduced in 0.1.15 so I had to push it ASAP. diff --git a/OpenBullet2/Services/UpdateService.cs b/OpenBullet2/Services/UpdateService.cs index 1d7fdb0b1..79f3ad18a 100644 --- a/OpenBullet2/Services/UpdateService.cs +++ b/OpenBullet2/Services/UpdateService.cs @@ -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, 15); - public Version RemoteVersion { get; private set; } = new(0, 1, 15); + public Version CurrentVersion { get; private set; } = new(0, 1, 16); + public Version RemoteVersion { get; private set; } = new(0, 1, 16); public bool IsUpdateAvailable => RemoteVersion > CurrentVersion; public string CurrentVersionType => CurrentVersion.Major == 0 ? (CurrentVersion.Minor == 0 ? "Alpha" : "Beta") diff --git a/OpenBullet2/version.txt b/OpenBullet2/version.txt index 106528b75..99a25fc45 100644 --- a/OpenBullet2/version.txt +++ b/OpenBullet2/version.txt @@ -1 +1 @@ -0.1.15 \ No newline at end of file +0.1.16 \ No newline at end of file