Skip to content

Commit

Permalink
Offical v0.3.18 Release
Browse files Browse the repository at this point in the history
removed message window logo as well as main splash logo and help banner...was causing issues in some windows clients.

added curecoin testnet connection information to default coin file.
  • Loading branch information
embiimob committed Jan 28, 2022
1 parent 74faa36 commit 7b0f019
Show file tree
Hide file tree
Showing 10 changed files with 265 additions and 472 deletions.
17 changes: 9 additions & 8 deletions ADD/About.Designer.cs

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

3 changes: 1 addition & 2 deletions ADD/About.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ public About()
{
InitializeComponent();
}



}
}
2 changes: 1 addition & 1 deletion ADD/Info.html
Original file line number Diff line number Diff line change
Expand Up @@ -633,7 +633,7 @@ <h2><a name="XIV">Getting Coin for your Wallet</a></h2>



<center><p>2013-2016 Open-Source joy, feel free to share, but please attribute to <a href="http://hugpuddle.org">HugPuddle</a> & The AtomSea and embii.</p>
<center><p>2013-2022 Open-Source joy, feel free to share, but please attribute to <a href="http://hugpuddle.org">HugPuddle</a> & The AtomSea and embii.</p>
<p>Hugz as Bitcoin Tips for Apertus development 1HuGpUDDLEhvehXE1P6xeudqAHqKfs1BFM</p>
<p>Want to help code? (please :) ) Find us on <a href="https://github.com/HugPuddle/Apertus"> Github - Apertus</a>.</center>

Expand Down
490 changes: 216 additions & 274 deletions ADD/Main.Designer.cs

Large diffs are not rendered by default.

26 changes: 8 additions & 18 deletions ADD/Main.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1142,6 +1142,7 @@ public void RefreshCoinTypes()
writeCoinConf.WriteLine("Potcoin 55 20 0 .0000548 330 42000 127.0.0.1 RPC_USER_CHANGE_ME RPC_PASSWORD_CHANGE_ME True True False False POT False .001 False");
writeCoinConf.WriteLine("Florincoin 35 20 0 .00001 330 7317 127.0.0.1 RPC_USER_CHANGE_ME RPC_PASSWORD_CHANGE_ME True False False False FLC False .001 False");
writeCoinConf.WriteLine("Curecoin 25 20 0 .00001 330 19911 127.0.0.1 RPC_USER_CHANGE_ME RPC_PASSWORD_CHANGE_ME True False False False CURE False .001 False");
writeCoinConf.WriteLine("Curecoin-T 111 20 0 .0001 330 18600 127.0.0.1 RPC_USER_CHANGE_ME RPC_PASSWORD_CHANGE_ME True False False False CURE-T False .001 False");
writeCoinConf.WriteLine("Namecoin 52 20 0 .01 330 8336 127.0.0.1 RPC_USER_CHANGE_ME RPC_PASSWORD_CHANGE_ME True False False False NMC False .001 False");
writeCoinConf.WriteLine("Primecoin 23 20 0 .01 330 9912 127.0.0.1 RPC_USER_CHANGE_ME RPC_PASSWORD_CHANGE_ME True False False False XPM False .001 False");
writeCoinConf.WriteLine("Primecoin-T 111 20 0 .01 330 9914 127.0.0.1 RPC_USER_CHANGE_ME RPC_PASSWORD_CHANGE_ME True False False False XPM-T False .001 False");
Expand Down Expand Up @@ -1321,13 +1322,13 @@ private void txtMessage_TextChanged(object sender, EventArgs e)
if (txtMessage.Text == "")
{
txtMessage.ScrollBars = ScrollBars.None;
imgEnterMessageHere.Visible = true;

if (txtFileName.TextLength < 1) { btnArchive.Enabled = false; }
}
else
{
txtMessage.ScrollBars = ScrollBars.Both;
imgEnterMessageHere.Visible = false;


}
updateEstimatedCost();
Expand Down Expand Up @@ -1555,7 +1556,7 @@ private void cmbWalletLabel_SelectedIndexChanged(object sender, EventArgs e)
btnAttachFile.Enabled = true;
proofToolStripMenuItem.Enabled = true;
txtMessage.Select();
if (txtMessage.TextLength < 1) { imgEnterMessageHere.Visible = true; }

if (WalletLabel == "")
{
MessageBox.Show("Accounts without a label are not supported. Assign a label using your wallet software and retry.");
Expand All @@ -1569,7 +1570,6 @@ private void cmbWalletLabel_SelectedIndexChanged(object sender, EventArgs e)
txtFileName.Enabled = false;
btnAttachFile.Enabled = false;
proofToolStripMenuItem.Enabled = false;
imgEnterMessageHere.Visible = false;
btnArchive.Enabled = false;
imgLink.Enabled = false;
imgLink.Image = Properties.Resources.LinkDisabled;
Expand Down Expand Up @@ -3270,11 +3270,7 @@ public static byte[] StringToByteArray(string hex)
.ToArray();
}

private void tmrUpdateInfoText_Tick(object sender, EventArgs e)
{
Random random = new Random();
txtInfoBox.Text = infoArray[random.Next(0, infoArray.Count())];
}


private void webBrowser1_PreviewKeyDown(object sender, PreviewKeyDownEventArgs e)
{
Expand Down Expand Up @@ -3453,15 +3449,13 @@ private void webBrowser1_Navigated(object sender, WebBrowserNavigatedEventArgs e

if (webBrowser1.DocumentText == "")
{
imgApertusSplash.Visible = true;
txtInfoBox.Visible = true;

txtTransIDSearch.ForeColor = System.Drawing.Color.Gray;
txtTransIDSearch.Text = "ENTER SEARCH STRING";
}
else
{
txtInfoBox.Visible = false;
imgApertusSplash.Visible = false;

txtTransIDSearch.ForeColor = System.Drawing.Color.Black;
}

Expand Down Expand Up @@ -3965,11 +3959,7 @@ private void Main_Shown(object sender, EventArgs e)
catch { }
}

private void imgApertusSplash_Resize(object sender, EventArgs e)
{
if (imgApertusSplash.Height < 50) { imgApertusSplash.Visible = false; }
else { if (webBrowser1.DocumentText == "") { imgApertusSplash.Visible = true; } }
}


private void cmbSignature_SelectedIndexChanged(object sender, EventArgs e)
{
Expand Down
Loading

0 comments on commit 7b0f019

Please sign in to comment.