The interactive file manager requires Javascript. Please enable it or use sftp or scp.
You may still browse the files here.
Download Latest Version
0.30.0 source code.zip (801.0 kB)
Email in envelope
Get an email when there's a new version of Sequential Workflow Designer
Home
/
v0.20.0
| Name | Modified | Size | InfoDownloads / Week |
|---|---|---|---|
| Parent folder | |||
| 0.20.0 source code.tar.gz | 2024年05月03日 | 560.9 kB | |
| 0.20.0 source code.zip | 2024年05月03日 | 720.5 kB | |
| README.md | 2024年05月03日 | 385 Bytes | |
| Totals: 3 Items | 1.3 MB | 0 | |
This version introduces the localization feature. Now you can localize the designer to any language you want.
:::js
const configuration = {
i18n: (key, defaultValue) => {
if (currentLang === 'pl') {
if (key === 'controlBar.undo') {
return 'Cofnij';
}
}
return defaultValue;
}
// ...
};