@pi-unipi/info-screen 0.1.6 → 0.1.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/index.ts +1 -1
  2. package/package.json +1 -1
  3. package/types.ts +1 -1
package/index.ts CHANGED
@@ -31,7 +31,7 @@ const moduleReadyPromise = new Promise<void>((resolve) => {
31
31
  });
32
32
 
33
33
  /** Timeout for waiting for modules */
34
- const MODULE_WAIT_TIMEOUT_MS = 5000;
34
+ const MODULE_WAIT_TIMEOUT_MS = 8000;
35
35
 
36
36
  /**
37
37
  * Wait for modules to announce, then return.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pi-unipi/info-screen",
3
- "version": "0.1.6",
3
+ "version": "0.1.7",
4
4
  "description": "Dashboard and module registry for Unipi — configurable info overlay with tabbed groups",
5
5
  "type": "module",
6
6
  "license": "MIT",
package/types.ts CHANGED
@@ -70,7 +70,7 @@ export interface GroupSettings {
70
70
  /** Default settings */
71
71
  export const DEFAULT_SETTINGS: InfoScreenSettings = {
72
72
  showOnBoot: true,
73
- bootTimeoutMs: 5000,
73
+ bootTimeoutMs: 8000,
74
74
  groups: {},
75
75
  groupOrder: [],
76
76
  };