Skip to content

Commit

Permalink
Expose ColoredTextBox to simplify integration into other plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
Rookiestyle committed Jan 22, 2023
1 parent 772ff6e commit dda22fa
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions src/ColoredSecureTextBox.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,11 @@ public override string ToString()
internal sealed class ColoredSecureTextBox : SecureTextBoxEx
{
private ColorTextBox m_text = null;
/// <summary>
/// Reference to the RIchTextBox used internally
/// Exposed as public to simpliy integration in other plugins
/// </summary>
public ColorTextBox ColoredTextBox { get { return m_text; } }

private bool m_bReadOnlySaved = false;
private bool m_bReadOnly = false;
Expand Down
4 changes: 2 additions & 2 deletions src/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden,
// indem Sie "*" wie unten gezeigt eingeben:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.15.1")]
[assembly: AssemblyFileVersion("0.15.1")]
[assembly: AssemblyVersion("0.15.2")]
[assembly: AssemblyFileVersion("0.15.2")]
2 changes: 1 addition & 1 deletion version.info
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
:
ColoredPassword:0.15.1
ColoredPassword:0.15.2
ColoredPassword!de:6
ColoredPassword!pl:2
ColoredPassword!pt:3
Expand Down

0 comments on commit dda22fa

Please sign in to comment.