File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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" )
Original file line number Diff line number Diff line change 1- 0.2.1
1+ 0.2.2
Original file line number Diff line number Diff 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" )
Original file line number Diff line number Diff line change 1- 0.2.1
1+ 0.2.2
You can’t perform that action at this time.
0 commit comments