Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/v1.4.0' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
afaniuolo committed May 12, 2021
2 parents f48b162 + 1515f7c commit d461188
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 9 deletions.
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.3.4.0")]
[assembly: AssemblyFileVersion("1.3.4.0")]
[assembly: AssemblyVersion("1.4.0.0")]
[assembly: AssemblyFileVersion("1.4.0.0")]
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.3.4.0")]
[assembly: AssemblyFileVersion("1.3.4.0")]
[assembly: AssemblyVersion("1.4.0.0")]
[assembly: AssemblyFileVersion("1.4.0.0")]
4 changes: 4 additions & 0 deletions src/WFFM.ConversionTool.Library/Database/Forms/FormEntry.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ public FormEntry()

public Guid FormDefinitionId { get; set; }

public Guid? ContactId { get; set; }

public bool IsRedacted { get; set; }

[Column(TypeName = "datetime2")]
public DateTime Created { get; set; }

Expand Down
2 changes: 2 additions & 0 deletions src/WFFM.ConversionTool.Library/Migrators/DataMigrator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,8 @@ private void MigrateFormData(Guid formId)
Id = formDataRecord.Id,
FormDefinitionId = formDataRecord.FormItemId,
Created = formDataRecord.TimeStamp,
ContactId = null,
IsRedacted = false,
FieldDatas = fieldDataFormsRecords
};

Expand Down
4 changes: 2 additions & 2 deletions src/WFFM.ConversionTool.Library/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.3.4.0")]
[assembly: AssemblyFileVersion("1.3.4.0")]
[assembly: AssemblyVersion("1.4.0.0")]
[assembly: AssemblyFileVersion("1.4.0.0")]
2 changes: 1 addition & 1 deletion src/WFFM.ConversionTool/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ static void Main(string[] args)
System.Console.WriteLine();
System.Console.WriteLine(" ***********************************************************************");
System.Console.WriteLine(" * *");
System.Console.WriteLine(" * WFFM Conversion Tool - v1.3.4 *");
System.Console.WriteLine(" * WFFM Conversion Tool - v1.4.0 *");
System.Console.WriteLine(" * *");
System.Console.WriteLine(" ***********************************************************************");
System.Console.WriteLine();
Expand Down
4 changes: 2 additions & 2 deletions src/WFFM.ConversionTool/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.3.4.0")]
[assembly: AssemblyFileVersion("1.3.4.0")]
[assembly: AssemblyVersion("1.4.0.0")]
[assembly: AssemblyFileVersion("1.4.0.0")]

0 comments on commit d461188

Please sign in to comment.