Skip to content

Commit

Permalink
Preparation for 0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
openbullet committed Mar 9, 2022
1 parent 5b6a150 commit 3245495
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 6 deletions.
20 changes: 20 additions & 0 deletions Changelog/0.2.2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
Changelog for version 0.2.2

##### RuriLib
- Fixed time format in log
- Added support for Chrome extensions in Puppeteer
- Added support for logging any kind of object with `LOG` and `CLOG` in LoliCode (not just strings)
- Added `MultiLine` attribute support to string parameters (will be displayed as a text area instead of a string).
- Added `MultiLine` to some existing blocks (you can use it in plugins too!)
- Added support for using the `Description` attribute in enums (you can use it in plugins too!)

##### OpenBullet (Core)
- Added failsafe when deserializing `triggeredActions.json`

##### OpenBullet (Web)
- Fixed problem with editing wordlist type not being persisted without reloading the wordlist in the job

##### OpenBullet (Native)
- Fixed bug with keychains reordering
- Added prompt if jobs are running when quitting
- Fixed bug where deleting a group would delete all proxies
4 changes: 2 additions & 2 deletions OpenBullet2.Native/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, 2, 1);
public Version RemoteVersion { get; private set; } = new(0, 2, 1);
public Version CurrentVersion { get; private set; } = new(0, 2, 2);
public Version RemoteVersion { get; private set; } = new(0, 2, 2);
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.Native/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.2.1
0.2.2
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, 2, 1);
public Version RemoteVersion { get; private set; } = new(0, 2, 1);
public Version CurrentVersion { get; private set; } = new(0, 2, 2);
public Version RemoteVersion { get; private set; } = new(0, 2, 2);
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.2.1
0.2.2

0 comments on commit 3245495

Please sign in to comment.