arkaos 3.70.8 → 3.70.10
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/VERSION +1 -1
- package/core/personas/__pycache__/obsidian_store.cpython-313.pyc +0 -0
- package/core/personas/obsidian_store.py +7 -0
- package/dashboard/app/pages/personas/[id].vue +6 -3
- package/package.json +1 -1
- package/pyproject.toml +1 -1
- package/scripts/__pycache__/dashboard-api.cpython-313.pyc +0 -0
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.70.
|
|
1
|
+
3.70.10
|
|
Binary file
|
|
@@ -155,6 +155,7 @@ class ObsidianPersonaStore:
|
|
|
155
155
|
communication=PersonaCommunication(
|
|
156
156
|
**_filter_known(PersonaCommunication, comm_fm),
|
|
157
157
|
),
|
|
158
|
+
bio_md=str(fm.get("bio_md") or ""),
|
|
158
159
|
created_at=str(fm.get("created_at") or ""),
|
|
159
160
|
updated_at=str(fm.get("updated_at") or ""),
|
|
160
161
|
)
|
|
@@ -236,6 +237,12 @@ class ObsidianPersonaStore:
|
|
|
236
237
|
"created_at": persona.created_at or now,
|
|
237
238
|
"updated_at": now,
|
|
238
239
|
}
|
|
240
|
+
# v3.70.10 — long-form Markdown bio. Stored as a frontmatter
|
|
241
|
+
# block scalar so it survives round-trips; only emitted when set
|
|
242
|
+
# to keep bio-less persona files clean. YAML handles the multi-line
|
|
243
|
+
# value; the no-yaml fallback below can't, so skip it there.
|
|
244
|
+
if persona.bio_md and yaml is not None:
|
|
245
|
+
frontmatter["bio_md"] = persona.bio_md
|
|
239
246
|
if yaml is not None:
|
|
240
247
|
fm_block = yaml.safe_dump(
|
|
241
248
|
frontmatter,
|
|
@@ -310,7 +310,7 @@ function markedHtml(src: string): string {
|
|
|
310
310
|
// PR90a v3.31.0 — download persona as Markdown.
|
|
311
311
|
// v3.70.8 — instead of triggering a download, open a fullscreen
|
|
312
312
|
// dialog with raw markdown + live preview + Edit Bio + Download.
|
|
313
|
-
|
|
313
|
+
// (marked is already imported above for the bio preview.)
|
|
314
314
|
|
|
315
315
|
const mdOpen = ref(false)
|
|
316
316
|
const mdLoading = ref(false)
|
|
@@ -1350,9 +1350,11 @@ const vocabOptions = [
|
|
|
1350
1350
|
/>
|
|
1351
1351
|
</div>
|
|
1352
1352
|
</DashboardState>
|
|
1353
|
-
</template>
|
|
1354
1353
|
|
|
1355
|
-
<!-- v3.70.8 — Markdown viewer/editor (fullscreen)
|
|
1354
|
+
<!-- v3.70.8 — Markdown viewer/editor (fullscreen).
|
|
1355
|
+
Must live inside #body slot — DashboardPanel's default slot
|
|
1356
|
+
wraps header+body and a positional child here would override
|
|
1357
|
+
the whole panel and render nothing. -->
|
|
1356
1358
|
<UModal
|
|
1357
1359
|
v-model:open="mdOpen"
|
|
1358
1360
|
:ui="{
|
|
@@ -1471,6 +1473,7 @@ const vocabOptions = [
|
|
|
1471
1473
|
</div>
|
|
1472
1474
|
</template>
|
|
1473
1475
|
</UModal>
|
|
1476
|
+
</template>
|
|
1474
1477
|
</UDashboardPanel>
|
|
1475
1478
|
</template>
|
|
1476
1479
|
|
package/package.json
CHANGED
package/pyproject.toml
CHANGED
|
Binary file
|