Skip to content

Commit 3245495

Browse files
committed
Preparation for 0.2.2
1 parent 5b6a150 commit 3245495

5 files changed

Lines changed: 26 additions & 6 deletions

File tree

Changelog/0.2.2.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
Changelog for version 0.2.2
2+
3+
##### RuriLib
4+
- Fixed time format in log
5+
- Added support for Chrome extensions in Puppeteer
6+
- Added support for logging any kind of object with `LOG` and `CLOG` in LoliCode (not just strings)
7+
- Added `MultiLine` attribute support to string parameters (will be displayed as a text area instead of a string).
8+
- Added `MultiLine` to some existing blocks (you can use it in plugins too!)
9+
- Added support for using the `Description` attribute in enums (you can use it in plugins too!)
10+
11+
##### OpenBullet (Core)
12+
- Added failsafe when deserializing `triggeredActions.json`
13+
14+
##### OpenBullet (Web)
15+
- Fixed problem with editing wordlist type not being persisted without reloading the wordlist in the job
16+
17+
##### OpenBullet (Native)
18+
- Fixed bug with keychains reordering
19+
- Added prompt if jobs are running when quitting
20+
- Fixed bug where deleting a group would delete all proxies

OpenBullet2.Native/Services/UpdateService.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ public class UpdateService : IDisposable
1313
private readonly string versionFile = "version.txt";
1414
private readonly Timer timer;
1515

16-
public Version CurrentVersion { get; private set; } = new(0, 2, 1);
17-
public Version RemoteVersion { get; private set; } = new(0, 2, 1);
16+
public Version CurrentVersion { get; private set; } = new(0, 2, 2);
17+
public Version RemoteVersion { get; private set; } = new(0, 2, 2);
1818
public bool IsUpdateAvailable => RemoteVersion > CurrentVersion;
1919
public string CurrentVersionType => CurrentVersion.Major == 0
2020
? (CurrentVersion.Minor == 0 ? "Alpha" : "Beta")

OpenBullet2.Native/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.2.1
1+
0.2.2

OpenBullet2/Services/UpdateService.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ public class UpdateService : IDisposable
1313
private readonly string versionFile = "version.txt";
1414
private readonly Timer timer;
1515

16-
public Version CurrentVersion { get; private set; } = new(0, 2, 1);
17-
public Version RemoteVersion { get; private set; } = new(0, 2, 1);
16+
public Version CurrentVersion { get; private set; } = new(0, 2, 2);
17+
public Version RemoteVersion { get; private set; } = new(0, 2, 2);
1818
public bool IsUpdateAvailable => RemoteVersion > CurrentVersion;
1919
public string CurrentVersionType => CurrentVersion.Major == 0
2020
? (CurrentVersion.Minor == 0 ? "Alpha" : "Beta")

OpenBullet2/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.2.1
1+
0.2.2

0 commit comments

Comments
 (0)