DEM 2 1.0.450 Release Notes
Released 18.01.2021
This release continues to improve existing features while introducing a few significant feature contributions.
What's new
Multi-currency account currency change:
- Until now, on payment orders, the currency of multi-currency accounts could be changed only from account picker, but now we added posiliblity to change currency from the currency picker next to the amount. This feature is controlled by new configuration key FactoryConfig_AllowAmountCurrencyPicker. Its default value is false but you can set it to true in order to turn this feature on.
Signatory groups
- We expanded our SignatoriesPerSignatoryGroupSigningStatusDetails model with following property and added a new class AuthorizationUserInfo:
/// <summary>
/// Gets or sets the name of the signatory group.
/// </summary>
/// <value>
/// The name of the signatory group.
/// </value>
[DataMember(Name = "signatory-group-name")]
public string SignatoryGroupName { get; set; }
[Serializable]
[DataContract(Name = "authorization-user-info", Namespace = "authorization")]
public class AuthorizationUserInfo
{
/// <summary>
/// UserId
/// </summary>
[DataMember(Name = "user-id")]
public string UserId { get; set; }
/// <summary>
/// First name
/// </summary>
[DataMember(Name = "first-name")]
public string FirstName { get; set; }
/// <summary>
/// Last name
/// </summary>
[DataMember(Name = "last-name")]
public string LastName { get; set; }
/// <summary>
/// Group id
/// </summary>
[DataMember(Name = "group-id")]
public string GroupId { get; set; }
/// <summary>
/// Group name
/// </summary>
[DataMember(Name = "group-name")]
public string GroupName { get; set; }
/// <summary>
/// Initiated
/// </summary>
[DataMember(Name = "initiated")]
public DateTime? Initiated { get; set; }
}
Signatory group name is now shown on transaction details.
iOS simulator build
- New solution AssecoSEE.DEMO.iOS.Simulator added, with specific simulator dll for SxS added in ExternalDependecies folder.
- Build on AppCenter - Because there is not official build distribution for iOS, you can download build from this link.
Nova
- We expanded IRequestService with IApplicationService:
public interface IRequestService : IApplicationService
Latest application on AppCentar
Halk - SxS MToken - SC 24x7 UAT
DEM V2 - Staging - SxS on Halk test
DEM V2 - Demo - SxS on Halk test
Packages (450)
Contributions welcome!
If you have one or more of some common pieces of code that you are always replicating across delivery apps, don't hesitate to contribute! We are the first NuGet package you install when creating a new .Net Mobile banking app!
Please have a look at our contribution guide before you get started.
If you need any help getting started, please let us know.
Useful Links
Thank you to our community for helping to make DEM even better! Mobile Team