Next release - Version 1.0.53
Version 1.0.53 of the Corvina application brings several updates aimed at fix issues and improve SDK usability. Below are the key changes in this release:
Resolved Multiple Package Upload Issue: Addressed issues preventing th upload and load multiple SDK packages within the same organization.
Removed Corvina-App Compiled Code: The compiled code from the dist directory related to Corvina-App has been removed. Users are now advised to access the latest version of the Corvina application via links provided on corvina.cloud. This change reduces the size of the SDK package and ensures users always have access to the most recent version of the Corvina application.
TypeScript Definition Update: TypeScript definitions have been updated to ensure compatibility and better integration with Corvina.
Enhanced Communication Settings: Added a new optional argument to the
setCommunicationSettings
function to specify the host for i18n files, enhancing localization capabilities.
import { initCorvina, setCommunicationSettings } from "corvina";
initCorvina(() => {
setCommunicationSettings("corvina.cloud", "exor", "http://localhost:8080/dist");
});
To use build-i18n
is now necessary to follow these steps:
Update Communication Settings for i18n Files: Update the communication settings parameters for i18n files using the provided TypeScript snippet. Ensure to specify the correct host for i18n files according to your requirements.
Build i18n Files: Execute the
build-i18n
script to build the i18n files with the updated communication settings.npm run build-i18n
Run SDK Application: After successfully building the i18n files, run the SDK application as usual.