Skip to content

Commit

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

- Display which guest owns wordlists and proxy groups
- Fixed themes being deleted on update (redownload the updater for this to work)
- Abort while pausing
- Fixed issue with Random User Agent provider in the Debugger
- Added support for Arabic Language (translation still pending)
- Added ability to only load document and script with puppeteer (e.g. do not download images) for speed
- Configurable resources in appsettings.json
- Fixed reading response source when server doesn't send Content-Length and Transfer-Encoding
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, 8);
public Version RemoteVersion { get; private set; } = new(0, 1, 8);
public Version CurrentVersion { get; private set; } = new(0, 1, 9);
public Version RemoteVersion { get; private set; } = new(0, 1, 9);
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.8
0.1.9

0 comments on commit 519dd27

Please sign in to comment.