Version 0.22

Available from July, 2023

New features

👉 We've introduced the possibility to make the signing flow more secure for user: if you setup the app in the way that this feature is enabled, user can switch on the authentication check (pin code or biometrics based on the app settings) every time when signature is generated by the app. By default this functionality is available for users and the setting is switched on. Read more

👉Now invoice or payment request can be paid with other assets which user has, not the one which is requested in the invoice or payment request. If you setup the app in the way that this feature is enabled, when user scans invoice or payment request QR code and doesn't have desired asset, he or she will be offered to search for other payment options using our warp transfer technology (yes, warp and transfer as one transaction!). Read more

👉Now invoice owner can check invoice details again and show its QR code if he or she opens the invoice list

👉French language is now available for app users! Expand your app presence with this update.

👉We've enriched the list of transaction types which are supported by WLA, now all TEOS Platform transactions are nicely handled by WLA.

👉Voting module was introduced, though it can't be used in productive apps as is, only for your investors demonstrations

Also, as usual, we fixed some bugs to make user experience better.

Configuration changes

To support all the changes below we had to introduce versions in the config file. Please, note that ui_config.v2.json file must be used to define WLA properties starting from v0.22 (you can find it in the blob storage). All previous versions used ui_config.v1.json file

Localization

Starting from this version localization of UI strings is not available for customers by default. So, we removed links to localization files from the config file. But now customer can easily define default language of the app using new parameter

	"default_language": "en", //possible values: en, de, es, fr

All custom texts still can be localized:

Intro

	"intro": {
		"img.1": "icons/intro1@3x.png", // use number to define the picture order
		"en.title.1": "Wallet", //use language code to define title in the specific language and use number to set title for the specific picture
  		"en.desc.1": "A convenient way to store and manage your digital assets/token", //use language code to define description in the specific language and use number to set description for the specific picture
		"de.title.1": "Wallet_de",
		"de.desc.1": "Description in German",
		"img.2": "icons/intro2@3x.png",
		"en.title.2": "Import token",
		"en.desc.2": "Import token from external wallets, like a Token Card",
		"de.title.1": "Import token_de",
		"de.desc.1": "Description in German",
		"img.3": "icons/intro3@3x.png",
		"en.title.3": "Request token",
		"en.desc.3": "Requests token as means of payment",
		"de.title.3": "Request token_de",
		"de.desc.3": "Description in German"
	},

New module "Voting" and its configuration

Last updated