Compare commits

..

5 Commits

Author SHA1 Message Date
OlgunR
eeb2ced141 Test push für Marvin No. 6 2026-03-31 12:04:32 +02:00
OlgunR
6f9c0e1bde Test push für Marvin No. 5 2026-03-31 12:00:26 +02:00
OlgunR
716774391c Update assembly info: version, copyright, trademark
Incremented assembly version to 2.9.3.0. Updated copyright year to 2026 and cleared the trademark field in AssemblyInfo.vb.
2026-03-11 13:33:52 +01:00
OlgunR
e72cfcb632 Add comment for status translation in EnvelopeHistory
Added a developer note in EnvelopeHistory.cs to indicate that status translation should be implemented similarly to the envelope entity. No functional changes were made.
2026-03-11 13:15:30 +01:00
OlgunR
f0f96e45fd Fix typo in DocumentSigned4RaC resource string
Corrected "red and confirmed" to "read and confirmed" in Model.en.resx.
2026-03-11 10:37:42 +01:00
3 changed files with 6 additions and 4 deletions

View File

@@ -13,6 +13,7 @@ namespace EnvelopeGenerator.Domain.Entities
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
[Column("GUID")]
public long Id { get; set; }
[Required]
@@ -44,5 +45,6 @@ namespace EnvelopeGenerator.Domain.Entities
[NotMapped]
public string StatusTranslated => My.Resources.Model.ResourceManager.GetString(Status.ToString());
// here i have to do it like in envelope
}
}

View File

@@ -157,7 +157,7 @@
<value>Document signed</value>
</data>
<data name="DocumentSigned4RaC" xml:space="preserve">
<value>Document red and confirmed</value>
<value>Document read and confirmed</value>
</data>
<data name="Draft" xml:space="preserve">
<value>Draft</value>

View File

@@ -10,8 +10,8 @@ Imports System.Runtime.InteropServices
<Assembly: AssemblyConfiguration("")>
<Assembly: AssemblyCompany("Digital Data")>
<Assembly: AssemblyProduct("Envelope Generator")>
<Assembly: AssemblyCopyright("Copyright © 2024")>
<Assembly: AssemblyTrademark("2.9.2.0")>
<Assembly: AssemblyCopyright("2026")>
<Assembly: AssemblyTrademark("")>
<Assembly: AssemblyCulture("")>
' Setting ComVisible to false makes the types in this assembly not visible
@@ -32,5 +32,5 @@ Imports System.Runtime.InteropServices
' 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("2.9.2.0")>
<Assembly: AssemblyVersion("2.9.3.0")>
<Assembly: AssemblyFileVersion("1.0.0.0")>