Skip to content

Commit

Permalink
Merge pull request #138 from italia/NoPairingSignature
Browse files Browse the repository at this point in the history
Added support for signing without pairing your CIE first. Translated most of variables and methods names.
  • Loading branch information
aantetomaso authored Oct 27, 2023
2 parents aef317f + ff674b3 commit 707d2e7
Show file tree
Hide file tree
Showing 12 changed files with 11,261 additions and 13,949 deletions.
14 changes: 7 additions & 7 deletions CIEID/CIEID.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@
<ApplicationIcon>images\logo_circle.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<Reference Include="Newtonsoft.Json, Version=12.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<HintPath>..\packages\Newtonsoft.Json.12.0.3\lib\net45\Newtonsoft.Json.dll</HintPath>
<Reference Include="Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<HintPath>..\packages\Newtonsoft.Json.13.0.3\lib\net45\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
Expand All @@ -67,11 +67,11 @@
<Compile Include="Controls\CustomRadioButton.cs">
<SubType>Component</SubType>
</Compile>
<Compile Include="Form1.cs">
<Compile Include="MainForm.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="Form1.Designer.cs">
<DependentUpon>Form1.cs</DependentUpon>
<Compile Include="MainForm.Designer.cs">
<DependentUpon>MainForm.cs</DependentUpon>
</Compile>
<Compile Include="Intro.cs">
<SubType>Form</SubType>
Expand All @@ -97,8 +97,8 @@
<EmbeddedResource Include="Controls\CarouselControl.resx">
<DependentUpon>CarouselControl.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Form1.resx">
<DependentUpon>Form1.cs</DependentUpon>
<EmbeddedResource Include="MainForm.resx">
<DependentUpon>MainForm.cs</DependentUpon>
<SubType>Designer</SubType>
</EmbeddedResource>
<EmbeddedResource Include="Intro.resx">
Expand Down
6 changes: 2 additions & 4 deletions CIEID/Controls/CarouselControl.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace CIEID.Controls
Expand Down Expand Up @@ -262,7 +259,8 @@ private void UpdateCarouselItem(int index, CieModel model)
if (model.IsEmpty)
{
carouselItem.Hide();
} else
}
else
{
var labelCardNumberValue = carouselItem.Controls.Find(String.Format("labelCardNumberValue{0}", index), false).FirstOrDefault();
var labelOwnerValue = carouselItem.Controls.Find(String.Format("labelOwnerValue{0}", index), false).FirstOrDefault();
Expand Down
3,645 changes: 0 additions & 3,645 deletions CIEID/Form1.Designer.cs

This file was deleted.

2 changes: 1 addition & 1 deletion CIEID/Intro.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ private void buttonStart_Click(object sender, EventArgs e)
Properties.Settings.Default.Save(); // Saves settings in application configuration file
}

MainForm mainForm = new MainForm(null);
mainForm mainForm = new mainForm(null);
mainForm.Show();

Hide();
Expand Down
3,731 changes: 3,731 additions & 0 deletions CIEID/MainForm.Designer.cs

Large diffs are not rendered by default.

Loading

0 comments on commit 707d2e7

Please sign in to comment.