The system works with the tray-icon, but the tray icon does not yet post notifications. Some work is required to provide meaningful interaction when clicking the notifications. Implemented a key/value store that allows the UI to save settings and other items.
10 lines
162 B
SQL
10 lines
162 B
SQL
/*
|
|
Key/value storage for frontends
|
|
*/
|
|
CREATE TABLE "UIStorage" (
|
|
"Scheme" TEXT NOT NULL,
|
|
"Key" TEXT NOT NULL,
|
|
"Value" TEXT NOT NULL
|
|
);
|
|
|