@musnows/scriverse 0.7.1 → 0.7.2
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.
- package/dist/app.js +10 -1
- package/dist/app.js.map +1 -1
- package/dist/database.js +54 -2
- package/dist/database.js.map +1 -1
- package/dist/public/app.js +1 -1
- package/dist/public/index.html +3 -3
- package/dist/public/relationship-graph.js +24 -4
- package/dist/public/styles.css +2 -2
- package/dist/store.js +2 -1
- package/dist/store.js.map +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
package/dist/store.js
CHANGED
|
@@ -37,6 +37,7 @@ export function normalizeWorkAgentTools(value) {
|
|
|
37
37
|
}
|
|
38
38
|
return WORK_AGENT_TOOL_IDS.filter((toolId) => enabled.has(toolId));
|
|
39
39
|
}
|
|
40
|
+
const galaxyFrameRates = [24, 30, 60, 90, 120, 144, 165, 240];
|
|
40
41
|
const defaultPlatformPageSizes = {
|
|
41
42
|
drafts: 30,
|
|
42
43
|
settings: 30,
|
|
@@ -78,7 +79,7 @@ function platformPageSizes(value) {
|
|
|
78
79
|
}
|
|
79
80
|
function galaxyFrameRate(value) {
|
|
80
81
|
const candidate = Number(value);
|
|
81
|
-
return candidate
|
|
82
|
+
return galaxyFrameRates.includes(candidate) ? candidate : 30;
|
|
82
83
|
}
|
|
83
84
|
function settingsFromInput(settingsMarkdown, settings, fallback = []) {
|
|
84
85
|
if (settingsMarkdown !== undefined)
|