Skip to content

Commit

Permalink
PBE 1.7.5
Browse files Browse the repository at this point in the history
Ubermix 3.3
  • Loading branch information
IndeedMiners committed Dec 27, 2020
1 parent f29a7d1 commit b95ff8c
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 11 deletions.
15 changes: 11 additions & 4 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.4";
string version = "1.7.5";
string programTitle = "PolarisBiosEditor";


Expand Down Expand Up @@ -64,7 +64,9 @@ public partial class PolarisBiosEditor : Form
"999000000000000022559D0031626C46905F1015BC0D060C004004007D0714204A8900A0020071241B12312CC02D3C17", //new, please test
//Samsung K4G80325FC
"777000000000000022CC1C00106A5D4DD0571016B90D060C0060070014051420FA8900A0030000001011333DC0303A17",
"777000000000000022CC1C00106A6D4DD0571016B90D060C0060070014051420FA8900A0030000001B11333DC0303A17"
"777000000000000022CC1C00106A6D4DD0571016B90D060C0060070014051420FA8900A0030000001B11333DC0303A17",
// UberMix 3.3
"777000000000000022CC1C00AD615C42F0590F15300D9708006007000B031420FA8900A00300000011112F3FBB354019"
};

Dictionary<string, string> rc = new Dictionary<string, string>();
Expand Down Expand Up @@ -1513,16 +1515,21 @@ private void button1_Click(object sender, EventArgs e)

if (samsung_index != -1)
{
if (MessageBox.Show("Do you want faster Uber-mix 3.1?", "Important Question", MessageBoxButtons.YesNo) == DialogResult.Yes)
if (MessageBox.Show("Do you want faster Uber-mix 3.1?\nIf NO, you can choose from 3.2 and 3.3 later", "Important Question", MessageBoxButtons.YesNo) == DialogResult.Yes)
{
int num = (int)MessageBox.Show("Samsung Memory found at index #" + (object)samsung_index + ", now applying UBERMIX 3.1 timings to 1750+ strap(s)");
this.apply_timings1(samsung_index, 0);
}
else
else if (MessageBox.Show("Do you want Uber-mix 3.2?\nIf NO, Uber-mix 3.3 will be applied", "Important Question", MessageBoxButtons.YesNo) == DialogResult.Yes)
{
int num = (int)MessageBox.Show("Samsung Memory found at index #" + (object)samsung_index + ", now applying UBERMIX 3.2 timings to 1750+ strap(s)");
this.apply_timings1(samsung_index, 1);
}
else
{
int num = (int)MessageBox.Show("Samsung Memory found at index #" + (object)samsung_index + ", now applying UBERMIX 3.3 timings to 1750+ strap(s)");
this.apply_timings1(samsung_index, 12);
}
}

if (samsung_2_index != -1)
Expand Down
12 changes: 8 additions & 4 deletions PolarisBiosEditor.csproj
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{7D2BA443-2896-4CCE-89B6-5B39C49F2289}</ProjectGuid>
<OutputType>WinExe</OutputType>
<OutputType>Exe</OutputType>
<RootNamespace>PolarisBiosEditor</RootNamespace>
<AssemblyName>PolarisBiosEditor</AssemblyName>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
Expand Down Expand Up @@ -33,9 +33,13 @@
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup>
<ApplicationIcon>favicon.ico</ApplicationIcon>
</PropertyGroup>
<PropertyGroup>
<ApplicationIcon>favicon.ico</ApplicationIcon>
<StartupObject />
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
Expand Down Expand Up @@ -83,7 +87,7 @@
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
<Content Include="favicon.ico" />
<Content Include="favicon.ico" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>
7 changes: 5 additions & 2 deletions Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using System.Resources;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
Expand Down Expand Up @@ -32,5 +33,7 @@
// 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.4.0")]
[assembly: AssemblyFileVersion("1.7.4.0")]
[assembly: AssemblyVersion("1.7.5.0")]
[assembly: AssemblyFileVersion("1.7.5.0")]
[assembly: NeutralResourcesLanguage("en")]

Binary file modified favicon.ico
Binary file not shown.
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.7.4
1.7.5

0 comments on commit b95ff8c

Please sign in to comment.