novelWriter 2.1.1__py3-none-any.whl → 2.2rc1__py3-none-any.whl

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 (109) hide show
  1. {novelWriter-2.1.1.dist-info → novelWriter-2.2rc1.dist-info}/METADATA +3 -3
  2. {novelWriter-2.1.1.dist-info → novelWriter-2.2rc1.dist-info}/RECORD +105 -76
  3. novelwriter/__init__.py +6 -24
  4. novelwriter/assets/i18n/project_de_DE.json +10 -0
  5. novelwriter/assets/i18n/project_en_GB.json +11 -0
  6. novelwriter/assets/i18n/project_en_US.json +10 -0
  7. novelwriter/assets/i18n/project_ja_JP.json +11 -1
  8. novelwriter/assets/i18n/project_nb_NO.json +10 -0
  9. novelwriter/assets/i18n/project_nn_NO.json +10 -0
  10. novelwriter/assets/icons/novelwriter.ico +0 -0
  11. novelwriter/assets/icons/novelwriter.svg +8 -183
  12. novelwriter/assets/icons/typicons_dark/icons.conf +17 -2
  13. novelwriter/assets/icons/typicons_dark/nw_deco-h2-narrow.svg +4 -0
  14. novelwriter/assets/icons/typicons_dark/nw_deco-h3-narrow.svg +4 -0
  15. novelwriter/assets/icons/typicons_dark/nw_deco-h4-narrow.svg +4 -0
  16. novelwriter/assets/icons/typicons_dark/nw_deco-note.svg +4 -0
  17. novelwriter/assets/icons/typicons_dark/nw_panel.svg +4 -0
  18. novelwriter/assets/icons/typicons_dark/nw_tb-bold.svg +4 -0
  19. novelwriter/assets/icons/typicons_dark/nw_tb-italic.svg +4 -0
  20. novelwriter/assets/icons/typicons_dark/nw_tb-markdown.svg +8 -0
  21. novelwriter/assets/icons/typicons_dark/nw_tb-shortcode.svg +8 -0
  22. novelwriter/assets/icons/typicons_dark/nw_tb-strike.svg +4 -0
  23. novelwriter/assets/icons/typicons_dark/nw_tb-subscript.svg +5 -0
  24. novelwriter/assets/icons/typicons_dark/nw_tb-superscript.svg +5 -0
  25. novelwriter/assets/icons/typicons_dark/nw_tb-underline.svg +5 -0
  26. novelwriter/assets/icons/typicons_dark/typ_eye.svg +4 -0
  27. novelwriter/assets/icons/typicons_dark/typ_th-dot-menu.svg +4 -0
  28. novelwriter/assets/icons/typicons_light/icons.conf +17 -2
  29. novelwriter/assets/icons/typicons_light/nw_deco-h2-narrow.svg +4 -0
  30. novelwriter/assets/icons/typicons_light/nw_deco-h3-narrow.svg +4 -0
  31. novelwriter/assets/icons/typicons_light/nw_deco-h4-narrow.svg +4 -0
  32. novelwriter/assets/icons/typicons_light/nw_deco-note.svg +4 -0
  33. novelwriter/assets/icons/typicons_light/nw_panel.svg +4 -0
  34. novelwriter/assets/icons/typicons_light/nw_tb-bold.svg +4 -0
  35. novelwriter/assets/icons/typicons_light/nw_tb-italic.svg +4 -0
  36. novelwriter/assets/icons/typicons_light/nw_tb-markdown.svg +8 -0
  37. novelwriter/assets/icons/typicons_light/nw_tb-shortcode.svg +8 -0
  38. novelwriter/assets/icons/typicons_light/nw_tb-strike.svg +4 -0
  39. novelwriter/assets/icons/typicons_light/nw_tb-subscript.svg +5 -0
  40. novelwriter/assets/icons/typicons_light/nw_tb-superscript.svg +5 -0
  41. novelwriter/assets/icons/typicons_light/nw_tb-underline.svg +5 -0
  42. novelwriter/assets/icons/typicons_light/typ_eye.svg +4 -0
  43. novelwriter/assets/icons/typicons_light/typ_th-dot-menu.svg +4 -0
  44. novelwriter/assets/icons/x-novelwriter-project.ico +0 -0
  45. novelwriter/assets/icons/x-novelwriter-project.svg +7 -206
  46. novelwriter/assets/manual.pdf +0 -0
  47. novelwriter/assets/sample.zip +0 -0
  48. novelwriter/assets/syntax/default_dark.conf +1 -0
  49. novelwriter/assets/syntax/default_light.conf +1 -0
  50. novelwriter/assets/syntax/grey_dark.conf +1 -0
  51. novelwriter/assets/syntax/grey_light.conf +1 -0
  52. novelwriter/assets/syntax/light_owl.conf +1 -0
  53. novelwriter/assets/syntax/night_owl.conf +1 -0
  54. novelwriter/assets/syntax/solarized_dark.conf +1 -0
  55. novelwriter/assets/syntax/solarized_light.conf +1 -0
  56. novelwriter/assets/syntax/tomorrow.conf +1 -0
  57. novelwriter/assets/syntax/tomorrow_night.conf +1 -0
  58. novelwriter/assets/syntax/tomorrow_night_blue.conf +1 -0
  59. novelwriter/assets/syntax/tomorrow_night_bright.conf +1 -0
  60. novelwriter/assets/syntax/tomorrow_night_eighties.conf +1 -0
  61. novelwriter/assets/text/credits_en.htm +7 -0
  62. novelwriter/assets/text/release_notes.htm +7 -37
  63. novelwriter/common.py +22 -1
  64. novelwriter/config.py +27 -42
  65. novelwriter/constants.py +45 -7
  66. novelwriter/core/buildsettings.py +40 -24
  67. novelwriter/core/coretools.py +8 -1
  68. novelwriter/core/docbuild.py +2 -6
  69. novelwriter/core/index.py +264 -175
  70. novelwriter/core/options.py +8 -3
  71. novelwriter/core/project.py +2 -2
  72. novelwriter/core/projectdata.py +3 -3
  73. novelwriter/core/tohtml.py +60 -59
  74. novelwriter/core/tokenizer.py +110 -70
  75. novelwriter/core/tomd.py +51 -38
  76. novelwriter/core/toodt.py +184 -147
  77. novelwriter/dialogs/preferences.py +75 -106
  78. novelwriter/dialogs/projsettings.py +101 -110
  79. novelwriter/dialogs/updates.py +25 -14
  80. novelwriter/enum.py +28 -3
  81. novelwriter/extensions/novelselector.py +1 -1
  82. novelwriter/gui/doceditor.py +1345 -1235
  83. novelwriter/gui/dochighlight.py +98 -62
  84. novelwriter/gui/docviewer.py +151 -340
  85. novelwriter/gui/docviewerpanel.py +457 -0
  86. novelwriter/gui/editordocument.py +126 -0
  87. novelwriter/gui/mainmenu.py +350 -300
  88. novelwriter/gui/noveltree.py +101 -125
  89. novelwriter/gui/outline.py +154 -171
  90. novelwriter/gui/projtree.py +480 -380
  91. novelwriter/gui/sidebar.py +106 -75
  92. novelwriter/gui/statusbar.py +1 -1
  93. novelwriter/gui/theme.py +114 -75
  94. novelwriter/guimain.py +353 -254
  95. novelwriter/shared.py +36 -3
  96. novelwriter/tools/dictionaries.py +268 -0
  97. novelwriter/tools/manusbuild.py +17 -6
  98. novelwriter/tools/manuscript.py +11 -3
  99. novelwriter/tools/manussettings.py +0 -14
  100. novelwriter/tools/projwizard.py +16 -2
  101. novelwriter/tools/writingstats.py +1 -1
  102. novelwriter/assets/icons/typicons_dark/typ_at.svg +0 -4
  103. novelwriter/assets/icons/typicons_dark/typ_th-menu.svg +0 -4
  104. novelwriter/assets/icons/typicons_light/typ_at.svg +0 -4
  105. novelwriter/assets/icons/typicons_light/typ_th-menu.svg +0 -4
  106. {novelWriter-2.1.1.dist-info → novelWriter-2.2rc1.dist-info}/LICENSE.md +0 -0
  107. {novelWriter-2.1.1.dist-info → novelWriter-2.2rc1.dist-info}/WHEEL +0 -0
  108. {novelWriter-2.1.1.dist-info → novelWriter-2.2rc1.dist-info}/entry_points.txt +0 -0
  109. {novelWriter-2.1.1.dist-info → novelWriter-2.2rc1.dist-info}/top_level.txt +0 -0
@@ -1,184 +1,9 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
- <svg
3
- xmlns:dc="http://purl.org/dc/elements/1.1/"
4
- xmlns:cc="http://creativecommons.org/ns#"
5
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
6
- xmlns:svg="http://www.w3.org/2000/svg"
7
- xmlns="http://www.w3.org/2000/svg"
8
- xmlns:xlink="http://www.w3.org/1999/xlink"
9
- id="svg8"
10
- version="1.1"
11
- viewBox="0 0 270.93333 270.93334"
12
- height="1024"
13
- width="1024">
14
- <defs
15
- id="defs2">
16
- <linearGradient
17
- id="linearGradient1470">
18
- <stop
19
- style="stop-color:#7a9cb8;stop-opacity:1"
20
- offset="0"
21
- id="stop1466" />
22
- <stop
23
- style="stop-color:#5978a6;stop-opacity:1"
24
- offset="1"
25
- id="stop1468" />
26
- </linearGradient>
27
- <rect
28
- x="60.484347"
29
- y="205.79962"
30
- width="130.57787"
31
- height="65.785888"
32
- id="rect852" />
33
- <rect
34
- id="rect1474"
35
- height="28.631245"
36
- width="177.70083"
37
- y="18.019813"
38
- x="13.463703" />
39
- <rect
40
- id="rect852-7"
41
- height="65.785889"
42
- width="130.57787"
43
- y="205.79962"
44
- x="60.484348" />
45
- <rect
46
- id="rect1544"
47
- height="65.785889"
48
- width="130.57787"
49
- y="205.79962"
50
- x="60.484348" />
51
- <rect
52
- x="60.484348"
53
- y="205.79962"
54
- width="130.57787"
55
- height="65.785889"
56
- id="rect1570" />
57
- <rect
58
- x="13.463703"
59
- y="18.019813"
60
- width="177.70083"
61
- height="28.631245"
62
- id="rect1587" />
63
- <filter
64
- style="color-interpolation-filters:sRGB;"
65
- id="filter1444">
66
- <feFlood
67
- flood-opacity="0.498039"
68
- flood-color="rgb(0,0,0)"
69
- result="flood"
70
- id="feFlood1434" />
71
- <feComposite
72
- in="flood"
73
- in2="SourceGraphic"
74
- operator="in"
75
- result="composite1"
76
- id="feComposite1436" />
77
- <feGaussianBlur
78
- in="composite1"
79
- stdDeviation="3"
80
- result="blur"
81
- id="feGaussianBlur1438" />
82
- <feOffset
83
- dx="6"
84
- dy="6"
85
- result="offset"
86
- id="feOffset1440" />
87
- <feComposite
88
- in="SourceGraphic"
89
- in2="offset"
90
- operator="over"
91
- result="composite2"
92
- id="feComposite1442" />
93
- </filter>
94
- <filter
95
- style="color-interpolation-filters:sRGB;"
96
- id="filter1456">
97
- <feFlood
98
- flood-opacity="0.498039"
99
- flood-color="rgb(0,0,0)"
100
- result="flood"
101
- id="feFlood1446" />
102
- <feComposite
103
- in="flood"
104
- in2="SourceGraphic"
105
- operator="in"
106
- result="composite1"
107
- id="feComposite1448" />
108
- <feGaussianBlur
109
- in="composite1"
110
- stdDeviation="3"
111
- result="blur"
112
- id="feGaussianBlur1450" />
113
- <feOffset
114
- dx="6"
115
- dy="6"
116
- result="offset"
117
- id="feOffset1452" />
118
- <feComposite
119
- in="SourceGraphic"
120
- in2="offset"
121
- operator="over"
122
- result="composite2"
123
- id="feComposite1454" />
124
- </filter>
125
- <radialGradient
126
- xlink:href="#linearGradient1470"
127
- id="radialGradient1474"
128
- cx="111.19364"
129
- cy="67.111206"
130
- fx="111.19364"
131
- fy="67.111206"
132
- r="130.96873"
133
- gradientUnits="userSpaceOnUse"
134
- gradientTransform="matrix(2.2584252,1.5089457,-0.74487144,1.1148423,-169.6027,-163.93817)" />
135
- </defs>
136
- <metadata
137
- id="metadata5">
138
- <rdf:RDF>
139
- <cc:Work
140
- rdf:about="">
141
- <dc:format>image/svg+xml</dc:format>
142
- <dc:type
143
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
144
- <dc:title></dc:title>
145
- </cc:Work>
146
- </rdf:RDF>
147
- </metadata>
148
- <g
149
- style="display:inline"
150
- id="layer1">
151
- <rect
152
- ry="21.166666"
153
- rx="21.166666"
154
- y="5.8208332"
155
- x="5.8208332"
156
- height="259.29166"
157
- width="259.29166"
158
- id="rect1467"
159
- style="display:inline;fill:url(#radialGradient1474);fill-opacity:1;stroke:#517995;stroke-width:2.64583;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
160
- </g>
161
- <g
162
- id="layer2"
163
- style="display:inline">
164
- <path
165
- id="rect1406"
166
- style="fill:#a11212;fill-opacity:1;stroke:#7e1b1b;stroke-width:9.99999;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter1444)"
167
- d="m 312,200 c -44.32,0 -80,35.68 -80,80 v 199.99805 a 279.99999,279.99999 0 0 0 0,0.002 279.99999,279.99999 0 0 0 0,0.0195 v 199.98242 c 0,44.31999 35.68,80 80,80 44.32,0 80,-35.68001 80,-80 v -200 a 120,120 0 0 1 120,-120 120,120 0 0 1 120,120 V 762.83789 H 792 V 480.00195 a 279.99999,279.99999 0 0 0 -280,-280 279.99999,279.99999 0 0 0 -0.81055,0 279.99999,279.99999 0 0 0 -133.46484,34.29688 C 363.30011,213.54621 339.29632,200 312,200 Z m 231.46094,563.22656 c -0.62174,0.0972 -1.2172,0.22317 -1.7793,0.37696 0.5621,-0.15379 1.15756,-0.27973 1.7793,-0.37696 z m -1.7793,0.37696 c -0.5621,0.15378 -1.09071,0.33534 -1.58008,0.53906 0.48937,-0.20372 1.01798,-0.38528 1.58008,-0.53906 z m 338.85742,-0.37696 c 0.62174,0.0972 1.2172,0.22317 1.7793,0.37696 -0.5621,-0.15379 -1.15756,-0.27973 -1.7793,-0.37696 z m 1.7793,0.37696 c 0.5621,0.15378 1.09071,0.33534 1.58008,0.53906 -0.48938,-0.20372 -1.01798,-0.38528 -1.58008,-0.53906 z"
168
- transform="scale(0.26458333)" />
169
- <path
170
- id="path897"
171
- style="display:inline;fill:#730d0d;fill-opacity:1;stroke:#590d0d;stroke-width:9.99999;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter1456)"
172
- d="m 632,762.83789 v 0.16406 h -85.58398 c -5.49302,0 -9.91602,2.2329 -9.91602,5.00586 0,0.52294 0.15913,1.02696 0.45117,1.5 h -0.44531 c 0.30916,2.03607 1.24102,3.99791 2.81641,5.57227 l 165.59961,165.49414 c 3.92061,3.91808 10.23371,3.91812 14.15429,0 L 884.67773,775.08008 c 1.57569,-1.57463 2.50725,-3.53578 2.81641,-5.57227 h -0.44531 c 0.29216,-0.47304 0.45117,-0.97706 0.45117,-1.5 0,-2.77296 -4.42304,-5.00586 -9.91602,-5.00586 H 792 v -0.16406 z"
173
- transform="scale(0.26458333)" />
174
- <rect
175
- style="fill:#c32222;fill-opacity:1;stroke:none;stroke-width:2.64583;stroke-linejoin:round;stroke-opacity:1"
176
- id="rect914"
177
- width="10.583333"
178
- height="119.0625"
179
- x="69.849998"
180
- y="67.997917"
181
- rx="5.2916665"
182
- ry="5.2916665" />
183
- </g>
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+ <svg width="256" height="256" version="1.1" viewBox="0 0 67.733 67.733" xmlns="http://www.w3.org/2000/svg">
4
+ <path d="m20.707 1.1297 37.318 6.987c0.39557 0.074068 0.71238 0.54183 0.71238 1.0492v49.454c0 0.50736-0.31681 0.97512-0.71238 1.0492l-37.318 6.987c-1.9163 0.0199-1.1646-0.30729-1.1646-0.95984v-63.606c0-0.65255-0.45734-1.2024 1.1646-0.95984z" fill="#346598"/>
5
+ <path d="m19.997 1.0721c-0.75676 0.024647-0.45489 0.48723-0.45489 1.0174v63.606c0 0.65255-0.75195 0.97981 1.1644 0.95991l4.2748-0.8006v-63.925l-4.2748-0.8006c-0.30412-0.045486-0.53484-0.063202-0.70948-0.057514z" fill="#28527a"/>
6
+ <path d="m19.738 1.0586c-3.7864 0.0032112-7.5349 0.95341-10.028 2.9485-0.52621 0.45109-0.71353 0.78923-0.71353 1.3737v56.972c0 0.58449 0.17728 0.77989 0.81276 1.3021 2.3431 1.7847 6.1263 3.0243 9.9289 3.02 0.63507-0.0047 1.003-0.22255 1.003-0.87772v-63.861c0-0.65517-0.29674-0.88723-1.003-0.87772z" fill="#1a344e"/>
7
+ <path d="m16.625 27.236-0.52346 0.03304v0.24313c0 0.11178-0.02089 0.19106-0.06253 0.2382-0.03698 0.05241-0.09951 0.08122-0.18714 0.0863l-2.9489 0.17061c-0.08696 5e-3 -0.14994-0.01575-0.18898-0.06215-0.039-0.04097-0.05856-0.1153-0.05856-0.2234v-0.23514l-0.47828 0.03019v1.9284l0.47828-0.02106v-0.23514c0-0.10269 0.01954-0.17913 0.05856-0.22968 0.03903-0.05059 0.10016-0.07802 0.18277-0.08209l3.7282-0.18383zm-0.09854 12.968-0.64014-0.03835v0.9454l0.64014 0.04413zm-0.0066-10.478-0.51582 0.0204v0.17543c0 0.16191-0.02086 0.27723-0.06241 0.34566-0.03692 0.0682-0.11021 0.11801-0.22063 0.14956l-3.5438 1.0865v0.70979l2.4247 0.90982-2.4247 0.96246v0.70211l3.5438 1.0249c0.11043 0.02989 0.18372 0.07922 0.22063 0.14689 0.04156 0.06781 0.06241 0.1822 0.06241 0.34412v0.18463l0.51582 0.01278v-1.2877l-3.151-0.84796 2.393-0.89955v-0.70194l-2.393-0.85617 3.1509-0.88596zm-0.17508 13.668-0.23658-0.90984-0.74453-0.06097v-0.64927l-0.49068-0.03713v0.64621l-1.7477-0.14311c-0.34414-0.02818-0.60377 0.06365-0.78056 0.27528-0.17617 0.2109-0.26412 0.53929-0.26412 0.98535 0 0.28483 0.03222 0.53522 0.09652 0.75148 0.06438 0.21653 0.15678 0.42014 0.27742 0.611l0.49432 0.05356v-0.73962l-0.28013-0.02831c-0.08224-0.13254-0.12359-0.31767-0.12359-0.55522 0-0.18356 0.04135-0.31722 0.12359-0.40151 0.08237-0.07901 0.21916-0.11025 0.41094-0.09292l1.7932 0.16203v1.1929l0.49068 0.04998v-1.1986zm-0.87873-31.249c0-0.34438-0.04568-0.62882-0.13701-0.85329-0.08661-0.21954-0.22735-0.4022-0.42229-0.54689l0.45688-0.15194v-1.065l-0.51104 0.11952v0.17411c0 0.11043-0.0204 0.19227-0.06105 0.24578-0.0361 0.05243-0.09959 0.08893-0.18963 0.10957l-1.7051 0.39102c-0.08695 0.01994-0.14993 0.01002-0.18896-0.02974-0.03467-0.03527-0.05236-0.10669-0.05236-0.21478v-0.2025l-0.47829 0.11205v1.8475l0.47828-0.1033v-0.2108c0-0.10269 0.01769-0.17917 0.05236-0.23005 0.03903-0.04647 0.102-0.07954 0.18896-0.09874l1.3353-0.29479c0.23278-0.05139 0.41484-3.82e-4 0.54558 0.15296 0.13107 0.15373 0.19675 0.37118 0.19675 0.65312 0 0.25983-0.05207 0.45893-0.15607 0.59639-0.09928 0.13626-0.26133 0.22744-0.48557 0.27326l-2.1556 0.4404v1.3877l0.47828-0.09114v-0.22684c0-0.10809 0.01769-0.18994 0.05236-0.24536 0.03903-0.05088 0.102-0.08532 0.18896-0.10235l1.4429-0.28246c0.74836-0.1465 1.1264-0.66454 1.1264-1.5533zm0 4.3907c0-0.68321-0.15507-1.1695-0.46426-1.4573-0.30285-0.28145-0.72486-0.37057-1.2629-0.27044-0.52811 0.09828-0.93576 0.34163-1.2259 0.72978-0.28852 0.38594-0.43227 0.90581-0.43227 1.5615 0 0.65566 0.14375 1.1277 0.43227 1.4176 0.29018 0.29156 0.69782 0.39981 1.2259 0.32229 0.53808-0.07898 0.96009-0.31215 1.2629-0.69995 0.30918-0.38524 0.46426-0.92016 0.46426-1.6034zm0 8.2547c-0.0091-0.61981-0.16007-1.0874-0.45081-1.4019-0.29391-0.3177-0.73147-0.44486-1.3094-0.38349-0.53652 0.05697-0.94199 0.28374-1.219 0.67958-0.2712 0.39864-0.40618 0.90375-0.40618 1.5164 0 0.3547 0.03222 0.65818 0.09652 0.91127 0.06009 0.25912 0.1548 0.49753 0.28406 0.71479l0.45468-0.03172v-0.75605l-0.23427 0.01808c-0.0563-0.10913-0.09721-0.23302-0.12314-0.37135-0.02161-0.13861-0.03276-0.30995-0.03276-0.51507 0-0.36166 0.08222-0.65811 0.2469-0.88978 0.16957-0.22743 0.43185-0.35906 0.78768-0.39383v3.002l0.30506-0.02087c0.48566-0.03322 0.87434-0.21983 1.1638-0.56089 0.2911-0.34298 0.43686-0.82916 0.43686-1.4568 0-0.02031 2.95e-4 -0.04042 0-0.06041zm0 22.671c-0.0091-0.6218-0.16007-1.1222-0.45081-1.4999-0.29391-0.3816-0.73147-0.60389-1.3094-0.66816-0.53652-0.05967-0.94199 0.07894-1.219 0.41456-0.2712 0.33968-0.40618 0.81544-0.40618 1.4281 0 0.3547 0.03222 0.66519 0.09652 0.93226 0.06009 0.27218 0.1548 0.53118 0.28406 0.77655l0.45468 0.06714v-0.75606l-0.23427-0.03284c-0.0563-0.12137-0.09721-0.25415-0.12314-0.39812-0.02161-0.14331-0.03276-0.31766-0.03276-0.52278 0-0.36166 0.08222-0.64024 0.2469-0.83611 0.16957-0.19056 0.43185-0.26458 0.78768-0.22199v3.002l0.30506 0.04545c0.48566 0.07236 0.87434-0.02975 1.1638-0.30787 0.2911-0.27969 0.43686-0.73418 0.43686-1.3618 0-0.02031 2.95e-4 -0.04037 0-0.06041zm-0.10242-28.936-0.4703 0.06937v0.17418c0 0.1381-0.01361 0.23383-0.04073 0.28742-0.0226 0.05844-0.07015 0.10673-0.14233 0.14456l-2.5331 1.4729v0.88768l2.5331 0.82361c0.07219 0.02509 0.11974 0.06134 0.14233 0.10855 0.02712 0.05225 0.04073 0.14454 0.04073 0.27712v0.18268l0.4703-0.0496v-1.1571l-2.506-0.71514 2.506-1.3491zm0 18.004-0.50459-0.01278v0.17412c0 0.10492-0.0204 0.1791-0.06106 0.22209-0.04062 0.04296-0.10361 0.063-0.18916 0.06046l-1.7121-0.05101c-0.08695-0.0026-0.14993-0.02889-0.18896-0.07871-0.03467-0.04425-0.05236-0.12025-0.05236-0.22835v-0.20308l-0.47829-0.01188v1.848l0.47828 0.02063v-0.20248c0-0.10269 0.01769-0.17518 0.05236-0.21707 0.03903-0.04175 0.102-0.06085 0.18896-0.05752l1.2618 0.04838c0.23692 0.0091 0.41198 0.08146 0.5245 0.21816 0.11728 0.13718 0.17602 0.36332 0.17602 0.67808v0.46412l0.50459 0.02584v-0.38286c0-0.23861-0.02746-0.44789-0.08219-0.62769-0.05466-0.17407-0.15242-0.31896-0.2931-0.43496l0.37529-0.10299zm0 3.0799-0.51104-0.02805v0.24023c0 0.11043-0.0204 0.18636-0.06105 0.22811-0.0361 0.0475-0.09716 0.06873-0.18271 0.06358l-1.7058-0.10262c-0.08696-0.0052-0.14994-0.03344-0.18898-0.08444-0.039-0.04556-0.05856-0.12221-0.05856-0.23031v-0.23514l-0.47828-0.02624v1.9284l0.47828 0.03538v-0.23514c0-0.10269 0.01955-0.17682 0.05856-0.22276 0.03903-0.04598 0.10016-0.0662 0.18277-0.06052l2.4669 0.16948zm0 10.405-0.50459-0.07809v0.17351c0 0.10492-0.0204 0.17647-0.06106 0.21418-0.04062 0.0377-0.10361 0.04959-0.18916 0.03597l-1.7121-0.2726c-0.08695-0.01385-0.14993-0.04829-0.18896-0.10316-0.03467-0.04874-0.05236-0.12703-0.05236-0.23513v-0.20249l-0.47829-0.07379v1.8475l0.47828 0.08254v-0.20248c0-0.10269 0.01769-0.17288 0.05236-0.21029 0.03903-0.03671 0.102-0.04765 0.18896-0.03306l1.2618 0.21169c0.23692 0.03974 0.41198 0.1354 0.5245 0.28665 0.11728 0.15236 0.17602 0.3861 0.17602 0.70087v0.46351l0.50459 0.09115v-0.38286c0-0.23861-0.02746-0.45144-0.08219-0.63832-0.05466-0.18114-0.15242-0.33868-0.2931-0.4729l0.37529-0.0538zm-0.38925-25.129c0 0.7021-0.32952 1.0784-0.98269 1.1285v-2.1688c0.30319-0.02963 0.54304 0.04335 0.71855 0.21936 0.17611 0.17661 0.26415 0.45058 0.26415 0.82099zm0 22.564c0 0.7021-0.32952 1.0068-0.98269 0.91484v-2.1682c0.30319 0.03628 0.54304 0.16141 0.71855 0.37558 0.17611 0.2149 0.26415 0.5074 0.26415 0.8778zm-0.02041-30.828c0 0.39796-0.10161 0.70996-0.30462 0.93528-0.19774 0.22374-0.50192 0.36725-0.91053 0.43062-0.40098 0.06219-0.6963 0.01297-0.88795-0.14666-0.19093-0.15903-0.28625-0.43276-0.28625-0.82156 0-0.3888 0.09532-0.69426 0.28624-0.91685 0.19165-0.218 0.48697-0.36259 0.88795-0.43384 0.4086-0.07261 0.71279-0.03329 0.91052 0.11913 0.20302 0.15774 0.30462 0.43592 0.30462 0.83388z" fill="#d4d4d4"/>
8
+ <path d="m29.498 34.351 1.2554-0.0035c0.66183-0.0018 1.122-0.14472 1.3837-0.42803 0.2935-0.31764 0.43986-0.82859 0.43986-1.5337v-13.591c0-0.70512-0.13008-1.2117-0.39087-1.5205-0.26162-0.34516-0.72148-0.55253-1.3829-0.62169l-1.0526-0.11006v-4.035l6.2152 0.80096 0.27993 3.4996c1.0487-1.3598 2.2197-2.2769 3.5073-2.7588 1.2959-0.5036 2.8285-0.63289 4.5832-0.39822 4.3479 0.58147 6.4295 3.4598 6.4295 8.6597v10.243c0 0.6265 0.10253 1.0809 0.30717 1.3626 0.22952 0.24963 0.59778 0.37345 1.1027 0.37206l1.0488-0.0029v3.4181l-6.6961 0.1791v-15.862c0-1.612-0.28587-2.8008-0.86091-3.5706-0.57948-0.80835-1.5272-1.2873-2.8572-1.4341-1.4698-0.16225-2.7016 0.18938-3.6834 1.0654-0.9942 0.8872-1.4961 2.2233-1.4961 3.9998v10.352c0 0.68328 0.10672 1.1788 0.31973 1.4861 0.24274 0.2723 0.65066 0.40734 1.2212 0.40577l1.1582-0.0032v3.7274l-10.832 0.28972z" fill="#ededed"/>
184
9
  </svg>
@@ -46,11 +46,20 @@ cross = typ_times.svg
46
46
  down = typ_chevron-down.svg
47
47
  edit = typ_pencil.svg
48
48
  export = typ_export.svg
49
+ fmt_bold = nw_tb-bold.svg
50
+ fmt_italic = nw_tb-italic.svg
51
+ fmt_mode-md = nw_tb-markdown.svg
52
+ fmt_mode-sc = nw_tb-shortcode.svg
53
+ fmt_strike = nw_tb-strike.svg
54
+ fmt_subscript = nw_tb-subscript.svg
55
+ fmt_superscript = nw_tb-superscript.svg
56
+ fmt_underline = nw_tb-underline.svg
49
57
  forward = typ_chevron-right.svg
50
58
  maximise = typ_arrow-maximise.svg
51
- menu = typ_th-menu.svg
59
+ menu = typ_th-dot-menu.svg
52
60
  minimise = typ_arrow-minimise.svg
53
61
  noncheckable = mixed_input-none.svg
62
+ panel = nw_panel.svg
54
63
  proj_chapter = mixed_document-chapter.svg
55
64
  proj_details = typ_th-list-grey.svg
56
65
  proj_document = typ_document-text.svg
@@ -60,7 +69,6 @@ proj_scene = mixed_document-scene.svg
60
69
  proj_section = mixed_document-section.svg
61
70
  proj_stats = typ_chart-bar-grey.svg
62
71
  proj_title = mixed_document-title.svg
63
- reference = typ_at.svg
64
72
  refresh = typ_refresh.svg
65
73
  remove = typ_minus.svg
66
74
  revert = typ_refresh-flipped.svg
@@ -83,14 +91,21 @@ sticky-off = typ_pin-outline.svg
83
91
  sticky-on = typ_pin.svg
84
92
  unchecked = mixed_input-unchecked.svg
85
93
  up = typ_chevron-up.svg
94
+ view = typ_eye.svg
86
95
  view_build = typ_export-grey.svg
87
96
  view_editor = mixed_edit.svg
88
97
  view_novel = typ_book-grey.svg
89
98
  view_outline = typ_puzzle-outline.svg
90
99
 
91
100
  deco_doc_h0 = nw_deco-h0.svg
101
+ deco_doc_h0_n = nw_deco-h0.svg
92
102
  deco_doc_h1 = nw_deco-h1.svg
103
+ deco_doc_h1_n = nw_deco-h1.svg
93
104
  deco_doc_h2 = nw_deco-h2.svg
105
+ deco_doc_h2_n = nw_deco-h2-narrow.svg
94
106
  deco_doc_h3 = nw_deco-h3.svg
107
+ deco_doc_h3_n = nw_deco-h3-narrow.svg
95
108
  deco_doc_h4 = nw_deco-h4.svg
109
+ deco_doc_h4_n = nw_deco-h4-narrow.svg
96
110
  deco_doc_more = nw_deco-noveltree-more.svg
111
+ deco_doc_nt_n = nw_deco-note.svg
@@ -0,0 +1,4 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="4" height="24" version="1.2" viewBox="0 0 4 24" xmlns="http://www.w3.org/2000/svg">
3
+ <rect y="1" width="4" height="22" rx="2" ry="2" fill="#d64848" stroke-width="0"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="4" height="24" version="1.2" viewBox="0 0 4 24" xmlns="http://www.w3.org/2000/svg">
3
+ <rect y="1" width="4" height="22" rx="2" ry="2" fill="#69c" stroke-width="0"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="4" height="24" version="1.2" viewBox="0 0 4 24" xmlns="http://www.w3.org/2000/svg">
3
+ <rect y="1" width="4" height="22" rx="2" ry="2" fill="#fff" stroke-width="0"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="4" height="24" version="1.2" viewBox="0 0 4 24" xmlns="http://www.w3.org/2000/svg">
3
+ <rect y="1" width="4" height="22" rx="2" ry="2" fill="#ffff84" stroke-width="0"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
+ <path d="m17.853 2.0017c-0.14248-0.00428-0.28548-1.936e-4 -0.42925 0.01171h-11.135c-2.3531-0.068148-4.4276 2.1102-4.2808 4.4518 0.00689 3.8473-0.014486 7.6959 0.00976 11.542 0.12963 2.1674 2.0751 4.0505 4.2711 3.9912 3.8794-0.0037 7.7592 0.0071 11.639-0.0059 2.3157-0.05864 4.2507-2.2581 4.0603-4.5591-0.0037-3.7862 0.0071-7.5728-0.0059-11.359-0.054966-2.1716-1.9914-4.0089-4.1286-4.0732zm-11.533 2.8514c0.10262-0.00515 0.20595 1.374e-4 0.30828 0.015613 2.2719-0.00131 4.5437 0.0026 6.8153-0.00195 1.5163 0.01818 3.0369-0.036922 4.5501 0.029275 0.83106 0.14317 1.246 1.0195 1.1395 1.7956-0.0023 1.7714-9.95e-4 3.543 0 5.3144h-14.271c-9.495e-4 -1.9468-0.0019-3.8929 0.00585-5.8394 0.049778-0.75434 0.73334-1.2775 1.4517-1.3135z" fill="#848484" stroke-width=".99912"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24" height="24" version="1.1" viewBox="0 0 6.35 6.35" xmlns="http://www.w3.org/2000/svg">
3
+ <path d="m1.3672 5.5562v-4.7625h1.6289q0.37252 0 0.68662 0.058435 0.32139 0.051131 0.55513 0.18991 0.24104 0.13878 0.37252 0.36522 0.13878 0.22644 0.13878 0.56975 0 0.1607-0.043826 0.32139-0.043826 0.16069-0.12417 0.29948-0.080349 0.13878-0.19721 0.24835-0.10957 0.10957-0.25565 0.1607v0.029218q0.18261 0.043827 0.33601 0.13878 0.1534 0.087653 0.27027 0.22644 0.11687 0.13878 0.18261 0.3287 0.065739 0.18261 0.065739 0.42365 0 0.36522-0.14608 0.62818-0.13878 0.26295-0.39444 0.43826-0.24835 0.168-0.58435 0.25565-0.33601 0.080349-0.72313 0.080349zm1.0737-2.8561h0.50401q0.39444 0 0.56975-0.1534 0.18261-0.1534 0.18261-0.40905 0-0.27757-0.18261-0.39444-0.18261-0.11687-0.56244-0.11687h-0.51131zm0 2.0233h0.60626q0.88383 0 0.88383-0.64279 0-0.31408-0.21914-0.44557-0.21914-0.13878-0.6647-0.13878h-0.60626z" fill="#aeaeae" stroke-opacity=".78039" stroke-width=".54782"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24" height="24" version="1.1" viewBox="0 0 6.35 6.35" xmlns="http://www.w3.org/2000/svg">
3
+ <path d="m2.3084 5.5562 0.94666-4.7625h0.78646l-0.94666 4.7625z" fill="#aeaeae" stroke-opacity=".78039" stroke-width=".54615"/>
4
+ </svg>
@@ -0,0 +1,8 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24" height="24" version="1.1" viewBox="0 0 6.35 6.35" xmlns="http://www.w3.org/2000/svg">
3
+ <g fill="#aeaeae" stroke-width="1.1">
4
+ <path d="m0.79397 2.8846-0.29357-0.21175 0.28393-0.5005-0.51975-0.23582 0.11068-0.3465 0.55825 0.1155 0.062562-0.56787h0.37057l0.062562 0.57268 0.55343-0.12032 0.1155 0.3465-0.51975 0.23582 0.28393 0.5005-0.29356 0.21175-0.385-0.42832z"/>
5
+ <path d="m2.8219 3.15-0.09999 0.37496h0.86866l-0.09374-0.37496q-0.08749-0.30622-0.16873-0.64993-0.081241-0.34372-0.16248-0.66243h-0.024997q-0.074992 0.32496-0.15623 0.66868-0.074992 0.33747-0.16248 0.64369zm-1.4749 2.0623 1.2749-4.0746h1.1062l1.2749 4.0746h-0.97489l-0.24997-0.96865h-1.2437l-0.24997 0.96865z"/>
6
+ <path d="m4.7812 2.8846-0.29357-0.21175 0.28394-0.5005-0.51975-0.23582 0.11069-0.3465 0.55825 0.1155 0.062562-0.56787h0.37056l0.062562 0.57268 0.55343-0.12032 0.1155 0.3465-0.51975 0.23582 0.28393 0.5005-0.29356 0.21175-0.385-0.42832z"/>
7
+ </g>
8
+ </svg>
@@ -0,0 +1,8 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24" height="24" version="1.1" viewBox="0 0 6.35 6.35" xmlns="http://www.w3.org/2000/svg">
3
+ <g fill="#aeaeae" stroke-width="1.3799">
4
+ <path d="m0.52917 5.2683v-4.1866h1.0272v0.37972h-0.49167v3.4272h0.49167v0.37972z"/>
5
+ <path d="m2.9 2.9219-0.077889 0.29209h0.67667l-0.073022-0.29209q-0.068154-0.23854-0.13144-0.50628-0.063285-0.26775-0.12657-0.51601h-0.019472q-0.058417 0.25314-0.1217 0.52088-0.058417 0.26288-0.12657 0.50141zm-1.1489 1.6065 0.9931-3.174h0.86166l0.9931 3.174h-0.75942l-0.19472-0.75455h-0.96876l-0.19472 0.75455z"/>
6
+ <path d="m4.7937 5.2683v-0.37972h0.49654v-3.4272h-0.49654v-0.37972h1.0272v4.1866z"/>
7
+ </g>
8
+ </svg>
@@ -0,0 +1,4 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24" height="24" version="1.1" viewBox="0 0 6.35 6.35" xmlns="http://www.w3.org/2000/svg">
3
+ <path d="m3.1785 5.5562q-0.46361 0-0.89912-0.17561-0.42848-0.17561-0.75863-0.49873l0.47766-0.55492q0.24585 0.2318 0.56195 0.37931 0.3161 0.14049 0.63219 0.14049 0.39336 0 0.59707-0.16156 0.20371-0.16156 0.20371-0.42848 0-0.14049-0.056194-0.23883-0.04917-0.098341-0.14751-0.16858-0.091316-0.077267-0.22478-0.14049-0.12644-0.063219-0.28097-0.12644l-0.63219-0.27395q-0.16858-0.070243-0.33717-0.17561-0.16156-0.10537-0.29502-0.25288-0.13346-0.14751-0.21775-0.34419-0.077268-0.19668-0.077268-0.44956 0-0.27395 0.11239-0.50575 0.11941-0.23883 0.32312-0.41444 0.20371-0.17561 0.48468-0.27395 0.288-0.098341 0.62517-0.098341 0.40039 0 0.77268 0.16156 0.37229 0.15454 0.63921 0.42146l-0.41444 0.5198q-0.22478-0.18263-0.46361-0.288-0.23883-0.10537-0.53385-0.10537-0.33014 0-0.52683 0.14751-0.19668 0.14049-0.19668 0.39336 0 0.13346 0.056194 0.2318 0.063219 0.091316 0.16156 0.16858 0.10537 0.070244 0.23883 0.13346 0.13346 0.056194 0.27395 0.11239l0.62516 0.2599q0.20371 0.084291 0.37229 0.19668 0.16858 0.11239 0.288 0.2599 0.12644 0.14751 0.19668 0.34419 0.070244 0.18966 0.070244 0.44253 0 0.28097-0.11239 0.52683-0.11239 0.24585-0.33015 0.43551-0.21073 0.18263-0.5198 0.29502-0.30205 0.10536-0.68838 0.10536zm-2.3848-2.6458h4.7625v0.52917h-4.7625z" fill="#aeaeae" stroke-opacity=".78039" stroke-width=".52683"/>
4
+ </svg>
@@ -0,0 +1,5 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24" height="24" version="1.1" viewBox="0 0 6.35 6.35" xmlns="http://www.w3.org/2000/svg">
3
+ <path d="m2.124 3.0221-0.16749 0.58257h1.2161l-0.16749-0.58257q-0.11651-0.37867-0.22575-0.77919-0.10195-0.40052-0.2039-0.79375h-0.029128q-0.10195 0.40052-0.2039 0.80103-0.10195 0.39323-0.21846 0.7719zm-1.5948 2.5342 1.5511-4.7625h0.99037l1.5511 4.7625h-0.88842l-0.37139-1.2889h-1.6021l-0.37139 1.2889z" fill="#aeaeae" stroke-opacity=".78039" stroke-width=".54616"/>
4
+ <path d="m4.101 5.5562v-2.3812h0.75354q0.18388 0 0.3353 0.032769 0.15503 0.029128 0.2668 0.098307 0.11538 0.065538 0.17667 0.17841 0.064898 0.11287 0.064898 0.27671 0 0.17113-0.086529 0.31676-0.086529 0.14564-0.24156 0.20026v0.014565q0.19469 0.043691 0.32088 0.18569 0.12979 0.13836 0.12979 0.37867 0 0.17841-0.068503 0.30948-0.068502 0.13107-0.19108 0.21846-0.11899 0.087383-0.28483 0.13107-0.16585 0.04005-0.36054 0.04005zm0.41823-1.3981h0.29925q0.24878 0 0.35693-0.091024 0.11177-0.091025 0.11177-0.24394 0-0.17477-0.11538-0.24759-0.11538-0.072819-0.34612-0.072819h-0.30646zm0 1.0705h0.35334q0.25959 0 0.4002-0.094666 0.14061-0.098307 0.14061-0.29856 0-0.18933-0.13701-0.27308-0.13701-0.087384-0.40381-0.087384h-0.35334z" fill="#69c" stroke-opacity=".78039" stroke-width=".27174"/>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24" height="24" version="1.1" viewBox="0 0 6.35 6.35" xmlns="http://www.w3.org/2000/svg">
3
+ <path d="m2.124 3.0221-0.16749 0.58257h1.2161l-0.16749-0.58257q-0.11651-0.37867-0.22575-0.77919-0.10195-0.40052-0.2039-0.79375h-0.029128q-0.10195 0.40052-0.2039 0.80103-0.10195 0.39323-0.21846 0.7719zm-1.5948 2.5342 1.5511-4.7625h0.99037l1.5511 4.7625h-0.88842l-0.37139-1.2889h-1.6021l-0.37139 1.2889z" fill="#aeaeae" stroke-opacity=".78039" stroke-width=".54616"/>
4
+ <path d="m4.101 3.175v-2.3812h0.75352q0.18389 0 0.33531 0.032768 0.15503 0.029128 0.2668 0.098307 0.11538 0.065538 0.17667 0.17841 0.064898 0.11287 0.064898 0.27671 0 0.17113-0.086528 0.31676-0.086528 0.14564-0.24156 0.20026v0.014565q0.19469 0.043691 0.32088 0.1857 0.12979 0.13836 0.12979 0.37867 0 0.17841-0.068503 0.30948t-0.19108 0.21845q-0.11897 0.087382-0.28482 0.13107-0.16585 0.04005-0.36054 0.04005zm0.41824-1.3981h0.29924q0.24878 0 0.35693-0.091024 0.11177-0.091024 0.11177-0.24394 0-0.17477-0.11538-0.24759-0.11538-0.072818-0.34612-0.072818h-0.30646zm0 1.0705h0.35332q0.25959 0 0.4002-0.094666 0.14061-0.098307 0.14061-0.29855 0-0.18932-0.13701-0.27307-0.13701-0.087383-0.40381-0.087383h-0.35332z" fill="#69c" stroke-opacity=".78039" stroke-width=".27173"/>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24" height="24" version="1.1" viewBox="0 0 6.35 6.35" xmlns="http://www.w3.org/2000/svg">
3
+ <path d="m3.1782 5.0271q-0.36231 0-0.6547-0.1017-0.28603-0.10806-0.49579-0.33689-0.2034-0.22883-0.31782-0.58479-0.10806-0.36231-0.10806-0.87717v-2.3328h0.73733v2.3899q0 0.33689 0.057206 0.57207 0.063563 0.22883 0.17162 0.36866 0.11441 0.13984 0.26697 0.2034 0.15255 0.057206 0.34324 0.057206 0.19068 0 0.3496-0.057206 0.15891-0.063564 0.27332-0.2034 0.11441-0.13984 0.17798-0.36866 0.063564-0.23519 0.063564-0.57207v-2.3899h0.70555v2.3328q0 0.51487-0.10806 0.87717-0.10806 0.35595-0.31782 0.58479-0.2034 0.22883-0.49579 0.33689-0.28603 0.1017-0.64835 0.1017z" fill="#aeaeae" stroke-opacity=".78039" stroke-width=".47673"/>
4
+ <rect x="1.0583" y="5.2917" width="4.2333" height=".52917" fill="#aeaeae" stroke-width="1.2172"/>
5
+ </svg>
@@ -0,0 +1,4 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
+ <path d="m22.803 11.373c-0.0913-0.1309-2.2682-3.2384-5.2724-5.3626-1.5576-1.1033-3.5222-1.7105-5.5309-1.7105-2.0075 0-3.9721 0.60721-5.5331 1.7105-3.0041 2.1241-5.1789 5.2317-5.2702 5.3626-0.2618 0.3773-0.2618 0.87781 0 1.2551 0.091301 0.1309 2.266 3.2384 5.2702 5.3626 1.5609 1.1022 3.5255 1.7094 5.5331 1.7094 2.0086 0 3.9732-0.60721 5.5309-1.7105 3.0041-2.1241 5.1811-5.2317 5.2724-5.3626 0.2629-0.3762 0.2629-0.87781 0-1.254zm-10.803 4.4771c-2.1274 0-3.85-1.727-3.85-3.85 0-2.1274 1.7226-3.85 3.85-3.85 2.123 0 3.85 1.7226 3.85 3.85 0 2.123-1.727 3.85-3.85 3.85zm2.2-3.85c0 1.2122-0.98781 2.2-2.2 2.2-1.2155 0-2.2-0.98781-2.2-2.2 0-1.2155 0.98451-2.2 2.2-2.2 1.2122 0 2.2 0.98451 2.2 2.2z" fill="#69c" stroke-width="1.1"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
+ <path d="m12 2a2.6315 2.6315 0 0 0-2.6314 2.6314 2.6315 2.6315 0 0 0 2.6314 2.6314 2.6315 2.6315 0 0 0 2.6314-2.6314 2.6315 2.6315 0 0 0-2.6314-2.6314zm0 7.3686a2.6315 2.6315 0 0 0-2.6314 2.6314 2.6315 2.6315 0 0 0 2.6314 2.6314 2.6315 2.6315 0 0 0 2.6314-2.6314 2.6315 2.6315 0 0 0-2.6314-2.6314zm0 7.3686a2.6315 2.6315 0 0 0-2.6314 2.6314 2.6315 2.6315 0 0 0 2.6314 2.6314 2.6315 2.6315 0 0 0 2.6314-2.6314 2.6315 2.6315 0 0 0-2.6314-2.6314z" fill="#aeaeae" stroke-width=".90909"/>
4
+ </svg>
@@ -46,11 +46,20 @@ cross = typ_times.svg
46
46
  down = typ_chevron-down.svg
47
47
  edit = typ_pencil.svg
48
48
  export = typ_export.svg
49
+ fmt_bold = nw_tb-bold.svg
50
+ fmt_italic = nw_tb-italic.svg
51
+ fmt_mode-md = nw_tb-markdown.svg
52
+ fmt_mode-sc = nw_tb-shortcode.svg
53
+ fmt_strike = nw_tb-strike.svg
54
+ fmt_subscript = nw_tb-subscript.svg
55
+ fmt_superscript = nw_tb-superscript.svg
56
+ fmt_underline = nw_tb-underline.svg
49
57
  forward = typ_chevron-right.svg
50
58
  maximise = typ_arrow-maximise.svg
51
- menu = typ_th-menu.svg
59
+ menu = typ_th-dot-menu.svg
52
60
  minimise = typ_arrow-minimise.svg
53
61
  noncheckable = mixed_input-none.svg
62
+ panel = nw_panel.svg
54
63
  proj_chapter = mixed_document-chapter.svg
55
64
  proj_details = typ_th-list-grey.svg
56
65
  proj_document = typ_document-text.svg
@@ -60,7 +69,6 @@ proj_scene = mixed_document-scene.svg
60
69
  proj_section = mixed_document-section.svg
61
70
  proj_stats = typ_chart-bar-grey.svg
62
71
  proj_title = mixed_document-title.svg
63
- reference = typ_at.svg
64
72
  refresh = typ_refresh.svg
65
73
  remove = typ_minus.svg
66
74
  revert = typ_refresh-flipped.svg
@@ -83,14 +91,21 @@ sticky-off = typ_pin-outline.svg
83
91
  sticky-on = typ_pin.svg
84
92
  unchecked = mixed_input-unchecked.svg
85
93
  up = typ_chevron-up.svg
94
+ view = typ_eye.svg
86
95
  view_build = typ_export-grey.svg
87
96
  view_editor = mixed_edit.svg
88
97
  view_novel = typ_book-grey.svg
89
98
  view_outline = typ_puzzle-outline.svg
90
99
 
91
100
  deco_doc_h0 = nw_deco-h0.svg
101
+ deco_doc_h0_n = nw_deco-h0.svg
92
102
  deco_doc_h1 = nw_deco-h1.svg
103
+ deco_doc_h1_n = nw_deco-h1.svg
93
104
  deco_doc_h2 = nw_deco-h2.svg
105
+ deco_doc_h2_n = nw_deco-h2-narrow.svg
94
106
  deco_doc_h3 = nw_deco-h3.svg
107
+ deco_doc_h3_n = nw_deco-h3-narrow.svg
95
108
  deco_doc_h4 = nw_deco-h4.svg
109
+ deco_doc_h4_n = nw_deco-h4-narrow.svg
96
110
  deco_doc_more = nw_deco-noveltree-more.svg
111
+ deco_doc_nt_n = nw_deco-note.svg
@@ -0,0 +1,4 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="4" height="24" version="1.2" viewBox="0 0 4 24" xmlns="http://www.w3.org/2000/svg">
3
+ <rect y="1" width="4" height="22" rx="2" ry="2" fill="#c82829" stroke-width="0"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="4" height="24" version="1.2" viewBox="0 0 4 24" xmlns="http://www.w3.org/2000/svg">
3
+ <rect y="1" width="4" height="22" rx="2" ry="2" fill="#4271ae" stroke-width="0"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="4" height="24" version="1.2" viewBox="0 0 4 24" xmlns="http://www.w3.org/2000/svg">
3
+ <rect y="1" width="4" height="22" rx="2" ry="2" fill="#333" stroke-width="0"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="4" height="24" version="1.2" viewBox="0 0 4 24" xmlns="http://www.w3.org/2000/svg">
3
+ <rect y="1" width="4" height="22" rx="2" ry="2" fill="#ad8700" stroke-width="0"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
+ <path d="m17.853 2.0017c-0.14248-0.00428-0.28548-1.936e-4 -0.42925 0.01171h-11.135c-2.3531-0.068148-4.4276 2.1102-4.2808 4.4518 0.00689 3.8473-0.014486 7.6959 0.00976 11.542 0.12963 2.1674 2.0751 4.0505 4.2711 3.9912 3.8794-0.0037 7.7592 0.0071 11.639-0.0059 2.3157-0.05864 4.2507-2.2581 4.0603-4.5591-0.0037-3.7862 0.0071-7.5728-0.0059-11.359-0.054966-2.1716-1.9914-4.0089-4.1286-4.0732zm-11.533 2.8514c0.10262-0.00515 0.20595 1.374e-4 0.30828 0.015613 2.2719-0.00131 4.5437 0.0026 6.8153-0.00195 1.5163 0.01818 3.0369-0.036922 4.5501 0.029275 0.83106 0.14317 1.246 1.0195 1.1395 1.7956-0.0023 1.7714-9.95e-4 3.543 0 5.3144h-14.271c-9.495e-4 -1.9468-0.0019-3.8929 0.00585-5.8394 0.049778-0.75434 0.73334-1.2775 1.4517-1.3135z" fill-opacity=".78039" stroke-width=".99912"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24" height="24" version="1.1" viewBox="0 0 6.35 6.35" xmlns="http://www.w3.org/2000/svg">
3
+ <path d="m1.3672 5.5562v-4.7625h1.6289q0.37252 0 0.68662 0.058435 0.32139 0.051131 0.55513 0.18991 0.24104 0.13878 0.37252 0.36522 0.13878 0.22644 0.13878 0.56975 0 0.1607-0.043826 0.32139-0.043826 0.16069-0.12417 0.29948-0.080349 0.13878-0.19721 0.24835-0.10957 0.10957-0.25565 0.1607v0.029218q0.18261 0.043827 0.33601 0.13878 0.1534 0.087653 0.27027 0.22644 0.11687 0.13878 0.18261 0.3287 0.065739 0.18261 0.065739 0.42365 0 0.36522-0.14608 0.62818-0.13878 0.26295-0.39444 0.43826-0.24835 0.168-0.58435 0.25565-0.33601 0.080349-0.72313 0.080349zm1.0737-2.8561h0.50401q0.39444 0 0.56975-0.1534 0.18261-0.1534 0.18261-0.40905 0-0.27757-0.18261-0.39444-0.18261-0.11687-0.56244-0.11687h-0.51131zm0 2.0233h0.60626q0.88383 0 0.88383-0.64279 0-0.31408-0.21914-0.44557-0.21914-0.13878-0.6647-0.13878h-0.60626z" fill-opacity=".78039" stroke-opacity=".78039" stroke-width=".54782"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24" height="24" version="1.1" viewBox="0 0 6.35 6.35" xmlns="http://www.w3.org/2000/svg">
3
+ <path d="m2.3084 5.5562 0.94666-4.7625h0.78646l-0.94666 4.7625z" fill-opacity=".78039" stroke-opacity=".78039" stroke-width=".54615"/>
4
+ </svg>
@@ -0,0 +1,8 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24" height="24" version="1.1" viewBox="0 0 6.35 6.35" xmlns="http://www.w3.org/2000/svg">
3
+ <g fill-opacity=".78039" stroke-width="1.1">
4
+ <path d="m0.79397 2.8846-0.29357-0.21175 0.28393-0.5005-0.51975-0.23582 0.11068-0.3465 0.55825 0.1155 0.062562-0.56787h0.37057l0.062562 0.57268 0.55343-0.12032 0.1155 0.3465-0.51975 0.23582 0.28393 0.5005-0.29356 0.21175-0.385-0.42832z"/>
5
+ <path d="m2.8219 3.15-0.09999 0.37496h0.86866l-0.09374-0.37496q-0.08749-0.30622-0.16873-0.64993-0.081241-0.34372-0.16248-0.66243h-0.024997q-0.074992 0.32496-0.15623 0.66868-0.074992 0.33747-0.16248 0.64369zm-1.4749 2.0623 1.2749-4.0746h1.1062l1.2749 4.0746h-0.97489l-0.24997-0.96865h-1.2437l-0.24997 0.96865z"/>
6
+ <path d="m4.7812 2.8846-0.29357-0.21175 0.28394-0.5005-0.51975-0.23582 0.11069-0.3465 0.55825 0.1155 0.062562-0.56787h0.37056l0.062562 0.57268 0.55343-0.12032 0.1155 0.3465-0.51975 0.23582 0.28393 0.5005-0.29356 0.21175-0.385-0.42832z"/>
7
+ </g>
8
+ </svg>
@@ -0,0 +1,8 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24" height="24" version="1.1" viewBox="0 0 6.35 6.35" xmlns="http://www.w3.org/2000/svg">
3
+ <g fill-opacity=".78039" stroke-width="1.3799">
4
+ <path d="m0.52917 5.2683v-4.1866h1.0272v0.37972h-0.49167v3.4272h0.49167v0.37972z"/>
5
+ <path d="m2.9 2.9219-0.077889 0.29209h0.67667l-0.073022-0.29209q-0.068154-0.23854-0.13144-0.50628-0.063285-0.26775-0.12657-0.51601h-0.019472q-0.058417 0.25314-0.1217 0.52088-0.058417 0.26288-0.12657 0.50141zm-1.1489 1.6065 0.9931-3.174h0.86166l0.9931 3.174h-0.75942l-0.19472-0.75455h-0.96876l-0.19472 0.75455z"/>
6
+ <path d="m4.7937 5.2683v-0.37972h0.49654v-3.4272h-0.49654v-0.37972h1.0272v4.1866z"/>
7
+ </g>
8
+ </svg>
@@ -0,0 +1,4 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24" height="24" version="1.1" viewBox="0 0 6.35 6.35" xmlns="http://www.w3.org/2000/svg">
3
+ <path d="m3.1785 5.5562q-0.46361 0-0.89912-0.17561-0.42848-0.17561-0.75863-0.49873l0.47766-0.55492q0.24585 0.2318 0.56195 0.37931 0.3161 0.14049 0.63219 0.14049 0.39336 0 0.59707-0.16156 0.20371-0.16156 0.20371-0.42848 0-0.14049-0.056194-0.23883-0.04917-0.098341-0.14751-0.16858-0.091316-0.077267-0.22478-0.14049-0.12644-0.063219-0.28097-0.12644l-0.63219-0.27395q-0.16858-0.070243-0.33717-0.17561-0.16156-0.10537-0.29502-0.25288-0.13346-0.14751-0.21775-0.34419-0.077268-0.19668-0.077268-0.44956 0-0.27395 0.11239-0.50575 0.11941-0.23883 0.32312-0.41444 0.20371-0.17561 0.48468-0.27395 0.288-0.098341 0.62517-0.098341 0.40039 0 0.77268 0.16156 0.37229 0.15454 0.63921 0.42146l-0.41444 0.5198q-0.22478-0.18263-0.46361-0.288-0.23883-0.10537-0.53385-0.10537-0.33014 0-0.52683 0.14751-0.19668 0.14049-0.19668 0.39336 0 0.13346 0.056194 0.2318 0.063219 0.091316 0.16156 0.16858 0.10537 0.070244 0.23883 0.13346 0.13346 0.056194 0.27395 0.11239l0.62516 0.2599q0.20371 0.084291 0.37229 0.19668 0.16858 0.11239 0.288 0.2599 0.12644 0.14751 0.19668 0.34419 0.070244 0.18966 0.070244 0.44253 0 0.28097-0.11239 0.52683-0.11239 0.24585-0.33015 0.43551-0.21073 0.18263-0.5198 0.29502-0.30205 0.10536-0.68838 0.10536zm-2.3848-2.6458h4.7625v0.52917h-4.7625z" fill-opacity=".78039" stroke-opacity=".78039" stroke-width=".52683"/>
4
+ </svg>
@@ -0,0 +1,5 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24" height="24" version="1.1" viewBox="0 0 6.35 6.35" xmlns="http://www.w3.org/2000/svg">
3
+ <path d="m2.124 3.0221-0.16749 0.58257h1.2161l-0.16749-0.58257q-0.11651-0.37867-0.22575-0.77919-0.10195-0.40052-0.2039-0.79375h-0.029128q-0.10195 0.40052-0.2039 0.80103-0.10195 0.39323-0.21846 0.7719zm-1.5948 2.5342 1.5511-4.7625h0.99037l1.5511 4.7625h-0.88842l-0.37139-1.2889h-1.6021l-0.37139 1.2889z" fill-opacity=".78039" stroke-opacity=".78039" stroke-width=".54616"/>
4
+ <path d="m4.101 5.5562v-2.3812h0.75354q0.18388 0 0.3353 0.032769 0.15503 0.029128 0.2668 0.098307 0.11538 0.065538 0.17667 0.17841 0.064898 0.11287 0.064898 0.27671 0 0.17113-0.086529 0.31676-0.086529 0.14564-0.24156 0.20026v0.014565q0.19469 0.043691 0.32088 0.18569 0.12979 0.13836 0.12979 0.37867 0 0.17841-0.068503 0.30948-0.068502 0.13107-0.19108 0.21846-0.11899 0.087383-0.28483 0.13107-0.16585 0.04005-0.36054 0.04005zm0.41823-1.3981h0.29925q0.24878 0 0.35693-0.091024 0.11177-0.091025 0.11177-0.24394 0-0.17477-0.11538-0.24759-0.11538-0.072819-0.34612-0.072819h-0.30646zm0 1.0705h0.35334q0.25959 0 0.4002-0.094666 0.14061-0.098307 0.14061-0.29856 0-0.18933-0.13701-0.27308-0.13701-0.087384-0.40381-0.087384h-0.35334z" fill="#4271ae" stroke-opacity=".78039" stroke-width=".27174"/>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24" height="24" version="1.1" viewBox="0 0 6.35 6.35" xmlns="http://www.w3.org/2000/svg">
3
+ <path d="m2.124 3.0221-0.16749 0.58257h1.2161l-0.16749-0.58257q-0.11651-0.37867-0.22575-0.77919-0.10195-0.40052-0.2039-0.79375h-0.029128q-0.10195 0.40052-0.2039 0.80103-0.10195 0.39323-0.21846 0.7719zm-1.5948 2.5342 1.5511-4.7625h0.99037l1.5511 4.7625h-0.88842l-0.37139-1.2889h-1.6021l-0.37139 1.2889z" fill-opacity=".78039" stroke-opacity=".78039" stroke-width=".54616"/>
4
+ <path d="m4.101 3.175v-2.3812h0.75352q0.18389 0 0.33531 0.032768 0.15503 0.029128 0.2668 0.098307 0.11538 0.065538 0.17667 0.17841 0.064898 0.11287 0.064898 0.27671 0 0.17113-0.086528 0.31676-0.086528 0.14564-0.24156 0.20026v0.014565q0.19469 0.043691 0.32088 0.1857 0.12979 0.13836 0.12979 0.37867 0 0.17841-0.068503 0.30948t-0.19108 0.21845q-0.11897 0.087382-0.28482 0.13107-0.16585 0.04005-0.36054 0.04005zm0.41824-1.3981h0.29924q0.24878 0 0.35693-0.091024 0.11177-0.091024 0.11177-0.24394 0-0.17477-0.11538-0.24759-0.11538-0.072818-0.34612-0.072818h-0.30646zm0 1.0705h0.35332q0.25959 0 0.4002-0.094666 0.14061-0.098307 0.14061-0.29855 0-0.18932-0.13701-0.27307-0.13701-0.087383-0.40381-0.087383h-0.35332z" fill="#4271ae" stroke-opacity=".78039" stroke-width=".27173"/>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24" height="24" version="1.1" viewBox="0 0 6.35 6.35" xmlns="http://www.w3.org/2000/svg">
3
+ <path d="m3.1782 5.0271q-0.36231 0-0.6547-0.1017-0.28603-0.10806-0.49579-0.33689-0.2034-0.22883-0.31782-0.58479-0.10806-0.36231-0.10806-0.87717v-2.3328h0.73733v2.3899q0 0.33689 0.057206 0.57207 0.063563 0.22883 0.17162 0.36866 0.11441 0.13984 0.26697 0.2034 0.15255 0.057206 0.34324 0.057206 0.19068 0 0.3496-0.057206 0.15891-0.063564 0.27332-0.2034 0.11441-0.13984 0.17798-0.36866 0.063564-0.23519 0.063564-0.57207v-2.3899h0.70555v2.3328q0 0.51487-0.10806 0.87717-0.10806 0.35595-0.31782 0.58479-0.2034 0.22883-0.49579 0.33689-0.28603 0.1017-0.64835 0.1017z" fill-opacity=".78039" stroke-opacity=".78039" stroke-width=".47673"/>
4
+ <rect x="1.0583" y="5.2917" width="4.2333" height=".52917" fill-opacity=".78039" stroke-width="1.2172"/>
5
+ </svg>
@@ -0,0 +1,4 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
+ <path d="m22.803 11.373c-0.0913-0.1309-2.2682-3.2384-5.2724-5.3626-1.5576-1.1033-3.5222-1.7105-5.5309-1.7105-2.0075 0-3.9721 0.60721-5.5331 1.7105-3.0041 2.1241-5.1789 5.2317-5.2702 5.3626-0.2618 0.3773-0.2618 0.87781 0 1.2551 0.091301 0.1309 2.266 3.2384 5.2702 5.3626 1.5609 1.1022 3.5255 1.7094 5.5331 1.7094 2.0086 0 3.9732-0.60721 5.5309-1.7105 3.0041-2.1241 5.1811-5.2317 5.2724-5.3626 0.2629-0.3762 0.2629-0.87781 0-1.254zm-10.803 4.4771c-2.1274 0-3.85-1.727-3.85-3.85 0-2.1274 1.7226-3.85 3.85-3.85 2.123 0 3.85 1.7226 3.85 3.85 0 2.123-1.727 3.85-3.85 3.85zm2.2-3.85c0 1.2122-0.98781 2.2-2.2 2.2-1.2155 0-2.2-0.98781-2.2-2.2 0-1.2155 0.98451-2.2 2.2-2.2 1.2122 0 2.2 0.98451 2.2 2.2z" fill="#4271ae" stroke-width="1.1"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
+ <path d="m12 2a2.6315 2.6315 0 0 0-2.6314 2.6314 2.6315 2.6315 0 0 0 2.6314 2.6314 2.6315 2.6315 0 0 0 2.6314-2.6314 2.6315 2.6315 0 0 0-2.6314-2.6314zm0 7.3686a2.6315 2.6315 0 0 0-2.6314 2.6314 2.6315 2.6315 0 0 0 2.6314 2.6314 2.6315 2.6315 0 0 0 2.6314-2.6314 2.6315 2.6315 0 0 0-2.6314-2.6314zm0 7.3686a2.6315 2.6315 0 0 0-2.6314 2.6314 2.6315 2.6315 0 0 0 2.6314 2.6314 2.6315 2.6315 0 0 0 2.6314-2.6314 2.6315 2.6315 0 0 0-2.6314-2.6314z" fill-opacity=".78039" stroke-width=".90909"/>
4
+ </svg>