You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following graph shows the general states used in the different implementations of Keyman Engine and the transitions between the states:
graph TD;
S([start]) -- install --> I(["Installed
(placed into Keyman file storage)"]);
I -- uninstall --> S;
I -- register --> R(["Registered
(associated with language)"]);
R -- unregister --> I;
R -- disable --> D(["Disabled
(still registered (in Keyman) but ignored)"]);
D -- enable --> R;
R -- activate --> A(["Activated
(will be used when typing)"]);
A -- deactivate --> R;
A -- disable --> D;