Skip to content

Commit

Permalink
Hotfix to 2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
hellzerg committed Jul 14, 2018
1 parent beb8c21 commit a8456b5
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 6 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

All notable changes to this project will be documented in this file.

## [2.2] - 2018-07-14
- Hotfix: Delete all & Options button anchoring

## [2.1] - 2018-07-13
- Clear clipboard when exiting
- Added questions when deleting accounts when Authorize is disabled
Expand Down
4 changes: 2 additions & 2 deletions Lain/MainForm.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Lain/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ static class Program

// Enter current version here
internal readonly static float Major = 2;
internal readonly static float Minor = 1;
internal readonly static float Minor = 2;

/* END OF VERSION PROPERTIES */

Expand Down
18 changes: 18 additions & 0 deletions Lain/Utilities.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using System.Windows.Forms;

Expand All @@ -21,5 +22,22 @@ internal static IEnumerable<Control> GetSelfAndChildrenRecursive(Control parent)
controls.Add(parent);
return controls;
}

//internal static string RetrieveLink(string text)
//{
// string result = string.Empty;

// IEnumerable<string> links = text.Split("\t\n ".ToCharArray(), StringSplitOptions.RemoveEmptyEntries).Where(s => s.StartsWith("http://") || s.StartsWith("www.") || s.StartsWith("https://"));
// foreach (string link in links)
// {
// if (!string.IsNullOrEmpty(link))
// {
// result = link;
// break;
// }
// }

// return result;
//}
}
}
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ https://github.com/hellzerg/lain/blob/master/IMAGES.md

## Details: ##

* Latest version: 2.1
* Released: July 13, 2018
* Latest version: 2.2
* Released: July 14, 2018
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.1
2.2

0 comments on commit a8456b5

Please sign in to comment.