US-YW8: Import Scene Timeline Data
Novel writing app that bridges outlining and drafting. Built with Rust
Status: Beta
Brought to you by:
smithandweb
Originally created by: smith-and-web
As a yWriter user who tracks story chronology,
I want to have my scene date/time data preserved,
So that I can reference timeline information while drafting.
Parent Epic: [#123]
<SCENE>
<ID>1</ID>
<Title>The Package Arrives</Title>
<!-- Absolute date/time -->
<Date>2024-03-15</Date>
<Time>14:30</Time>
<!-- Relative story day -->
<Day>3</Day>
<Hour>14</Hour>
<Minute>30</Minute>
<!-- Duration -->
<LastsDays>0</LastsDays>
<LastsHours>2</LastsHours>
<LastsMinutes>30</LastsMinutes>
</SCENE>
| Field | Description | Format |
|---|---|---|
<Date> |
Absolute calendar date | YYYY-MM-DD or varies |
<Time> |
Absolute time | HH:MM |
<Day> |
Story day number | Integer |
<Hour> |
Hour of day | 0-23 |
<Minute> |
Minute of hour | 0-59 |
<LastsDays> |
Scene duration (days) | Integer |
<LastsHours> |
Scene duration (hours) | Integer |
<LastsMinutes> |
Scene duration (minutes) | Integer |
Timeline data is metadata that doesn't map directly to beats or prose. Options:
Originally posted by: smith-and-web
Partial implementation in PR [#140]: Scene timeline data (date, time, day) is parsed but not stored or exposed in the UI. Kindling doesn't have a timeline feature yet. Keeping open for future enhancement.
Related
Tickets:
#140