Skip to content

Commit

Permalink
Updated embedded FAES and minor aesthetic fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mullak99 committed Oct 9, 2019
1 parent 9a38106 commit d426445
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions FileAES/DecryptForm.Designer.cs

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

4 changes: 2 additions & 2 deletions FileAES/DevForm.Designer.cs

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

4 changes: 2 additions & 2 deletions FileAES/EncryptForm.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 FileAES/MenuPanels/aboutPanel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ private string ConvertVersionToFormatted(string nonFormattedVersion)
if (versionSplit[1].ToUpper()[0] == 'B')
{
string betaTag = versionSplit[1].ToUpper().Replace("BETA", "").Replace("B", "");
formattedVersion += String.Format(" (BETA{0}", betaTag);
formattedVersion += String.Format(" (BETA {0}", betaTag.Replace(" ", ""));
}
else if (versionSplit[1].ToUpper()[0] == 'D')
{
Expand Down
2 changes: 1 addition & 1 deletion FileAES/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ namespace FAES_GUI
{
static class Program
{
private const string devAppendTag = "BETA 2";
private const string devAppendTag = "BETA 3";
private const string betaAppendTag = "";

private static bool _verbose = false;
Expand Down

0 comments on commit d426445

Please sign in to comment.