Skip to content

Commit

Permalink
Добавлен новый программер
Browse files Browse the repository at this point in the history
  • Loading branch information
hoplik committed May 1, 2024
1 parent 374373d commit 1260d10
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 9 deletions.
10 changes: 6 additions & 4 deletions FirehoseFinder.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
<OpenBrowserOnPublish>false</OpenBrowserOnPublish>
<AutorunEnabled>true</AutorunEnabled>
<ApplicationRevision>0</ApplicationRevision>
<ApplicationVersion>24.4.29.0</ApplicationVersion>
<ApplicationVersion>24.5.1.0</ApplicationVersion>
<UseApplicationTrust>false</UseApplicationTrust>
<CreateDesktopShortcut>true</CreateDesktopShortcut>
<PublishWizardCompleted>true</PublishWizardCompleted>
Expand Down Expand Up @@ -91,7 +91,8 @@
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\x86\Debug\</OutputPath>
<DefineConstants></DefineConstants>
<DefineConstants>
</DefineConstants>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<DebugType>full</DebugType>
<PlatformTarget>x86</PlatformTarget>
Expand All @@ -102,7 +103,8 @@
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\x86\Release\</OutputPath>
<DefineConstants></DefineConstants>
<DefineConstants>
</DefineConstants>
<Optimize>true</Optimize>
<DebugType>embedded</DebugType>
<PlatformTarget>x86</PlatformTarget>
Expand Down Expand Up @@ -658,4 +660,4 @@
</PackageReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>
</Project>
2 changes: 1 addition & 1 deletion ForFilter.xml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
</xsd:complexType>
</xsd:element>
</xsd:schema>
<dataroot xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" generated="2024-04-21T21:26:11">
<dataroot xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" generated="2024-05-01T21:40:18">
<ForFilter>
<HWID>009600E1</HWID>
<FullName>Snapdragon 210</FullName>
Expand Down
2 changes: 1 addition & 1 deletion ForFound.xml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
</xsd:complexType>
</xsd:element>
</xsd:schema>
<dataroot xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" generated="2024-04-21T21:26:16">
<dataroot xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" generated="2024-05-01T21:40:22">
<ForFound>
<Url>#https://github.com/hoplik/Firehose-Finder/blob/master/fh_collection/8403D39A/Go_prog_emmc_firehose_8917_ddr.mbn#</Url>
<HW_FH>000560E1</HW_FH>
Expand Down
6 changes: 5 additions & 1 deletion Forms/Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2517,7 +2517,11 @@ public void CheckIDs(string send_string)
{
for (int i = 0; i < dataGridView_collection.Rows.Count; i++)
{
if (Convert.ToByte(dataGridView_collection["LASTKNOWNSBLVER", i].Value.ToString(), 16) >= Convert.ToByte(label_SW_Ver.Text, 16))
string lastbyte = dataGridView_collection["LASTKNOWNSBLVER", i].Value.ToString().TrimStart('0');
if (string.IsNullOrWhiteSpace(lastbyte)) lastbyte = "0";
string currbyte = label_SW_Ver.Text.TrimStart('0');
if (string.IsNullOrWhiteSpace(currbyte)) currbyte = "0";
if (Convert.ToByte(lastbyte, 16) >= Convert.ToByte(currbyte, 16))
{
if (dataGridView_collection["Model", i].Value.ToString().IndexOf(label_model.Text, 0, StringComparison.OrdinalIgnoreCase) != -1) return; //Проверяем модель на наличие без учёта регистра!
}
Expand Down
4 changes: 2 additions & 2 deletions Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@
// Можно задать все значения или принять номера сборки и редакции по умолчанию
// используя "*", как показано ниже:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("24.4.29.0")]
[assembly: AssemblyFileVersion("24.4.29.0")]
[assembly: AssemblyVersion("24.5.1.0")]
[assembly: AssemblyFileVersion("24.5.1.0")]
[assembly: NeutralResourcesLanguage("ru-RU")]
Binary file not shown.

0 comments on commit 1260d10

Please sign in to comment.