Skip to content

Commit

Permalink
PBE 1.7.4
Browse files Browse the repository at this point in the history
Bug fixes
  • Loading branch information
IndeedMiners committed Jul 21, 2020
1 parent 586b0df commit 0c1891d
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 12 deletions.
20 changes: 12 additions & 8 deletions PolarisBiosEditor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public partial class PolarisBiosEditor : Form

/* DATA */

string version = "1.7.3";
string version = "1.7.4";
string programTitle = "PolarisBiosEditor";


Expand Down Expand Up @@ -483,7 +483,7 @@ public PolarisBiosEditor()
{
InitializeComponent();
this.Text = this.programTitle + " " + this.version + " " + "Tweaked By Mattthev";
MessageBox.Show("Buy Pro version at https://mining-bios.eu/");

try
{

Expand Down Expand Up @@ -1594,10 +1594,7 @@ private void button1_Click(object sender, EventArgs e)
apply_timings(elpida_index, 7);

}
if (samsung_index == -1 && hynix_2_index == -1 && hynix_3_index == -1 && hynix_1_index == -1 && elpida_index == -1 && micron_index == -1)
{
MessageBox.Show("Sorry, no supported memory found. If you think this is an error, please file a bugreport @ https://github.com/IndeedMiners/PolarisBiosEditor/issues");
}

if (hynix_4_index != -1)
{
if (MessageBox.Show("Do you want Universal Hynix Timing?", "Important Question", MessageBoxButtons.YesNo) == DialogResult.Yes)
Expand All @@ -1612,8 +1609,15 @@ private void button1_Click(object sender, EventArgs e)
}
}

if (samsung_index == -1 && samsung_2_index == -1 && hynix_2_index == -1 && hynix_3_index == -1 && hynix_1_index == -1 && elpida_index == -1 && micron_index == -1)
{
MessageBox.Show("Sorry, no supported memory found. If you think this is an error, please file a bugreport @ https://github.com/IndeedMiners/PolarisBiosEditor/issues");
}
this.tablePOWERPLAY.Items[1].SubItems[1].Text = "2300";

if (MessageBox.Show("Buy Pro version at https://mining-bios.eu/", "PBE 3 PRO", MessageBoxButtons.YesNo, MessageBoxIcon.Asterisk) == DialogResult.Yes)
{
System.Diagnostics.Process.Start("https://bit.ly/mining-bios-eu");
}
}

private void editSubItem2_TextChanged(object sender, EventArgs e)
Expand All @@ -1623,7 +1627,7 @@ private void editSubItem2_TextChanged(object sender, EventArgs e)

private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
System.Diagnostics.Process.Start("http://bit.ly/mining-bios-eu");
System.Diagnostics.Process.Start("https://bit.ly/mining-bios-eu");
}
}
}
4 changes: 2 additions & 2 deletions Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.7.2.0")]
[assembly: AssemblyFileVersion("1.7.2.0")]
[assembly: AssemblyVersion("1.7.4.0")]
[assembly: AssemblyFileVersion("1.7.4.0")]
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# PolarisBiosEditor v1.7.2
# PolarisBiosEditor v1.7.4

## Buy mining bios with performance timings! https://mining-bios.eu/
**Polaris Bios Editor 3 PRO https://mining-bios.eu/product/polaris-bios-editor-3-pro-pbe-3-pro-performance-timings/**
Expand All @@ -22,6 +22,12 @@ works on linux with mono, executable is build against .net 3.5
one click timing feature should be used with care, it maybe not stable for you

please build the executable yourself or decompile the existing one if you don't trust
### v1.7.4
- Fixed bug no supported memory found (K4G80325FC)
- Old version bump in properties
### v1.7.3
- Added support for memory Samsung K4G80325FC
- Added new device AMD Radeon RX 580 2048SP - 6FDF
### v1.7.2
- Fixed apply timings for Hynix memory
- Added support for RX590
Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.7.2
1.7.4

0 comments on commit 0c1891d

Please sign in to comment.