Skip to content

Commit

Permalink
Preparation for 0.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
openbullet committed Mar 16, 2021
1 parent 835a24b commit 0d5423f
Show file tree
Hide file tree
Showing 14 changed files with 18 additions and 36 deletions.
3 changes: 0 additions & 3 deletions Announcements/de.md
Original file line number Diff line number Diff line change
@@ -1,3 +0,0 @@
<p style="font-size: 20px; color: red;">IMPORTANT NOTICE!</p>

Version 0.1.2 has a **REALLY BIG ISSUE** with interpolated strings that breaks most configs, please update as soon as possible to avoid further problems.
3 changes: 0 additions & 3 deletions Announcements/en.md
Original file line number Diff line number Diff line change
@@ -1,3 +0,0 @@
<p style="font-size: 20px; color: red;">IMPORTANT NOTICE!</p>

Version 0.1.2 has a **REALLY BIG ISSUE** with interpolated strings that breaks most configs, please update as soon as possible to avoid further problems.
3 changes: 0 additions & 3 deletions Announcements/es.md
Original file line number Diff line number Diff line change
@@ -1,3 +0,0 @@
<p style="font-size: 20px; color: red;">IMPORTANT NOTICE!</p>

Version 0.1.2 has a **REALLY BIG ISSUE** with interpolated strings that breaks most configs, please update as soon as possible to avoid further problems.
3 changes: 0 additions & 3 deletions Announcements/fa.md
Original file line number Diff line number Diff line change
@@ -1,3 +0,0 @@
<p style="font-size: 20px; color: red;">IMPORTANT NOTICE!</p>

Version 0.1.2 has a **REALLY BIG ISSUE** with interpolated strings that breaks most configs, please update as soon as possible to avoid further problems.
3 changes: 0 additions & 3 deletions Announcements/fr.md
Original file line number Diff line number Diff line change
@@ -1,3 +0,0 @@
<p style="font-size: 20px; color: red;">IMPORTANT NOTICE!</p>

Version 0.1.2 has a **REALLY BIG ISSUE** with interpolated strings that breaks most configs, please update as soon as possible to avoid further problems.
3 changes: 0 additions & 3 deletions Announcements/it.md
Original file line number Diff line number Diff line change
@@ -1,3 +0,0 @@
<p style="font-size: 20px; color: red;">IMPORTANT NOTICE!</p>

Version 0.1.2 has a **REALLY BIG ISSUE** with interpolated strings that breaks most configs, please update as soon as possible to avoid further problems.
3 changes: 0 additions & 3 deletions Announcements/nl.md
Original file line number Diff line number Diff line change
@@ -1,3 +0,0 @@
<p style="font-size: 20px; color: red;">IMPORTANT NOTICE!</p>

Version 0.1.2 has a **REALLY BIG ISSUE** with interpolated strings that breaks most configs, please update as soon as possible to avoid further problems.
3 changes: 0 additions & 3 deletions Announcements/pt.md
Original file line number Diff line number Diff line change
@@ -1,3 +0,0 @@
<p style="font-size: 20px; color: red;">IMPORTANT NOTICE!</p>

Version 0.1.2 has a **REALLY BIG ISSUE** with interpolated strings that breaks most configs, please update as soon as possible to avoid further problems.
3 changes: 0 additions & 3 deletions Announcements/ro.md
Original file line number Diff line number Diff line change
@@ -1,3 +0,0 @@
<p style="font-size: 20px; color: red;">IMPORTANT NOTICE!</p>

Version 0.1.2 has a **REALLY BIG ISSUE** with interpolated strings that breaks most configs, please update as soon as possible to avoid further problems.
3 changes: 0 additions & 3 deletions Announcements/ru.md
Original file line number Diff line number Diff line change
@@ -1,3 +0,0 @@
<p style="font-size: 20px; color: red;">IMPORTANT NOTICE!</p>

Version 0.1.2 has a **REALLY BIG ISSUE** with interpolated strings that breaks most configs, please update as soon as possible to avoid further problems.
3 changes: 0 additions & 3 deletions Announcements/tr.md
Original file line number Diff line number Diff line change
@@ -1,3 +0,0 @@
<p style="font-size: 20px; color: red;">IMPORTANT NOTICE!</p>

Version 0.1.2 has a **REALLY BIG ISSUE** with interpolated strings that breaks most configs, please update as soon as possible to avoid further problems.
15 changes: 15 additions & 0 deletions Changelog/0.1.6.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
Changelog for version 0.1.6

- Persian translation by LilToba
- Added support for custom codepage encodings like windows-1251 in Http Request block
- Added button to clone a config
- Added support for async in Script block with NodeJS interpreter
- Added ability to change page size in ConfigSelector and WordlistSelector
- Fixed NRE in ProxyCheckOptions
- Added keySize parameter to AESEncrypt and AESDecrypt
- Fixed plugins not being extracted correctly sometimes
- Fixed updater not creating new directories
- Added support for uploading multiple files with puppeteer (disruptive change, removed previous block)
- Added GetFilesInFolder block
- Added support for big combination datapools
- Fixed editor in Script block not updating correctly
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, 5);
public Version RemoteVersion { get; private set; } = new(0, 1, 5);
public Version CurrentVersion { get; private set; } = new(0, 1, 6);
public Version RemoteVersion { get; private set; } = new(0, 1, 6);
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.5
0.1.6

0 comments on commit 0d5423f

Please sign in to comment.