Now clearing mruData when master password changes
Fixed resizing issue Now using MasterPassword icon in "Add Remove Programs" Increased version number to 1.4
This commit is contained in:
parent
b533400286
commit
8912d5b8e2
@ -91,5 +91,7 @@
|
|||||||
<WixVariable Id='WixUIDialogBmp' Value='SplashScreen.bmp' />
|
<WixVariable Id='WixUIDialogBmp' Value='SplashScreen.bmp' />
|
||||||
|
|
||||||
<Icon Id='masterpassword.ico' SourceFile='$(var.MasterPassword.ProjectDir)\masterpassword.ico' />
|
<Icon Id='masterpassword.ico' SourceFile='$(var.MasterPassword.ProjectDir)\masterpassword.ico' />
|
||||||
|
|
||||||
|
<Property Id="ARPPRODUCTICON" Value="masterpassword.ico" />
|
||||||
</Product>
|
</Product>
|
||||||
</Wix>
|
</Wix>
|
@ -50,4 +50,4 @@ using System.Runtime.InteropServices;
|
|||||||
// by using the '*' as shown below:
|
// by using the '*' as shown below:
|
||||||
// [assembly: AssemblyVersion("1.0.*")]
|
// [assembly: AssemblyVersion("1.0.*")]
|
||||||
[assembly: AssemblyVersion("1.0.*")]
|
[assembly: AssemblyVersion("1.0.*")]
|
||||||
[assembly: AssemblyFileVersion("1.3.0.0")]
|
[assembly: AssemblyFileVersion("1.4.0.0")]
|
||||||
|
@ -244,6 +244,7 @@ namespace MasterPassword
|
|||||||
//
|
//
|
||||||
// chkC2C
|
// chkC2C
|
||||||
//
|
//
|
||||||
|
this.chkC2C.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
||||||
this.chkC2C.AutoSize = true;
|
this.chkC2C.AutoSize = true;
|
||||||
this.chkC2C.Location = new System.Drawing.Point(156, 122);
|
this.chkC2C.Location = new System.Drawing.Point(156, 122);
|
||||||
this.chkC2C.Name = "chkC2C";
|
this.chkC2C.Name = "chkC2C";
|
||||||
@ -256,7 +257,7 @@ namespace MasterPassword
|
|||||||
//
|
//
|
||||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||||
this.ClientSize = new System.Drawing.Size(324, 181);
|
this.ClientSize = new System.Drawing.Size(324, 182);
|
||||||
this.Controls.Add(this.btnGetPassword);
|
this.Controls.Add(this.btnGetPassword);
|
||||||
this.Controls.Add(this.chkC2C);
|
this.Controls.Add(this.chkC2C);
|
||||||
this.Controls.Add(this.btnDelete);
|
this.Controls.Add(this.btnDelete);
|
||||||
@ -275,7 +276,7 @@ namespace MasterPassword
|
|||||||
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
||||||
this.MaximizeBox = false;
|
this.MaximizeBox = false;
|
||||||
this.MaximumSize = new System.Drawing.Size(800, 220);
|
this.MaximumSize = new System.Drawing.Size(800, 220);
|
||||||
this.MinimumSize = new System.Drawing.Size(260, 220);
|
this.MinimumSize = new System.Drawing.Size(320, 220);
|
||||||
this.Name = "frmMain";
|
this.Name = "frmMain";
|
||||||
this.Text = "MasterPassword";
|
this.Text = "MasterPassword";
|
||||||
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmMain_FormClosing);
|
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmMain_FormClosing);
|
||||||
|
@ -99,6 +99,7 @@ namespace MasterPassword
|
|||||||
string appDataPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData), Application.ProductName, fileName);
|
string appDataPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData), Application.ProductName, fileName);
|
||||||
if (File.Exists(appDataPath))
|
if (File.Exists(appDataPath))
|
||||||
{
|
{
|
||||||
|
mruData.Clear();
|
||||||
string json = "";
|
string json = "";
|
||||||
using (BinaryReader br = new BinaryReader(File.Open(appDataPath, FileMode.Open)))
|
using (BinaryReader br = new BinaryReader(File.Open(appDataPath, FileMode.Open)))
|
||||||
{
|
{
|
||||||
@ -204,8 +205,10 @@ namespace MasterPassword
|
|||||||
{
|
{
|
||||||
txtUsername.Text = "";
|
txtUsername.Text = "";
|
||||||
txtPassword.Text = "";
|
txtPassword.Text = "";
|
||||||
|
cmbSite.Text = "";
|
||||||
cmbType.SelectedIndex = -1;
|
cmbType.SelectedIndex = -1;
|
||||||
cmbSite.Items.Clear();
|
cmbSite.Items.Clear();
|
||||||
|
mruData.Clear();
|
||||||
nudCounter.Value = 1;
|
nudCounter.Value = 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user