Added
- Added the ability to export a spreadsheet of all dialogue for voice-over recording.
- Voice-over spreadsheets can be exported in either Microsoft Excel or CSV format.
- By default, the spreadsheet contains the line ID, character name (where detected), and line text. Additional columns can be added in Settings.
- Added the ability to preview Yarn dialogue in the editor.
- To use this feature, press
Control-Shift-P
(Command-Shift-P
on macOS), and type "Preview Dialogue".
- To use this feature, press
- Added the ability to save a self-contained HTML previewer of your Yarn dialogue.
- To use this feature, press
Control-Shift-P
(Command-Shift-P
on macOS), and type "Export Dialogue as HTML".
- To use this feature, press
- Added the ability to save a graphical representation of the Yarn dialogue.
- To use this feature, press
Control-Shift-P
(Command-Shift-P
on macOS), and type "Export Dialogue as Graph". - Graphs are exported in GraphViz format. You will need additional software to be able to view these graphs.
- To use this feature, press
- Added the ability to highlight a node with a colour.
-
To use this feature, add the
color
header to a node:title: MyNode color: red --- Lines here... ===
-
Valid colours are:
red
,green
,blue
,orange
,yellow
, andpurple
.
-
- The first few lines of a node will now be shown as a preview in the graph view.
- The graph view now starts centered on the first node in the file.
- Clicking 'Add Node' multiple times will now position each new node offset a little from the last, making it easier to see when you've added multiple new nodes.
- Added the ability to zoom in and out of the graph view using the scroll wheel (two-finger scroll on trackpads).
- Replaced the graph view's line-drawing algorithm with one that should be more stable.
- Nodes that don't have a
position
header set will appear stacked up in the graph view, which prevents a problem where it's unclear how many nodes you have in your document.
Changed
- Adjusted the background color of the graph view to provide better contrast.
- Increased the width of the 'Jump to Node' dropdown to 200px.
- Fixed a bug where the graph view would not update when the Yarn file was changed on Windows.