novelWriter 2.2.1__py3-none-any.whl → 2.3b1__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.
- {novelWriter-2.2.1.dist-info → novelWriter-2.3b1.dist-info}/METADATA +1 -1
- {novelWriter-2.2.1.dist-info → novelWriter-2.3b1.dist-info}/RECORD +102 -92
- novelwriter/__init__.py +4 -4
- novelwriter/assets/icons/typicons_dark/icons.conf +6 -0
- novelwriter/assets/icons/typicons_dark/mixed_import.svg +5 -0
- novelwriter/assets/icons/typicons_dark/typ_document-add-col.svg +8 -0
- novelwriter/assets/icons/typicons_dark/typ_document-add.svg +4 -0
- novelwriter/assets/icons/typicons_dark/typ_document.svg +4 -0
- novelwriter/assets/icons/typicons_dark/typ_th-dot-more.svg +4 -0
- novelwriter/assets/icons/typicons_light/icons.conf +6 -0
- novelwriter/assets/icons/typicons_light/mixed_import.svg +5 -0
- novelwriter/assets/icons/typicons_light/typ_document-add-col.svg +8 -0
- novelwriter/assets/icons/typicons_light/typ_document-add.svg +4 -0
- novelwriter/assets/icons/typicons_light/typ_document.svg +4 -0
- novelwriter/assets/icons/typicons_light/typ_th-dot-more.svg +4 -0
- novelwriter/assets/images/novelwriter-text-dark.svg +4 -0
- novelwriter/assets/images/novelwriter-text-light.svg +4 -0
- novelwriter/assets/images/welcome-dark.jpg +0 -0
- novelwriter/assets/images/welcome-light.jpg +0 -0
- novelwriter/assets/manual.pdf +0 -0
- novelwriter/assets/sample.zip +0 -0
- novelwriter/assets/syntax/default_dark.conf +1 -0
- novelwriter/assets/syntax/default_light.conf +1 -0
- novelwriter/assets/syntax/grey_dark.conf +1 -0
- novelwriter/assets/syntax/grey_light.conf +1 -0
- novelwriter/assets/syntax/light_owl.conf +1 -0
- novelwriter/assets/syntax/night_owl.conf +1 -0
- novelwriter/assets/syntax/solarized_dark.conf +1 -0
- novelwriter/assets/syntax/solarized_light.conf +1 -0
- novelwriter/assets/syntax/tomorrow.conf +1 -0
- novelwriter/assets/syntax/tomorrow_night.conf +1 -0
- novelwriter/assets/syntax/tomorrow_night_blue.conf +1 -0
- novelwriter/assets/syntax/tomorrow_night_bright.conf +1 -0
- novelwriter/assets/syntax/tomorrow_night_eighties.conf +1 -0
- novelwriter/assets/text/credits_en.htm +4 -2
- novelwriter/assets/themes/default_dark.conf +2 -2
- novelwriter/assets/themes/default_light.conf +2 -2
- novelwriter/common.py +48 -37
- novelwriter/config.py +36 -41
- novelwriter/constants.py +38 -16
- novelwriter/core/buildsettings.py +7 -7
- novelwriter/core/coretools.py +192 -154
- novelwriter/core/docbuild.py +6 -3
- novelwriter/core/document.py +6 -6
- novelwriter/core/index.py +89 -56
- novelwriter/core/item.py +21 -3
- novelwriter/core/options.py +8 -7
- novelwriter/core/project.py +69 -44
- novelwriter/core/projectdata.py +1 -14
- novelwriter/core/projectxml.py +13 -41
- novelwriter/core/sessions.py +2 -1
- novelwriter/core/spellcheck.py +2 -1
- novelwriter/core/status.py +2 -1
- novelwriter/core/storage.py +178 -140
- novelwriter/core/tohtml.py +4 -2
- novelwriter/core/tokenizer.py +73 -45
- novelwriter/core/toodt.py +40 -30
- novelwriter/core/tree.py +3 -2
- novelwriter/dialogs/about.py +70 -160
- novelwriter/dialogs/docmerge.py +6 -5
- novelwriter/dialogs/docsplit.py +6 -6
- novelwriter/dialogs/editlabel.py +1 -1
- novelwriter/dialogs/preferences.py +553 -703
- novelwriter/dialogs/{projsettings.py → projectsettings.py} +288 -262
- novelwriter/dialogs/quotes.py +27 -23
- novelwriter/dialogs/wordlist.py +96 -40
- novelwriter/enum.py +20 -18
- novelwriter/error.py +1 -1
- novelwriter/extensions/circularprogress.py +11 -11
- novelwriter/extensions/configlayout.py +185 -134
- novelwriter/extensions/modified.py +81 -0
- novelwriter/extensions/novelselector.py +26 -12
- novelwriter/extensions/pagedsidebar.py +14 -16
- novelwriter/extensions/simpleprogress.py +5 -5
- novelwriter/extensions/statusled.py +8 -8
- novelwriter/extensions/switch.py +31 -63
- novelwriter/extensions/switchbox.py +1 -1
- novelwriter/extensions/versioninfo.py +153 -0
- novelwriter/gui/doceditor.py +178 -150
- novelwriter/gui/dochighlight.py +63 -92
- novelwriter/gui/docviewer.py +49 -51
- novelwriter/gui/docviewerpanel.py +72 -24
- novelwriter/gui/itemdetails.py +7 -7
- novelwriter/gui/mainmenu.py +14 -18
- novelwriter/gui/noveltree.py +9 -8
- novelwriter/gui/outline.py +98 -75
- novelwriter/gui/projtree.py +188 -61
- novelwriter/gui/sidebar.py +3 -4
- novelwriter/gui/statusbar.py +3 -4
- novelwriter/gui/theme.py +60 -68
- novelwriter/guimain.py +49 -156
- novelwriter/shared.py +15 -1
- novelwriter/tools/dictionaries.py +5 -6
- novelwriter/tools/manuscript.py +6 -6
- novelwriter/tools/manussettings.py +192 -221
- novelwriter/tools/noveldetails.py +525 -0
- novelwriter/tools/welcome.py +802 -0
- novelwriter/tools/writingstats.py +9 -9
- novelwriter/assets/images/wizard-back.jpg +0 -0
- novelwriter/assets/text/gplv3_en.htm +0 -641
- novelwriter/assets/text/release_notes.htm +0 -60
- novelwriter/dialogs/projdetails.py +0 -518
- novelwriter/dialogs/projload.py +0 -294
- novelwriter/dialogs/updates.py +0 -172
- novelwriter/extensions/pageddialog.py +0 -130
- novelwriter/tools/projwizard.py +0 -478
- {novelWriter-2.2.1.dist-info → novelWriter-2.3b1.dist-info}/LICENSE.md +0 -0
- {novelWriter-2.2.1.dist-info → novelWriter-2.3b1.dist-info}/WHEEL +0 -0
- {novelWriter-2.2.1.dist-info → novelWriter-2.3b1.dist-info}/entry_points.txt +0 -0
- {novelWriter-2.2.1.dist-info → novelWriter-2.3b1.dist-info}/top_level.txt +0 -0
@@ -1,13 +1,13 @@
|
|
1
|
-
novelwriter/__init__.py,sha256=
|
2
|
-
novelwriter/common.py,sha256=
|
3
|
-
novelwriter/config.py,sha256=
|
4
|
-
novelwriter/constants.py,sha256=
|
5
|
-
novelwriter/enum.py,sha256=
|
6
|
-
novelwriter/error.py,sha256=
|
7
|
-
novelwriter/guimain.py,sha256=
|
8
|
-
novelwriter/shared.py,sha256=
|
9
|
-
novelwriter/assets/manual.pdf,sha256=
|
10
|
-
novelwriter/assets/sample.zip,sha256=
|
1
|
+
novelwriter/__init__.py,sha256=gNAe-DyJUsWpabNov1LZUvQ8qQ_92bkRhVWOTPF4x9Q,7562
|
2
|
+
novelwriter/common.py,sha256=FxdmFrOYru9LsEOyMzvN4JjxBqFgqhRUG_OVDx4wJ3k,17150
|
3
|
+
novelwriter/config.py,sha256=BsFUe4kyxRq3tnI1KtswJgu_C1OKrd447iQ0kj5y4tY,34397
|
4
|
+
novelwriter/constants.py,sha256=_ikr9p_tjwXtPMZiC4f7MzjT7xEU7XGxdh5Vwu47fEY,19759
|
5
|
+
novelwriter/enum.py,sha256=wq94Fl6a2uClsVnwIqJ1mpZ-XjqstR1HrbVPNy7k_0c,3251
|
6
|
+
novelwriter/error.py,sha256=jKIAB6pxWnin4CSaX0DCRUMeZRtwnieIuV5fsW6MW50,7136
|
7
|
+
novelwriter/guimain.py,sha256=JvyYQueTH06dA7cJBe4f3cl0dYgIrOOvHyw170HknM8,52038
|
8
|
+
novelwriter/shared.py,sha256=oxRYUP7erzAuZ7p-cm7WiCF96KiL5ZIJt-OJONa_RXQ,13582
|
9
|
+
novelwriter/assets/manual.pdf,sha256=ZG_W6XCwurEti8WMhfyJU8BB74utmzS8SCsLe5sh0wA,2410863
|
10
|
+
novelwriter/assets/sample.zip,sha256=UyT6dgzUfLsgs4uNiLawh9uXR_nnGj4-KmWg1Vb62Q4,27308
|
11
11
|
novelwriter/assets/i18n/nw_de_DE.qm,sha256=eMPpx_WiG78miAmQwORDZ65sdsUiYGesV53ZOjgbQsg,104414
|
12
12
|
novelwriter/assets/i18n/nw_en_US.qm,sha256=DMmC_fvKotPVIRj2JV32uwDfjvmStw3r2YnOd9MyXbg,96408
|
13
13
|
novelwriter/assets/i18n/nw_es_419.qm,sha256=voOkQJFeRMSlmk2vUOyY3d7x2YzfGARKGi7L7XESbEI,106529
|
@@ -36,13 +36,14 @@ novelwriter/assets/icons/novelwriter.svg,sha256=Ad_SgOdXSDJtFR3DLCx6Afme15I78r38
|
|
36
36
|
novelwriter/assets/icons/x-novelwriter-project.ico,sha256=MXdZSYi3j95aIsT5bZo6CkhxmS75cThP9O_38UR7sjg,170697
|
37
37
|
novelwriter/assets/icons/x-novelwriter-project.svg,sha256=VHf1aClkA91tZVYb3LFk9bi_Dw25QBVSjUJAjSD-YX4,5143
|
38
38
|
novelwriter/assets/icons/typicons_dark/README.md,sha256=6ZxJq-19PNrMdeuVeVg84aLjxhr9oF7dLwuMFVGQyq0,1065
|
39
|
-
novelwriter/assets/icons/typicons_dark/icons.conf,sha256=
|
39
|
+
novelwriter/assets/icons/typicons_dark/icons.conf,sha256=s_xjOPaVRPKMW6wLLq1r5J8Byi376BF8tj6wnnaPyM4,4214
|
40
40
|
novelwriter/assets/icons/typicons_dark/mixed_document-chapter.svg,sha256=POP_Cs3bkkKAmrS_fTgjj90eyNK0bipNGgOhDDlXKu0,1650
|
41
41
|
novelwriter/assets/icons/typicons_dark/mixed_document-note.svg,sha256=OaPRbvkA7h4GA4mnFXJRORv80h2nAsJTmlIR8Msrwt8,1650
|
42
42
|
novelwriter/assets/icons/typicons_dark/mixed_document-scene.svg,sha256=9vXiKJZzzTJCfUDxGNr57IAvw2LQ7pitW7GwOOhrEN8,1647
|
43
43
|
novelwriter/assets/icons/typicons_dark/mixed_document-section.svg,sha256=5XA6h1jsE-jgz4Om8EckTB_guztWxjteIapf_k9PvfI,1647
|
44
44
|
novelwriter/assets/icons/typicons_dark/mixed_document-title.svg,sha256=p0xUKBRGycN4ajlr3VtbZqmjO6fFSySj7R8HCTGoCn8,1647
|
45
45
|
novelwriter/assets/icons/typicons_dark/mixed_edit.svg,sha256=fHQ7s9zRfnPmLnX56goLDciJWk3ISU1FgclaA2EU8qE,1093
|
46
|
+
novelwriter/assets/icons/typicons_dark/mixed_import.svg,sha256=XiitW007_GjKNMzby9gJvDhxM1YdoMY_iB9hLQrgWHk,912
|
46
47
|
novelwriter/assets/icons/typicons_dark/mixed_input-checked.svg,sha256=sjBBHcHWBwf6P3UIcLThccrDqaGLHUgV-ov6v6WXsAw,1208
|
47
48
|
novelwriter/assets/icons/typicons_dark/mixed_input-none.svg,sha256=1uSgoXznt31ynAj3MHC-vVdDuaszmtEKbfofepNs7g4,1058
|
48
49
|
novelwriter/assets/icons/typicons_dark/mixed_input-unchecked.svg,sha256=Ml28wWspg9oipeuBbEOQnS2t0K67A4CO49p6nBKl8EI,1272
|
@@ -91,7 +92,10 @@ novelwriter/assets/icons/typicons_dark/typ_cog.svg,sha256=ssr3otEIZ-pUrnq_iijdoo
|
|
91
92
|
novelwriter/assets/icons/typicons_dark/typ_delete-full.svg,sha256=AyrNxUpajl6ukPmt1EYG8Um7BL8evszoU3NstrUpAAs,713
|
92
93
|
novelwriter/assets/icons/typicons_dark/typ_delete.svg,sha256=uvMReK_XahcXm35newtGKrcXsQsHdAX5jB84MWQDDwU,753
|
93
94
|
novelwriter/assets/icons/typicons_dark/typ_directions-full.svg,sha256=zdoD3rN51ba8KHM7E0Zr-Fb0jHAqHEVIFPJDJtf8SzQ,1002
|
95
|
+
novelwriter/assets/icons/typicons_dark/typ_document-add-col.svg,sha256=h2Wb4v7Y0t3Ow0ghIRs6m5ZwYcTH0-oNuomVLxRuWP0,1456
|
96
|
+
novelwriter/assets/icons/typicons_dark/typ_document-add.svg,sha256=MMYrRKM7_l9PYOu9wxEvvr6Cl3MOwrhio6Ov49E-WAo,1083
|
94
97
|
novelwriter/assets/icons/typicons_dark/typ_document-text.svg,sha256=YLIx9UGJOH-TZVFQy-9DZRVV4NcyGUSLHURfeFmoNVM,2359
|
98
|
+
novelwriter/assets/icons/typicons_dark/typ_document.svg,sha256=sQ3WLwkulrsLBdPAFJZVivWMf0M1lFQudE9R9HmF5Oc,737
|
95
99
|
novelwriter/assets/icons/typicons_dark/typ_export-grey.svg,sha256=B17RWooBQ-QdI1x9Wnc_qzU5R-QnNxLIc6cC3AFNLyc,784
|
96
100
|
novelwriter/assets/icons/typicons_dark/typ_export.svg,sha256=W0474TDm4hGFR3L1l4EI2lnrgwPbzvLF98B3qADnTOQ,772
|
97
101
|
novelwriter/assets/icons/typicons_dark/typ_eye.svg,sha256=i50mrAYP-CIA5GWVw1HoQ37fF42mOsumvdJ4QGFaFK8,872
|
@@ -118,19 +122,21 @@ novelwriter/assets/icons/typicons_dark/typ_search.svg,sha256=ahjax3IvhlP0sc08W-w
|
|
118
122
|
novelwriter/assets/icons/typicons_dark/typ_star.svg,sha256=FIaFtvCYIjBuhcP7nNhRsbpZv48qhCR9JW3aifYqWyU,901
|
119
123
|
novelwriter/assets/icons/typicons_dark/typ_stopwatch-grey.svg,sha256=Dwb1BdXeZbDJrZ2nX5VNRfqTTzrD-bOIxUTj0rAG-VQ,1434
|
120
124
|
novelwriter/assets/icons/typicons_dark/typ_th-dot-menu.svg,sha256=ZTW0p8OxLw0R1Xj1tPf4pPR7rHHgDtAXJTd4x-CNT6I,629
|
125
|
+
novelwriter/assets/icons/typicons_dark/typ_th-dot-more.svg,sha256=GEBhivlN6G9sYf3wM4aU4p7kexO8ejvieMIpfEujRs8,612
|
121
126
|
novelwriter/assets/icons/typicons_dark/typ_th-list-grey.svg,sha256=zx4iK9nlfDFaYau_rnbXM_wrQT7A7eW268j4EkBACSE,1114
|
122
127
|
novelwriter/assets/icons/typicons_dark/typ_times.svg,sha256=FalsElY0nNAJYxs-RVvvCUPWdqtuoEPCkqd1_VOvH5A,711
|
123
128
|
novelwriter/assets/icons/typicons_dark/typ_trash.svg,sha256=XjO0SRcnPDrg9Qe8zR5W1k20liKKRop4O2liv2KILQY,2456
|
124
129
|
novelwriter/assets/icons/typicons_dark/typ_user.svg,sha256=00gZEDr59B1A7A4o0w5VjCJOHnQHANsgXBhnB_VTMU4,733
|
125
130
|
novelwriter/assets/icons/typicons_dark/typ_warning-full.svg,sha256=zqqV82C37dWH_yHoSuPo-BLsErg0sl8_VlB6fzXL4VE,970
|
126
131
|
novelwriter/assets/icons/typicons_light/README.md,sha256=nyGvWLJ8cusLYP8YsjX_l213NkDE_GHrwctZ-I_JQUg,1066
|
127
|
-
novelwriter/assets/icons/typicons_light/icons.conf,sha256=
|
132
|
+
novelwriter/assets/icons/typicons_light/icons.conf,sha256=M7zFjrnt2Z5bDFBnSb9pFgWyKPOrhoeb_BowUOs4mPk,4217
|
128
133
|
novelwriter/assets/icons/typicons_light/mixed_document-chapter.svg,sha256=kXNwPbeKR3eupIrqtDQrNGq5sL8vdExLfPMrMX2sEsw,1650
|
129
134
|
novelwriter/assets/icons/typicons_light/mixed_document-note.svg,sha256=XpKQ2Fj7J3I3BT9mAQkjk_A4eP7uy94vPeDBA62fOYI,1650
|
130
135
|
novelwriter/assets/icons/typicons_light/mixed_document-scene.svg,sha256=kwNPNaCJixTSpTPRFYxEHt3hVqhpwGJTCfZfu8rJvYE,1650
|
131
136
|
novelwriter/assets/icons/typicons_light/mixed_document-section.svg,sha256=2mp_ZAGwSNhCWLqrDCtU4w1Ke_GelAt5warnmNix8k0,1650
|
132
137
|
novelwriter/assets/icons/typicons_light/mixed_document-title.svg,sha256=5_1qjivue2lRBa6a-hQRqcqFAGzCWceowNI5lRRkAwg,1650
|
133
138
|
novelwriter/assets/icons/typicons_light/mixed_edit.svg,sha256=aBYpqFX6lCTVVUTzMph81uqfNlhmUxODjZo1juy3PXM,1100
|
139
|
+
novelwriter/assets/icons/typicons_light/mixed_import.svg,sha256=lad5N1wOjDrTLxEzT0PcQMGTrhSQRQH_RVUZgbgq0Gg,918
|
134
140
|
novelwriter/assets/icons/typicons_light/mixed_input-checked.svg,sha256=uevUoQv7D-6g1RgE0gG2ZWek3118qIAcgkqg7zxK8Zs,1208
|
135
141
|
novelwriter/assets/icons/typicons_light/mixed_input-none.svg,sha256=V6uPJ1f85DYXpuuC3n4-lV1U8zfyXYMbOHYBy9-uiQs,1055
|
136
142
|
novelwriter/assets/icons/typicons_light/mixed_input-unchecked.svg,sha256=uKyeneabnW80b04DpK2k0Y7-uyoC-R3HLse19aSkVww,1269
|
@@ -179,7 +185,10 @@ novelwriter/assets/icons/typicons_light/typ_cog.svg,sha256=NZnARNb0zWAkqpfkBrai6
|
|
179
185
|
novelwriter/assets/icons/typicons_light/typ_delete-full.svg,sha256=sESm4F5KLSBzZUx-45EyHSYNsS5W55hEmhFCtHjUvro,713
|
180
186
|
novelwriter/assets/icons/typicons_light/typ_delete.svg,sha256=ZC9LHosfdYGZWUdc66dOkzXcNePfkdGnbVqqMQ4QpbU,753
|
181
187
|
novelwriter/assets/icons/typicons_light/typ_directions-full.svg,sha256=U8zciM3cNoku3xp-_TTs15RShl3fDl1URgkMJ-A4WfU,1005
|
188
|
+
novelwriter/assets/icons/typicons_light/typ_document-add-col.svg,sha256=TtmBL9marXDjH2JYh04jGGtoiivZRbW2JTlbe6tQjzI,1456
|
189
|
+
novelwriter/assets/icons/typicons_light/typ_document-add.svg,sha256=7KRxqbzCf_kp7CE42DdPeS7xFluYKQsHq1AljjuoTXI,1090
|
182
190
|
novelwriter/assets/icons/typicons_light/typ_document-text.svg,sha256=AckgX3ABVx5HXrpJH0IG-nKqhaaGhwtS6Vv0g-ydXR0,2262
|
191
|
+
novelwriter/assets/icons/typicons_light/typ_document.svg,sha256=GyqHX33SUeLqphp7ak0pX56YuTg6jlYuSvYmDYHlE6c,744
|
183
192
|
novelwriter/assets/icons/typicons_light/typ_export-grey.svg,sha256=L9YMhoVE0L3lGa0Vlfn7KoI6eHD4gNiCD9Ou5TOLtsE,791
|
184
193
|
novelwriter/assets/icons/typicons_light/typ_export.svg,sha256=qAUqhrxBlNBrpQ6btO_30pbR2QSHWXEgGjxOMuCIAHs,775
|
185
194
|
novelwriter/assets/icons/typicons_light/typ_eye.svg,sha256=GpkDqhF_WvtdOMYbl_iI_ihFc3PJ-5FMM01wbOsrYv4,875
|
@@ -206,102 +215,103 @@ novelwriter/assets/icons/typicons_light/typ_search.svg,sha256=jshV8Oy3vSOSlAew22
|
|
206
215
|
novelwriter/assets/icons/typicons_light/typ_star.svg,sha256=CCLyse0_0JhxOl_xDnpsQWtgp_bD49oW8VO9YjJF8ko,901
|
207
216
|
novelwriter/assets/icons/typicons_light/typ_stopwatch-grey.svg,sha256=LMhGCltTFOSiFlsJ4K1aci4nXmxGupBKufqe117NnO0,1438
|
208
217
|
novelwriter/assets/icons/typicons_light/typ_th-dot-menu.svg,sha256=AZz7XH3VNRC1JLT3kFNIX6y5S_j6TWXWNSPWf6k0g6A,636
|
218
|
+
novelwriter/assets/icons/typicons_light/typ_th-dot-more.svg,sha256=_bYxpdn_ms8zxjD1tG0ZMUqaj4ABELKJ3-sdOPUVoYY,619
|
209
219
|
novelwriter/assets/icons/typicons_light/typ_th-list-grey.svg,sha256=XKAdaWypd1hggZ_HP0ZWqy4S8zvhNB92PjWA5AUkRaI,746
|
210
220
|
novelwriter/assets/icons/typicons_light/typ_times.svg,sha256=rlNZ1askrWpmw-neS3HrwuOxzSe7g7Owqvrb-mzUXQM,711
|
211
221
|
novelwriter/assets/icons/typicons_light/typ_trash.svg,sha256=THerHUXB4l6qjcnIdFCzA7eZxOVhcODDQMtYeDj-z5s,2453
|
212
222
|
novelwriter/assets/icons/typicons_light/typ_user.svg,sha256=q4a-kdXIABSyYlk2BEGPuxnyaM4vTpvLwQNv5-rQ6mQ,736
|
213
223
|
novelwriter/assets/icons/typicons_light/typ_warning-full.svg,sha256=5pCnfBPckrRDznMAOGj2-zmMxUSQi4nK4i07jAVkc_c,970
|
214
|
-
novelwriter/assets/images/
|
215
|
-
novelwriter/assets/
|
216
|
-
novelwriter/assets/
|
217
|
-
novelwriter/assets/
|
218
|
-
novelwriter/assets/syntax/
|
219
|
-
novelwriter/assets/syntax/
|
220
|
-
novelwriter/assets/syntax/
|
221
|
-
novelwriter/assets/syntax/
|
222
|
-
novelwriter/assets/syntax/
|
223
|
-
novelwriter/assets/syntax/
|
224
|
-
novelwriter/assets/syntax/
|
225
|
-
novelwriter/assets/syntax/
|
226
|
-
novelwriter/assets/syntax/
|
227
|
-
novelwriter/assets/syntax/
|
228
|
-
novelwriter/assets/
|
229
|
-
novelwriter/assets/
|
224
|
+
novelwriter/assets/images/novelwriter-text-dark.svg,sha256=gbbDiXd92OV5c6qGREDkAnTnEApxYPbqyrbUHB8mtiM,5976
|
225
|
+
novelwriter/assets/images/novelwriter-text-light.svg,sha256=ziTrfrr0WO9JWBzSfuuKBlYFCkENfEBp3MyOYTNGUYQ,5983
|
226
|
+
novelwriter/assets/images/welcome-dark.jpg,sha256=MPRYUI1yEjzee1uHGWlrR352U1LFSSV92awDheFtmZo,299007
|
227
|
+
novelwriter/assets/images/welcome-light.jpg,sha256=FcS5GA5G6o9KgmADYHktyR3GHquNlPNIUQeQQiscQzA,279989
|
228
|
+
novelwriter/assets/syntax/default_dark.conf,sha256=lNu--KbYZZK7FgH1dXJkRsXQYLJTJRtYqoWsilWWlik,809
|
229
|
+
novelwriter/assets/syntax/default_light.conf,sha256=BiB6GC72offpIVKxdijO4i29v1D-k5guG-tBvIFq0uo,810
|
230
|
+
novelwriter/assets/syntax/grey_dark.conf,sha256=9Z7hSrzU246WRSgIJ9Eb4A3kZ0soHSV5vo5mMefTrFU,806
|
231
|
+
novelwriter/assets/syntax/grey_light.conf,sha256=-B3C0ttENSMdB07YAE8mtJJpH5A2u6hmRIJW5BQETpk,807
|
232
|
+
novelwriter/assets/syntax/light_owl.conf,sha256=gni5rTDWsjxKros7-9WJtmKhs917Mxj3oxVOIzBjyxc,1458
|
233
|
+
novelwriter/assets/syntax/night_owl.conf,sha256=UPwtd02k_lUUZ8_hqk-h4dS2khdZq2BYzmJShsEHAt0,1458
|
234
|
+
novelwriter/assets/syntax/solarized_dark.conf,sha256=vCOm3xy13v7q580_KjDwufsJr1EpD5pgcclhIktyqNc,799
|
235
|
+
novelwriter/assets/syntax/solarized_light.conf,sha256=AxbtqwjCbIDA7lW18oPARaQidm8sTeTD7Cz_MTHnR40,800
|
236
|
+
novelwriter/assets/syntax/tomorrow.conf,sha256=GOhtuIE1exA5PE3r3ecgohzikZ761mENXYOrNP-bc0k,1456
|
237
|
+
novelwriter/assets/syntax/tomorrow_night.conf,sha256=YXO9vA-4Hu8vcVzecHbRDyLHHNrZl6Ti958NwLlLnFo,1468
|
238
|
+
novelwriter/assets/syntax/tomorrow_night_blue.conf,sha256=O1CKnKninSBQcObvMXQVejIaP9sqa7bejoJSynZlqMQ,1478
|
239
|
+
novelwriter/assets/syntax/tomorrow_night_bright.conf,sha256=uxxyqWpmKEH_Y4d5eZ4fUxWzfdpGzEMH3I1pgdkFgZ8,1482
|
240
|
+
novelwriter/assets/syntax/tomorrow_night_eighties.conf,sha256=GhI5x5e9B8in5JzIdFTh17-PG3SHlBsAh9sEMBAbgAY,1486
|
241
|
+
novelwriter/assets/text/credits_en.htm,sha256=MiQFA-ucjaDJ7lGAcD8bcha22iTzrBq-9ICyBrbfXLs,3526
|
230
242
|
novelwriter/assets/text/lipsum.txt,sha256=sGA6AC_p4jrUifxLxy3cSODeRwkpBNXDPGgX6YRTm2s,62937
|
231
|
-
novelwriter/assets/text/release_notes.htm,sha256=hoNbCzziImvQk00jHXEVwbDvQSoNf04dUxUCOu7Rw4Q,4075
|
232
243
|
novelwriter/assets/themes/default.conf,sha256=K0LZ64lODpCtUg3pISTAP4UKvEYMvPkmIYN9RDEaWwk,72
|
233
|
-
novelwriter/assets/themes/default_dark.conf,sha256=
|
234
|
-
novelwriter/assets/themes/default_light.conf,sha256=
|
244
|
+
novelwriter/assets/themes/default_dark.conf,sha256=L6xHLbgVb4E4SkQRSgCV7yEoxH9RxPunCjBuLpU8JEY,925
|
245
|
+
novelwriter/assets/themes/default_light.conf,sha256=o_FJRMidFo-DJYK8bB-jdelcD5qg7MwW4J8lL9nlZUY,928
|
235
246
|
novelwriter/assets/themes/solarized_dark.conf,sha256=HIP9icMtRljUmMH7PmU0IrcLGUSXVDaG97070Hc0UVM,852
|
236
247
|
novelwriter/assets/themes/solarized_light.conf,sha256=jUfaCnWXM4GAOI1eUioj_nP0RiMrnr8MEOprSg7qUU4,854
|
237
248
|
novelwriter/core/__init__.py,sha256=IrBU9r8-lBnwqAD79xtpaDMortj23X-t6zQ1RIWluY4,39
|
238
|
-
novelwriter/core/buildsettings.py,sha256=
|
239
|
-
novelwriter/core/coretools.py,sha256=
|
240
|
-
novelwriter/core/docbuild.py,sha256=
|
241
|
-
novelwriter/core/document.py,sha256=
|
242
|
-
novelwriter/core/index.py,sha256=
|
243
|
-
novelwriter/core/item.py,sha256=
|
244
|
-
novelwriter/core/options.py,sha256=
|
245
|
-
novelwriter/core/project.py,sha256=
|
246
|
-
novelwriter/core/projectdata.py,sha256=
|
247
|
-
novelwriter/core/projectxml.py,sha256=
|
248
|
-
novelwriter/core/sessions.py,sha256=
|
249
|
-
novelwriter/core/spellcheck.py,sha256=
|
250
|
-
novelwriter/core/status.py,sha256=
|
251
|
-
novelwriter/core/storage.py,sha256=
|
252
|
-
novelwriter/core/tohtml.py,sha256=
|
253
|
-
novelwriter/core/tokenizer.py,sha256=
|
249
|
+
novelwriter/core/buildsettings.py,sha256=TDdxsqHzOCx5KFSEC8WdhgKu0iT2IRpUE5-klcmbSOA,21350
|
250
|
+
novelwriter/core/coretools.py,sha256=f-ytgHlm4FyXji4qkWdPB_g-kXkUVbAmYv1ars2JR34,18647
|
251
|
+
novelwriter/core/docbuild.py,sha256=wMzemc-Mz0kacdLp3c53VdhJ5bJawAcbV7_Kbm3J-RU,11620
|
252
|
+
novelwriter/core/document.py,sha256=cD865KUEK6v41pwWR85L6uoq1_2kp1U1PE-OGA7T9pw,11396
|
253
|
+
novelwriter/core/index.py,sha256=1hzA0HiL-14HFQRapziHObXZonjhEev3sEe6Gvx_2ZU,48319
|
254
|
+
novelwriter/core/item.py,sha256=6a-9Aty4_RIFE-90IxR8t19Fjyl_uHJAwz_TzUn8oRI,18104
|
255
|
+
novelwriter/core/options.py,sha256=6gMe3cXq4U-oSN3zSoGtfiCOW6hX9xtjDssrbZYrtGY,7397
|
256
|
+
novelwriter/core/project.py,sha256=dxdcDti1F40EqsFtEN5SnUfP2MlJWW9YyKlK2Lhjz2Q,22729
|
257
|
+
novelwriter/core/projectdata.py,sha256=NYhTL6qIbJxJX98-_zZdV4LzI2-tqdWaMvGYi0Xi4WU,9826
|
258
|
+
novelwriter/core/projectxml.py,sha256=_B2XZFxua1tucqvLc3BiJWVsk6sr4FNohKEYLShlQO0,21894
|
259
|
+
novelwriter/core/sessions.py,sha256=aixCK4x52FsCnDeC6UD-xnqLEwy4eM-QVYEsoDJGjus,4431
|
260
|
+
novelwriter/core/spellcheck.py,sha256=AfNOymVlJULF6tSz9ldAj5gyY_k1fHyKzsTivXxQJXg,7235
|
261
|
+
novelwriter/core/status.py,sha256=cT19gI2c5xPlfyYgrK3_E5U3AWSYnl4aG3GsYykyjGo,8707
|
262
|
+
novelwriter/core/storage.py,sha256=aGlIh0zkCKUAKGK4HBUTTlJVl6lwxJMHc9WQHqMttgI,20469
|
263
|
+
novelwriter/core/tohtml.py,sha256=5K2Cp8nRgrmhYhLLjU--TeVC1me0ch2G8WoxSk6BqS4,17301
|
264
|
+
novelwriter/core/tokenizer.py,sha256=oCx5mzNLV2wUzmr4J6LeZG3xgCOM1qWVDwLoFBMaiZY,31961
|
254
265
|
novelwriter/core/tomd.py,sha256=aWFqX88Gjp5MnWVTh6b8Db_2MalWkklg2VwzDQ74OCw,7073
|
255
|
-
novelwriter/core/toodt.py,sha256=
|
256
|
-
novelwriter/core/tree.py,sha256=
|
266
|
+
novelwriter/core/toodt.py,sha256=ZTGpHdovp2ozifUrAIuVlR0Tarf4dLg7XK0bEOCk4Ms,56786
|
267
|
+
novelwriter/core/tree.py,sha256=fI3c20hgGm32CeIT-kyTwYBhUKFxoDAd1n3bDP9XTvI,18580
|
257
268
|
novelwriter/dialogs/__init__.py,sha256=8a0BuN7-dtzkgPhkwX2KNq8gG2rqpyCAwI-U06KhU5Y,42
|
258
|
-
novelwriter/dialogs/about.py,sha256=
|
259
|
-
novelwriter/dialogs/docmerge.py,sha256=
|
260
|
-
novelwriter/dialogs/docsplit.py,sha256=
|
261
|
-
novelwriter/dialogs/editlabel.py,sha256=
|
262
|
-
novelwriter/dialogs/preferences.py,sha256=
|
263
|
-
novelwriter/dialogs/
|
264
|
-
novelwriter/dialogs/
|
265
|
-
novelwriter/dialogs/
|
266
|
-
novelwriter/dialogs/quotes.py,sha256=PSKTXOdFFS9aWhulr8bn2GmsLWf_mtB6JCU466NDPLU,4355
|
267
|
-
novelwriter/dialogs/updates.py,sha256=LRD8UZceO053iRYsvonrLoYBsThlP7Jt_m-kya7oQpM,5209
|
268
|
-
novelwriter/dialogs/wordlist.py,sha256=ylpBulM1uzr_nhB3USqofggTf97BWjpACdsRv95C_zk,5982
|
269
|
+
novelwriter/dialogs/about.py,sha256=vQitySA60wRNSVOBgMZXr9ajSo_2czJ5XKg8bPbqINc,4980
|
270
|
+
novelwriter/dialogs/docmerge.py,sha256=MbXjyr_ho_NiJPZEnlZjwWiH_8McxOOAFlGJs0DbmDQ,5960
|
271
|
+
novelwriter/dialogs/docsplit.py,sha256=knReihsHpzNzxaA3vTt6-9quN-BlJmD4mxC5P1IfOiw,9088
|
272
|
+
novelwriter/dialogs/editlabel.py,sha256=LdnWaSExZcdOZv52ks2PjKBzuzHX2XXOTZ9u-SW_brs,2903
|
273
|
+
novelwriter/dialogs/preferences.py,sha256=OsYFGGTq0e8eRcmmCgHHYexXvncjknACUnSqSsx9XtY,36723
|
274
|
+
novelwriter/dialogs/projectsettings.py,sha256=tmiVoDp45kVAmk-kBdn8FE8NhWJMflQS9_k5k2bzlas,25712
|
275
|
+
novelwriter/dialogs/quotes.py,sha256=uCxCraABVaaCaNR_s0VpSFNAztdA0ykdjKQUyDalDY8,4561
|
276
|
+
novelwriter/dialogs/wordlist.py,sha256=Uxr7-O8IJrE8BOwWOD3U8t04I-j2u5Z4f2IJSrA08jc,8511
|
269
277
|
novelwriter/extensions/__init__.py,sha256=ybwq7BzrU1QYw7pd-QC9iCKoB6MIh_FysriNkkHOSMo,51
|
270
|
-
novelwriter/extensions/circularprogress.py,sha256=
|
271
|
-
novelwriter/extensions/configlayout.py,sha256=
|
278
|
+
novelwriter/extensions/circularprogress.py,sha256=UrqZCgnJgFVuUvUV0V-9noWKCROJWkDtaC44ijvuJPA,3747
|
279
|
+
novelwriter/extensions/configlayout.py,sha256=GITZpZQ_Fp07x3NvljthFLh0G9Gelj9QlECmBf1em8k,8682
|
272
280
|
novelwriter/extensions/eventfilters.py,sha256=XehDoXwsnCvI1D3uieuYu5J3kxZggdV6Teo7Z0xZw7E,2581
|
273
|
-
novelwriter/extensions/
|
274
|
-
novelwriter/extensions/
|
275
|
-
novelwriter/extensions/pagedsidebar.py,sha256
|
276
|
-
novelwriter/extensions/simpleprogress.py,sha256=
|
277
|
-
novelwriter/extensions/statusled.py,sha256=
|
278
|
-
novelwriter/extensions/switch.py,sha256=
|
279
|
-
novelwriter/extensions/switchbox.py,sha256=
|
281
|
+
novelwriter/extensions/modified.py,sha256=uoCpMlZmS_WtTD1tNzIqm149gqZPoPzStQFJghpVRHY,2329
|
282
|
+
novelwriter/extensions/novelselector.py,sha256=5ccEDvqrbvrG7khZBrOiJwxsjjRnkFX-A4ZT-lj_z_g,3821
|
283
|
+
novelwriter/extensions/pagedsidebar.py,sha256=-6aIeuIVcZSbAGr_yheneyt9MEfVsCpYYFqjHdP5I-A,7234
|
284
|
+
novelwriter/extensions/simpleprogress.py,sha256=kOnzYgkY1O8SB4u9MRufAHqA0hu5_2kM1A-ecw-CGvI,1793
|
285
|
+
novelwriter/extensions/statusled.py,sha256=2mhx6UDoCzB9h1stluQaNT9xVWv63F7-82qFUwlhEms,2272
|
286
|
+
novelwriter/extensions/switch.py,sha256=8OJ2T7CCBVQxBQqRa39t6ndoBRIKGrDaaggpUIwrA5E,4259
|
287
|
+
novelwriter/extensions/switchbox.py,sha256=HFoU2Xd6C04nBsOE0HjQQy7OmQthvlHBgTETWyu0btQ,4116
|
288
|
+
novelwriter/extensions/versioninfo.py,sha256=jnK9epE6Hlg0bZAIar-r12U0HgjDqHbO4RPTo7Lz9Xw,5117
|
280
289
|
novelwriter/gui/__init__.py,sha256=8afC6rASWwWCc7KS_6s2whwTpboQt_495AvyGMLLatQ,38
|
281
|
-
novelwriter/gui/doceditor.py,sha256=
|
282
|
-
novelwriter/gui/dochighlight.py,sha256=
|
283
|
-
novelwriter/gui/docviewer.py,sha256=
|
284
|
-
novelwriter/gui/docviewerpanel.py,sha256
|
290
|
+
novelwriter/gui/doceditor.py,sha256=z2e203wq0HwnUM5aiwDy1NVvM_xqPu6--wFvy6HvCUY,116077
|
291
|
+
novelwriter/gui/dochighlight.py,sha256=K48kI1G-63RHIRrAB9b0MWPnN9Bm_YYOnkrF8fmu-3Q,16380
|
292
|
+
novelwriter/gui/docviewer.py,sha256=hnUSithBTpSQHb86ODOHdnjz_oSFO9JrXI49CA24-eo,34058
|
293
|
+
novelwriter/gui/docviewerpanel.py,sha256=-KL-AvkDo8YcEd-JU6nBBS1_1eS9kJzEq9PPlU0rmus,20692
|
285
294
|
novelwriter/gui/editordocument.py,sha256=w--yYT1au3UdPGiVB1ipuariyi9kPFrfJQCVvvNSz2o,3632
|
286
|
-
novelwriter/gui/itemdetails.py,sha256=
|
287
|
-
novelwriter/gui/mainmenu.py,sha256=
|
288
|
-
novelwriter/gui/noveltree.py,sha256=
|
289
|
-
novelwriter/gui/outline.py,sha256=
|
290
|
-
novelwriter/gui/projtree.py,sha256=
|
291
|
-
novelwriter/gui/sidebar.py,sha256=
|
292
|
-
novelwriter/gui/statusbar.py,sha256=
|
293
|
-
novelwriter/gui/theme.py,sha256=
|
295
|
+
novelwriter/gui/itemdetails.py,sha256=oil8pOANtgOmpTatdmfOvsS4tkivxE7RM1BdtqcrIts,9814
|
296
|
+
novelwriter/gui/mainmenu.py,sha256=9ONWpWXlS95twk96fF7hB2qIcpYzwuRvkRMEypInxlw,37917
|
297
|
+
novelwriter/gui/noveltree.py,sha256=z2xqM8_5nrYjk1W2Sue9O7PxqtVaNY4uwuSAz51ltOQ,28469
|
298
|
+
novelwriter/gui/outline.py,sha256=p6i1dpWOSB5SMBZ8NR83v5tm60sXwB37Wk5u-oIDWYs,41636
|
299
|
+
novelwriter/gui/projtree.py,sha256=TYsdapWdYdVFDUdgxOtKPViDI9FZCcIwp1vBmSzySqI,77829
|
300
|
+
novelwriter/gui/sidebar.py,sha256=JPwI3-n4uLlMvSZDZSVV7q9Lwy-qScsX-QzF3rTskvY,6612
|
301
|
+
novelwriter/gui/statusbar.py,sha256=gl2sT2pmlv-QVhqkiQPHxHEholu-WBfvNJykzyOjBUo,9281
|
302
|
+
novelwriter/gui/theme.py,sha256=bCCr1Fgbdkx46Rt31nXQH2f9WYiNKfdqkUVSr-L1Spw,29521
|
294
303
|
novelwriter/tools/__init__.py,sha256=1MVOieA7WQw_xjH7d944hko81I4OM7gPAdSomN8zz3M,40
|
295
|
-
novelwriter/tools/dictionaries.py,sha256=
|
304
|
+
novelwriter/tools/dictionaries.py,sha256=Pa9w0buzLoXDLmaCRGOGXc7Fd1qj55PVThGK5jqFMFY,9132
|
296
305
|
novelwriter/tools/lipsum.py,sha256=hKp5siA5TC_KGDufTGy0j0fqSjSwPDdiNvOAuVsMImk,4784
|
297
306
|
novelwriter/tools/manusbuild.py,sha256=Jg0B8MgGI_wqDtzkJvOVD2VB_ow5GotFqsEIbG03RHo,13773
|
298
|
-
novelwriter/tools/manuscript.py,sha256=
|
299
|
-
novelwriter/tools/manussettings.py,sha256=
|
300
|
-
novelwriter/tools/
|
301
|
-
novelwriter/tools/
|
302
|
-
|
303
|
-
novelWriter-2.
|
304
|
-
novelWriter-2.
|
305
|
-
novelWriter-2.
|
306
|
-
novelWriter-2.
|
307
|
-
novelWriter-2.
|
307
|
+
novelwriter/tools/manuscript.py,sha256=31X2rDbD34AfAICIh9VLlsm5x1LsPhkmvvhN5Gpn4Pc,29743
|
308
|
+
novelwriter/tools/manussettings.py,sha256=wZ1AB8FFU9dA4KcS4j7dVoY-2ea4kEqLAS4O48JAwlw,48448
|
309
|
+
novelwriter/tools/noveldetails.py,sha256=_3uKLHllqKgWVWJKzOp1_oqBfeKJxIia7lgzIuAJalE,18482
|
310
|
+
novelwriter/tools/welcome.py,sha256=79s0eDMOw9d7fyRHtrW_JpZQp4dayhEO7FeHje6I_r0,27649
|
311
|
+
novelwriter/tools/writingstats.py,sha256=ukgQJRtIKij0bF13Z0Vo-KMkxkTjk7OzOQrjBZIbrJ8,22557
|
312
|
+
novelWriter-2.3b1.dist-info/LICENSE.md,sha256=2GirkkLrPfQqx7fACKRJjtKJUegKc8067erGvcDVQHM,32197
|
313
|
+
novelWriter-2.3b1.dist-info/METADATA,sha256=16xktC97X-CexSVpGQxTCDfVJXbhXywC3YCUFsAaUn0,2582
|
314
|
+
novelWriter-2.3b1.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
315
|
+
novelWriter-2.3b1.dist-info/entry_points.txt,sha256=lN-EspQDlSi_RtYp_OVKtyRsbwZEjPuaux0DK_9i3Ts,98
|
316
|
+
novelWriter-2.3b1.dist-info/top_level.txt,sha256=wFFEucjEeNC_Ap5ULBuEutg5a1Uc0-YO9uFT5L2naNI,12
|
317
|
+
novelWriter-2.3b1.dist-info/RECORD,,
|
novelwriter/__init__.py
CHANGED
@@ -42,9 +42,9 @@ __license__ = "GPLv3"
|
|
42
42
|
__author__ = "Veronica Berglyd Olsen"
|
43
43
|
__maintainer__ = "Veronica Berglyd Olsen"
|
44
44
|
__email__ = "code@vkbo.net"
|
45
|
-
__version__ = "2.
|
46
|
-
__hexversion__ = "
|
47
|
-
__date__ = "2024-
|
45
|
+
__version__ = "2.3b1"
|
46
|
+
__hexversion__ = "0x020300b1"
|
47
|
+
__date__ = "2024-02-16"
|
48
48
|
__status__ = "Stable"
|
49
49
|
__domain__ = "novelwriter.io"
|
50
50
|
|
@@ -131,7 +131,7 @@ def main(sysArgs: list | None = None):
|
|
131
131
|
elif inOpt == "--debug":
|
132
132
|
CONFIG.isDebug = True
|
133
133
|
logLevel = logging.DEBUG
|
134
|
-
logFormat = "[{asctime:}] {filename:>
|
134
|
+
logFormat = "[{asctime:}] {filename:>18}:{lineno:<4d} {levelname:8} {message:}"
|
135
135
|
elif inOpt == "--style":
|
136
136
|
qtStyle = inArg
|
137
137
|
elif inOpt == "--config":
|
@@ -17,6 +17,7 @@ licenseurl = https://creativecommons.org/licenses/by-sa/4.0/
|
|
17
17
|
|
18
18
|
[Map]
|
19
19
|
add = typ_plus.svg
|
20
|
+
add_document = typ_document-add.svg
|
20
21
|
alert_error = typ_delete-full.svg
|
21
22
|
alert_info = typ_lightbulb-full.svg
|
22
23
|
alert_question = typ_directions-full.svg
|
@@ -39,10 +40,12 @@ cls_none = typ_cancel.svg
|
|
39
40
|
cls_novel = typ_book.svg
|
40
41
|
cls_object = typ_key.svg
|
41
42
|
cls_plot = typ_puzzle.svg
|
43
|
+
cls_template = typ_document-add-col.svg
|
42
44
|
cls_timeline = typ_calendar.svg
|
43
45
|
cls_trash = typ_trash.svg
|
44
46
|
cls_world = typ_location.svg
|
45
47
|
cross = typ_times.svg
|
48
|
+
document = typ_document.svg
|
46
49
|
down = typ_chevron-down.svg
|
47
50
|
edit = typ_pencil.svg
|
48
51
|
export = typ_export.svg
|
@@ -56,9 +59,11 @@ fmt_subscript = nw_tb-subscript.svg
|
|
56
59
|
fmt_superscript = nw_tb-superscript.svg
|
57
60
|
fmt_underline = nw_tb-underline.svg
|
58
61
|
forward = typ_chevron-right.svg
|
62
|
+
import = mixed_import.svg
|
59
63
|
maximise = typ_arrow-maximise.svg
|
60
64
|
menu = typ_th-dot-menu.svg
|
61
65
|
minimise = typ_arrow-minimise.svg
|
66
|
+
more = typ_th-dot-more.svg
|
62
67
|
noncheckable = mixed_input-none.svg
|
63
68
|
panel = nw_panel.svg
|
64
69
|
proj_chapter = mixed_document-chapter.svg
|
@@ -83,6 +88,7 @@ search_regex = nw_search-regex.svg
|
|
83
88
|
search_replace = mixed_search-replace.svg
|
84
89
|
search_word = nw_search-word.svg
|
85
90
|
settings = typ_cog.svg
|
91
|
+
star = typ_star.svg
|
86
92
|
status_idle = typ_media-pause-grey.svg
|
87
93
|
status_lang = typ_globe-grey.svg
|
88
94
|
status_lines = typ_th-list-grey.svg
|
@@ -0,0 +1,5 @@
|
|
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="m3.1113 3.666c-0.61332 0-1.1094 0.49689-1.1094 1.1113v15.557h-0.0019531c0 0.61443 0.498 1.1094 1.1113 1.1094h15.557c0.61332 0 1.1113-0.49494 1.1113-1.1094v-8.2578c-0.61899 0.57364-1.3634 1.0131-2.252 1.2578-0.004058 2.0524-0.007162 4.0735 0.005859 5.8887h-13.311v-13.318c1.6116-0.00848 2.8992 0 4.4648 0 0.75712-0.75269 1.5907-1.5005 2.3418-2.2383h-7.918z" fill="#9c9"/>
|
4
|
+
<path d="m21.996 3.1106v-0.55556c-1.8789 2.8644-4 4.3922-6.6667 4.4444v-3.3333c0-0.61222-0.56778-1.1111-1.27-1.1111-0.40444 0-0.75 0.17556-0.98111 0.43444-2.1478 2.2544-6.6378 6.7878-6.6378 6.7878s4.49 4.5356 6.6389 6.8189c0.23111 0.22778 0.57556 0.40333 0.98 0.40333 0.70222 0 1.27-0.49667 1.27-1.1111v-3.3333c5.1778 0 6.6667-5.4122 6.6667-9.4444z" fill="#9c9" stroke-width="1.1111"/>
|
5
|
+
</svg>
|
@@ -0,0 +1,8 @@
|
|
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
|
+
<g>
|
4
|
+
<path d="m5.8898 3.4449c-0.67467 1e-7 -1.2225 0.5478-1.2225 1.2225v14.665c0 0.67466 0.5478 1.2225 1.2225 1.2225h12.22c0.67466 0 1.2225-0.5478 1.2225-1.2225v-11h-1.8326c-1.6854 0-3.0551-1.3696-3.0551-3.0551v-1.8326zm9.7775 0.50488v1.3277c0 1.0108 0.82184 1.8326 1.8326 1.8326h1.3277z" fill="#e5e5e5" stroke-linecap="round" stroke-width=".55"/>
|
5
|
+
<path d="m5.8898 1c-2.0216 0-3.6674 1.6458-3.6674 3.6674v14.665c0 2.0216 1.6458 3.6674 3.6674 3.6674h12.22c2.0216 0 3.6674-1.6458 3.6674-3.6674v-12.222c0-0.32511-0.12901-0.63512-0.35879-0.86367l-4.8877-4.8877c-0.22856-0.22978-0.53856-0.35879-0.86367-0.35879zm0 2.4449h8.5551v1.8326c0 1.6854 1.3696 3.0551 3.0551 3.0551h1.8326v11c0 0.67466-0.5478 1.2225-1.2225 1.2225h-12.22c-0.67467 0-1.2225-0.5478-1.2225-1.2225v-14.665c0-0.67467 0.5478-1.2225 1.2225-1.2225zm9.7775 0.50488 3.1604 3.1604h-1.3277c-1.0108 0-1.8326-0.82184-1.8326-1.8326z" fill="#aeaeae" stroke-width="1.2222"/>
|
6
|
+
<path d="m12 6c-0.82934 0-1.5 0.67081-1.5 1.5003v3.0007h-3c-0.82934 0-1.5 0.67081-1.5 1.5003 0 0.82952 0.67066 1.5003 1.5 1.5003h3v3.0007c0 0.82952 0.67066 1.4977 1.5 1.4977 0.82934 0 1.5-0.66817 1.5-1.4977v-3.0007h3c0.82934 0 1.5-0.67081 1.5-1.5003 1e-6 -0.82952-0.67066-1.5003-1.5-1.5003h-3v-3.0007c0-0.82952-0.67066-1.5003-1.5-1.5003z" fill="#69c" stroke-width="1.4999"/>
|
7
|
+
</g>
|
8
|
+
</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="m15.667 12h-2.4444v-2.4444c0-0.67589-0.54633-1.2222-1.2222-1.2222s-1.2222 0.54633-1.2222 1.2222v2.4444h-2.4444c-0.67589 0-1.2222 0.54633-1.2222 1.2222s0.54633 1.2222 1.2222 1.2222h2.4444v2.4444c0 0.67589 0.54633 1.2222 1.2222 1.2222s1.2222-0.54633 1.2222-1.2222v-2.4444h2.4444c0.67589 0 1.2222-0.54633 1.2222-1.2222s-0.54633-1.2222-1.2222-1.2222zm5.753-5.753-4.8889-4.8889c-0.22856-0.22978-0.539-0.35811-0.86411-0.35811h-9.7778c-2.0216 0-3.6667 1.6451-3.6667 3.6667v14.667c0 2.0216 1.6451 3.6667 3.6667 3.6667h12.222c2.0216 0 3.6667-1.6451 3.6667-3.6667v-12.222c0-0.32511-0.12833-0.63556-0.35811-0.86411zm-2.5923 0.86411h-1.3273c-1.0108 0-1.8333-0.82256-1.8333-1.8333v-1.3273zm-0.71622 13.444h-12.222c-0.67467 0-1.2222-0.54756-1.2222-1.2222v-14.667c0-0.67467 0.54756-1.2222 1.2222-1.2222h8.5556v1.8333c0 1.6854 1.3701 3.0556 3.0556 3.0556h1.8333v11c0 0.67467-0.54756 1.2222-1.2222 1.2222z" fill="#aeaeae" stroke-width="1.2222"/>
|
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="m21.42 6.247-4.8889-4.8889c-0.22856-0.22978-0.539-0.35811-0.86411-0.35811h-9.7778c-2.0216 0-3.6667 1.6451-3.6667 3.6667v14.667c0 2.0216 1.6451 3.6667 3.6667 3.6667h12.222c2.0216 0 3.6667-1.6451 3.6667-3.6667v-12.222c0-0.32511-0.12833-0.63556-0.35811-0.86411zm-2.5923 0.86411h-1.3273c-1.0108 0-1.8333-0.82256-1.8333-1.8333v-1.3273zm-0.71622 13.444h-12.222c-0.67467 0-1.2222-0.54756-1.2222-1.2222v-14.667c0-0.67467 0.54756-1.2222 1.2222-1.2222h8.5556v1.8333c0 1.6854 1.3701 3.0556 3.0556 3.0556h1.8333v11c0 0.67467-0.54756 1.2222-1.2222 1.2222z" fill="#aeaeae" stroke-width="1.2222"/>
|
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="M 22,12 A 2.6315,2.6315 0 0 0 19.3686,9.3686 2.6315,2.6315 0 0 0 16.7372,12 2.6315,2.6315 0 0 0 19.3686,14.6314 2.6315,2.6315 0 0 0 22,12 Z m -7.3686,0 A 2.6315,2.6315 0 0 0 12,9.3686 2.6315,2.6315 0 0 0 9.3686,12 2.6315,2.6315 0 0 0 12,14.6314 2.6315,2.6315 0 0 0 14.6314,12 Z M 7.2628,12 A 2.6315,2.6315 0 0 0 4.6314,9.3686 2.6315,2.6315 0 0 0 2,12 2.6315,2.6315 0 0 0 4.6314,14.6314 2.6315,2.6315 0 0 0 7.2628,12 Z" fill="#aeaeae" stroke-width=".90909"/>
|
4
|
+
</svg>
|
@@ -17,6 +17,7 @@ licenseurl = https://creativecommons.org/licenses/by-sa/4.0/
|
|
17
17
|
|
18
18
|
[Map]
|
19
19
|
add = typ_plus.svg
|
20
|
+
add_document = typ_document-add.svg
|
20
21
|
alert_error = typ_delete-full.svg
|
21
22
|
alert_info = typ_lightbulb-full.svg
|
22
23
|
alert_question = typ_directions-full.svg
|
@@ -39,10 +40,12 @@ cls_none = typ_cancel.svg
|
|
39
40
|
cls_novel = typ_book.svg
|
40
41
|
cls_object = typ_key.svg
|
41
42
|
cls_plot = typ_puzzle.svg
|
43
|
+
cls_template = typ_document-add-col.svg
|
42
44
|
cls_timeline = typ_calendar.svg
|
43
45
|
cls_trash = typ_trash.svg
|
44
46
|
cls_world = typ_location.svg
|
45
47
|
cross = typ_times.svg
|
48
|
+
document = typ_document.svg
|
46
49
|
down = typ_chevron-down.svg
|
47
50
|
edit = typ_pencil.svg
|
48
51
|
export = typ_export.svg
|
@@ -56,9 +59,11 @@ fmt_subscript = nw_tb-subscript.svg
|
|
56
59
|
fmt_superscript = nw_tb-superscript.svg
|
57
60
|
fmt_underline = nw_tb-underline.svg
|
58
61
|
forward = typ_chevron-right.svg
|
62
|
+
import = mixed_import.svg
|
59
63
|
maximise = typ_arrow-maximise.svg
|
60
64
|
menu = typ_th-dot-menu.svg
|
61
65
|
minimise = typ_arrow-minimise.svg
|
66
|
+
more = typ_th-dot-more.svg
|
62
67
|
noncheckable = mixed_input-none.svg
|
63
68
|
panel = nw_panel.svg
|
64
69
|
proj_chapter = mixed_document-chapter.svg
|
@@ -83,6 +88,7 @@ search_regex = nw_search-regex.svg
|
|
83
88
|
search_replace = mixed_search-replace.svg
|
84
89
|
search_word = nw_search-word.svg
|
85
90
|
settings = typ_cog.svg
|
91
|
+
star = typ_star.svg
|
86
92
|
status_idle = typ_media-pause-grey.svg
|
87
93
|
status_lang = typ_globe-grey.svg
|
88
94
|
status_lines = typ_th-list-grey.svg
|
@@ -0,0 +1,5 @@
|
|
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="m3.1113 3.666c-0.61332 0-1.1094 0.49689-1.1094 1.1113v15.557h-0.0019531c0 0.61443 0.498 1.1094 1.1113 1.1094h15.557c0.61332 0 1.1113-0.49494 1.1113-1.1094v-8.2578c-0.61899 0.57364-1.3634 1.0131-2.252 1.2578-0.004058 2.0524-0.007162 4.0735 0.005859 5.8887h-13.311v-13.318c1.6116-0.00848 2.8992 0 4.4648 0 0.75712-0.75269 1.5907-1.5005 2.3418-2.2383h-7.918z" fill="#718c00"/>
|
4
|
+
<path d="m21.996 3.1106v-0.55556c-1.8789 2.8644-4 4.3922-6.6667 4.4444v-3.3333c0-0.61222-0.56778-1.1111-1.27-1.1111-0.40444 0-0.75 0.17556-0.98111 0.43444-2.1478 2.2544-6.6378 6.7878-6.6378 6.7878s4.49 4.5356 6.6389 6.8189c0.23111 0.22778 0.57556 0.40333 0.98 0.40333 0.70222 0 1.27-0.49667 1.27-1.1111v-3.3333c5.1778 0 6.6667-5.4122 6.6667-9.4444z" fill="#718c00" stroke-width="1.1111"/>
|
5
|
+
</svg>
|
@@ -0,0 +1,8 @@
|
|
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
|
+
<g>
|
4
|
+
<path d="m5.8898 3.4449c-0.67467 1e-7 -1.2225 0.5478-1.2225 1.2225v14.665c0 0.67466 0.5478 1.2225 1.2225 1.2225h12.22c0.67466 0 1.2225-0.5478 1.2225-1.2225v-11h-1.8326c-1.6854 0-3.0551-1.3696-3.0551-3.0551v-1.8326zm9.7775 0.50488v1.3277c0 1.0108 0.82184 1.8326 1.8326 1.8326h1.3277z" fill="#ededed" stroke-linecap="round" stroke-width=".55"/>
|
5
|
+
<path d="m5.8898 1c-2.0216 0-3.6674 1.6458-3.6674 3.6674v14.665c0 2.0216 1.6458 3.6674 3.6674 3.6674h12.22c2.0216 0 3.6674-1.6458 3.6674-3.6674v-12.222c0-0.32511-0.12901-0.63512-0.35879-0.86367l-4.8877-4.8877c-0.22856-0.22978-0.53856-0.35879-0.86367-0.35879zm0 2.4449h8.5551v1.8326c0 1.6854 1.3696 3.0551 3.0551 3.0551h1.8326v11c0 0.67466-0.5478 1.2225-1.2225 1.2225h-12.22c-0.67467 0-1.2225-0.5478-1.2225-1.2225v-14.665c0-0.67467 0.5478-1.2225 1.2225-1.2225zm9.7775 0.50488 3.1604 3.1604h-1.3277c-1.0108 0-1.8326-0.82184-1.8326-1.8326z" fill="#333" stroke-width="1.2222"/>
|
6
|
+
<path d="m12 6c-0.82934 0-1.5 0.67081-1.5 1.5003v3.0007h-3c-0.82934 0-1.5 0.67081-1.5 1.5003 0 0.82952 0.67066 1.5003 1.5 1.5003h3v3.0007c0 0.82952 0.67066 1.4977 1.5 1.4977 0.82934 0 1.5-0.66817 1.5-1.4977v-3.0007h3c0.82934 0 1.5-0.67081 1.5-1.5003 1e-6 -0.82952-0.67066-1.5003-1.5-1.5003h-3v-3.0007c0-0.82952-0.67066-1.5003-1.5-1.5003z" fill="#4271ae" stroke-width="1.4999"/>
|
7
|
+
</g>
|
8
|
+
</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="m15.667 12h-2.4444v-2.4444c0-0.67589-0.54633-1.2222-1.2222-1.2222s-1.2222 0.54633-1.2222 1.2222v2.4444h-2.4444c-0.67589 0-1.2222 0.54633-1.2222 1.2222s0.54633 1.2222 1.2222 1.2222h2.4444v2.4444c0 0.67589 0.54633 1.2222 1.2222 1.2222s1.2222-0.54633 1.2222-1.2222v-2.4444h2.4444c0.67589 0 1.2222-0.54633 1.2222-1.2222s-0.54633-1.2222-1.2222-1.2222zm5.753-5.753-4.8889-4.8889c-0.22856-0.22978-0.539-0.35811-0.86411-0.35811h-9.7778c-2.0216 0-3.6667 1.6451-3.6667 3.6667v14.667c0 2.0216 1.6451 3.6667 3.6667 3.6667h12.222c2.0216 0 3.6667-1.6451 3.6667-3.6667v-12.222c0-0.32511-0.12833-0.63556-0.35811-0.86411zm-2.5923 0.86411h-1.3273c-1.0108 0-1.8333-0.82256-1.8333-1.8333v-1.3273zm-0.71622 13.444h-12.222c-0.67467 0-1.2222-0.54756-1.2222-1.2222v-14.667c0-0.67467 0.54756-1.2222 1.2222-1.2222h8.5556v1.8333c0 1.6854 1.3701 3.0556 3.0556 3.0556h1.8333v11c0 0.67467-0.54756 1.2222-1.2222 1.2222z" fill-opacity=".78039" stroke-width="1.2222"/>
|
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="m21.42 6.247-4.8889-4.8889c-0.22856-0.22978-0.539-0.35811-0.86411-0.35811h-9.7778c-2.0216 0-3.6667 1.6451-3.6667 3.6667v14.667c0 2.0216 1.6451 3.6667 3.6667 3.6667h12.222c2.0216 0 3.6667-1.6451 3.6667-3.6667v-12.222c0-0.32511-0.12833-0.63556-0.35811-0.86411zm-2.5923 0.86411h-1.3273c-1.0108 0-1.8333-0.82256-1.8333-1.8333v-1.3273zm-0.71622 13.444h-12.222c-0.67467 0-1.2222-0.54756-1.2222-1.2222v-14.667c0-0.67467 0.54756-1.2222 1.2222-1.2222h8.5556v1.8333c0 1.6854 1.3701 3.0556 3.0556 3.0556h1.8333v11c0 0.67467-0.54756 1.2222-1.2222 1.2222z" fill-opacity=".78039" stroke-width="1.2222"/>
|
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="M 22,12 A 2.6315,2.6315 0 0 0 19.3686,9.3686 2.6315,2.6315 0 0 0 16.7372,12 2.6315,2.6315 0 0 0 19.3686,14.6314 2.6315,2.6315 0 0 0 22,12 Z m -7.3686,0 A 2.6315,2.6315 0 0 0 12,9.3686 2.6315,2.6315 0 0 0 9.3686,12 2.6315,2.6315 0 0 0 12,14.6314 2.6315,2.6315 0 0 0 14.6314,12 Z M 7.2628,12 A 2.6315,2.6315 0 0 0 4.6314,9.3686 2.6315,2.6315 0 0 0 2,12 2.6315,2.6315 0 0 0 4.6314,14.6314 2.6315,2.6315 0 0 0 7.2628,12 Z" fill-opacity=".78039" stroke-width=".90909"/>
|
4
|
+
</svg>
|
@@ -0,0 +1,4 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<svg width="460" height="60" version="1.1" viewBox="0 0 121.71 15.875" xmlns="http://www.w3.org/2000/svg">
|
3
|
+
<path d="m50.202 0v1.7585h0.67954c0.31249 0 0.53129 0.070663 0.65629 0.21136 0.14062 0.12506 0.21084 0.33602 0.21084 0.63304v10.294c0 0.31265-0.07022 0.53937-0.21084 0.68006-0.125 0.14069-0.3438 0.21084-0.65629 0.21084h-0.67954v1.7353h5.6012v-1.7353h-0.67954c-0.29687 0-0.51567-0.07015-0.65629-0.21084-0.14062-0.14069-0.21084-0.35927-0.21084-0.65629v-12.921zm36.093 0.32815v2.1575h2.6484v-2.1575zm-29.179 0.023771v1.7353h0.49248c0.45312 0 0.77317 0.070146 0.96066 0.21084 0.1875 0.12506 0.3203 0.37516 0.39842 0.75034l2.8122 12.475h2.0624l2.6954-8.6289 2.742 8.6289h2.0392l2.789-12.475c0.07812-0.37518 0.21093-0.62528 0.39843-0.75034 0.1875-0.14069 0.50807-0.21084 0.96118-0.21084h0.51573v-1.7353h-3.5863l-2.3203 10.88-2.5544-8.324h-1.9689l-2.5311 8.324-2.2965-10.88zm38.109 0.58601-2.4846 0.79737v2.5327h-1.8278v1.6883h1.8278v6.1433c0 1.235 0.3282 2.1734 0.98444 2.8143 0.65624 0.64094 1.6327 0.96118 2.9295 0.96118 0.82811 0 1.5471-0.11743 2.1565-0.35192 0.60936-0.23449 1.1716-0.57049 1.6872-1.0082v-1.7818h-2.1327v1.0082c-0.35937 0.29702-0.88296 0.44545-1.5704 0.44545-0.53124 0-0.92966-0.14843-1.1953-0.44545-0.24999-0.29702-0.37465-0.78959-0.37465-1.4774v-6.3076h3.3745v-1.6883h-3.3745zm-87.678 2.9781c-0.96873 0-1.7971 0.15605-2.4846 0.46871-0.67186 0.29702-1.2733 0.78197-1.8045 1.4542l-0.14056-1.571h-2.9998v1.7585h0.49196c0.31249 0 0.53129 0.070146 0.65629 0.21084 0.125 0.12506 0.18759 0.34415 0.18759 0.65681v6.0265c0 0.31265-0.070218 0.53885-0.21084 0.67955-0.125 0.12506-0.3438 0.18758-0.65629 0.18758h-0.58601v1.7353h5.3671v-1.7353h-0.60927c-0.29687 0-0.50804-0.06252-0.63304-0.18758-0.10937-0.14069-0.16381-0.36689-0.16381-0.67955v-4.7372c0-0.8129 0.25747-1.4458 0.77308-1.8991s1.172-0.68006 1.9689-0.68006c0.73436 0 1.2656 0.17995 1.5937 0.5395 0.32812 0.34392 0.49248 0.90664 0.49248 1.6883v7.691h4.0308v-1.7353h-0.65629c-0.31249 0-0.53892-0.06252-0.67954-0.18758-0.125-0.14069-0.18758-0.36689-0.18758-0.67955v-5.1123c0-2.595-1.2497-3.8923-3.7496-3.8923zm12.351 0c-1.9218 0-3.3669 0.53171-4.3357 1.5947-0.9531 1.0474-1.4299 2.5164-1.4299 4.408 0 1.8759 0.48441 3.3379 1.4531 4.3853s2.4062 1.571 4.3124 1.571c1.9062 0 3.3437-0.52357 4.3124-1.571 0.96873-1.0474 1.4531-2.5093 1.4531-4.3853 0-1.8916-0.48441-3.3606-1.4531-4.408-0.9531-1.063-2.3906-1.5947-4.3124-1.5947zm23.39 0c-1.8281 0-3.2421 0.51595-4.2421 1.5477-0.98435 1.0161-1.4769 2.5401-1.4769 4.5723 0 1.9072 0.53123 3.361 1.5937 4.3615 1.0781 0.98486 2.5079 1.4774 4.2891 1.4774 1.0312 0 1.9217-0.11743 2.6717-0.35192 0.76561-0.21886 1.477-0.56248 2.1332-1.0315v-1.6418h-2.1797v0.84439c-0.32812 0.20322-0.6955 0.35165-1.1017 0.44545-0.40624 0.07816-0.90643 0.11731-1.5002 0.11731-1.0468 0-1.8824-0.29686-2.5073-0.8909-0.60936-0.60967-0.91416-1.5481-0.91416-2.8143h8.6015v-1.0785c0-1.704-0.45338-3.0561-1.3596-4.0566-0.90623-1.0005-2.2419-1.5007-4.0075-1.5007zm63.772 0c-1.8281 0-3.2422 0.51595-4.2421 1.5477-0.98436 1.0161-1.4764 2.5401-1.4764 4.5723 0 1.9072 0.53122 3.361 1.5937 4.3615 1.0781 0.98486 2.5074 1.4774 4.2886 1.4774 1.0312 0 1.9222-0.11743 2.6722-0.35192 0.7656-0.21886 1.4764-0.56248 2.1327-1.0315v-1.6418h-2.1797v0.84439c-0.32811 0.20322-0.6955 0.35165-1.1017 0.44545-0.40624 0.07816-0.90591 0.11731-1.4996 0.11731-1.0468 0-1.8829-0.29686-2.5079-0.8909-0.60936-0.60967-0.91415-1.5481-0.91415-2.8143h8.6015v-1.0785c0-1.704-0.45338-3.0561-1.3596-4.0566-0.90623-1.0005-2.2419-1.5007-4.0075-1.5007zm-81.607 0.35192v1.618h0.49196c0.39062 0 0.65623 0.046764 0.79685 0.14056 0.15625 0.078163 0.27328 0.24235 0.3514 0.49248l3.2344 9.0041h2.5781l3.2112-9.0041c0.09375-0.25012 0.21078-0.41431 0.3514-0.49248 0.15625-0.093796 0.42186-0.14056 0.79685-0.14056h0.51573v-1.618h-3.2582l-2.9058 8.7933-2.9063-8.7933zm50.694 0v1.7348h0.49196c0.29687 0 0.50804 0.070663 0.63304 0.21136 0.125 0.14069 0.18758 0.35927 0.18758 0.65629v6.0503c0 0.31265-0.07022 0.53885-0.21084 0.67955-0.125 0.12506-0.3438 0.18758-0.65629 0.18758h-0.58601v1.7353h5.3671v-1.7353h-0.58601c-0.29687 0-0.50804-0.06252-0.63304-0.18758-0.125-0.14069-0.18707-0.36689-0.18707-0.67955v-4.4788c0-0.82853 0.18725-1.4385 0.56224-1.8293 0.37499-0.40645 1.008-0.60978 1.8986-0.60978h1.3121v-1.7348h-1.078c-0.67186 0-1.2575 0.093528-1.7575 0.28112-0.48436 0.18759-0.88278 0.52359-1.1953 1.0082l-0.32815-1.2893zm8.6718 0v1.7585h0.67954c0.31249 0 0.53129 0.070146 0.65629 0.21084 0.14062 0.12506 0.21084 0.33602 0.21084 0.63304v6.0265c0 0.31265-0.07022 0.53937-0.21084 0.68006-0.125 0.14069-0.3438 0.21084-0.65629 0.21084h-0.67954v1.7353h5.6012v-1.7353h-0.67954c-0.29687 0-0.51567-0.07015-0.65629-0.21084-0.14062-0.14069-0.21084-0.35927-0.21084-0.65629v-8.6527zm29.296 0v1.7348h0.49247c0.29687 0 0.50753 0.070663 0.63252 0.21136 0.125 0.14069 0.18759 0.35927 0.18759 0.65629v6.0503c0 0.31265-0.0702 0.53885-0.21085 0.67955-0.12499 0.12506-0.34379 0.18758-0.65629 0.18758h-0.58601v1.7353h5.3671v-1.7353h-0.58601c-0.29686 0-0.50751-0.06252-0.63251-0.18758-0.125-0.14069-0.18758-0.36689-0.18758-0.67955v-4.4788c0-0.82853 0.18725-1.4385 0.56223-1.8293 0.37499-0.40645 1.008-0.60978 1.8986-0.60978h1.3126v-1.7348h-1.078c-0.67185 0-1.258 0.093528-1.758 0.28112-0.48436 0.18759-0.88278 0.52359-1.1953 1.0082l-0.32814-1.2893zm-70.85 1.3364c1.9843 0 2.9766 1.1412 2.9766 3.4236h-6.1872c0-1.063 0.27324-1.8992 0.8201-2.5089s1.3437-0.91467 2.3906-0.91467zm63.772 0c1.9843 0 2.9766 1.1412 2.9766 3.4236h-6.1877c0-1.063 0.27375-1.8992 0.82062-2.5089 0.54686-0.60967 1.3437-0.91467 2.3906-0.91467zm-87.139 0.07028c1.125 0 1.961 0.35176 2.5079 1.0552 0.54686 0.68784 0.8201 1.7507 0.8201 3.189 0 1.4226-0.27324 2.4779-0.8201 3.1657-0.54686 0.68784-1.3829 1.032-2.5079 1.032-1.125 0-1.961-0.34414-2.5079-1.032-0.53124-0.68784-0.79685-1.7431-0.79685-3.1657 0-1.4382 0.26561-2.5011 0.79685-3.189 0.54686-0.70347 1.3829-1.0552 2.5079-1.0552z" fill="#fafafa" stroke-linecap="round" stroke-width=".21978"/>
|
4
|
+
</svg>
|
@@ -0,0 +1,4 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<svg width="460" height="60" version="1.1" viewBox="0 0 121.71 15.875" xmlns="http://www.w3.org/2000/svg">
|
3
|
+
<path d="m50.202 0v1.7585h0.67954c0.31249 0 0.53129 0.070663 0.65629 0.21136 0.14062 0.12506 0.21084 0.33602 0.21084 0.63304v10.294c0 0.31265-0.07022 0.53937-0.21084 0.68006-0.125 0.14069-0.3438 0.21084-0.65629 0.21084h-0.67954v1.7353h5.6012v-1.7353h-0.67954c-0.29687 0-0.51567-0.07015-0.65629-0.21084-0.14062-0.14069-0.21084-0.35927-0.21084-0.65629v-12.921zm36.093 0.32815v2.1575h2.6484v-2.1575zm-29.179 0.023771v1.7353h0.49248c0.45312 0 0.77317 0.070146 0.96066 0.21084 0.1875 0.12506 0.3203 0.37516 0.39842 0.75034l2.8122 12.475h2.0624l2.6954-8.6289 2.742 8.6289h2.0392l2.789-12.475c0.07812-0.37518 0.21093-0.62528 0.39843-0.75034 0.1875-0.14069 0.50807-0.21084 0.96118-0.21084h0.51573v-1.7353h-3.5863l-2.3203 10.88-2.5544-8.324h-1.9689l-2.5311 8.324-2.2965-10.88zm38.109 0.58601-2.4846 0.79737v2.5327h-1.8278v1.6883h1.8278v6.1433c0 1.235 0.3282 2.1734 0.98444 2.8143 0.65624 0.64094 1.6327 0.96118 2.9295 0.96118 0.82811 0 1.5471-0.11743 2.1565-0.35192 0.60936-0.23449 1.1716-0.57049 1.6872-1.0082v-1.7818h-2.1327v1.0082c-0.35937 0.29702-0.88296 0.44545-1.5704 0.44545-0.53124 0-0.92966-0.14843-1.1953-0.44545-0.24999-0.29702-0.37465-0.78959-0.37465-1.4774v-6.3076h3.3745v-1.6883h-3.3745zm-87.678 2.9781c-0.96873 0-1.7971 0.15605-2.4846 0.46871-0.67186 0.29702-1.2733 0.78197-1.8045 1.4542l-0.14056-1.571h-2.9998v1.7585h0.49196c0.31249 0 0.53129 0.070146 0.65629 0.21084 0.125 0.12506 0.18759 0.34415 0.18759 0.65681v6.0265c0 0.31265-0.070218 0.53885-0.21084 0.67955-0.125 0.12506-0.3438 0.18758-0.65629 0.18758h-0.58601v1.7353h5.3671v-1.7353h-0.60927c-0.29687 0-0.50804-0.06252-0.63304-0.18758-0.10937-0.14069-0.16381-0.36689-0.16381-0.67955v-4.7372c0-0.8129 0.25747-1.4458 0.77308-1.8991s1.172-0.68006 1.9689-0.68006c0.73436 0 1.2656 0.17995 1.5937 0.5395 0.32812 0.34392 0.49248 0.90664 0.49248 1.6883v7.691h4.0308v-1.7353h-0.65629c-0.31249 0-0.53892-0.06252-0.67954-0.18758-0.125-0.14069-0.18758-0.36689-0.18758-0.67955v-5.1123c0-2.595-1.2497-3.8923-3.7496-3.8923zm12.351 0c-1.9218 0-3.3669 0.53171-4.3357 1.5947-0.9531 1.0474-1.4299 2.5164-1.4299 4.408 0 1.8759 0.48441 3.3379 1.4531 4.3853s2.4062 1.571 4.3124 1.571c1.9062 0 3.3437-0.52357 4.3124-1.571 0.96873-1.0474 1.4531-2.5093 1.4531-4.3853 0-1.8916-0.48441-3.3606-1.4531-4.408-0.9531-1.063-2.3906-1.5947-4.3124-1.5947zm23.39 0c-1.8281 0-3.2421 0.51595-4.2421 1.5477-0.98435 1.0161-1.4769 2.5401-1.4769 4.5723 0 1.9072 0.53123 3.361 1.5937 4.3615 1.0781 0.98486 2.5079 1.4774 4.2891 1.4774 1.0312 0 1.9217-0.11743 2.6717-0.35192 0.76561-0.21886 1.477-0.56248 2.1332-1.0315v-1.6418h-2.1797v0.84439c-0.32812 0.20322-0.6955 0.35165-1.1017 0.44545-0.40624 0.07816-0.90643 0.11731-1.5002 0.11731-1.0468 0-1.8824-0.29686-2.5073-0.8909-0.60936-0.60967-0.91416-1.5481-0.91416-2.8143h8.6015v-1.0785c0-1.704-0.45338-3.0561-1.3596-4.0566-0.90623-1.0005-2.2419-1.5007-4.0075-1.5007zm63.772 0c-1.8281 0-3.2422 0.51595-4.2421 1.5477-0.98436 1.0161-1.4764 2.5401-1.4764 4.5723 0 1.9072 0.53122 3.361 1.5937 4.3615 1.0781 0.98486 2.5074 1.4774 4.2886 1.4774 1.0312 0 1.9222-0.11743 2.6722-0.35192 0.7656-0.21886 1.4764-0.56248 2.1327-1.0315v-1.6418h-2.1797v0.84439c-0.32811 0.20322-0.6955 0.35165-1.1017 0.44545-0.40624 0.07816-0.90591 0.11731-1.4996 0.11731-1.0468 0-1.8829-0.29686-2.5079-0.8909-0.60936-0.60967-0.91415-1.5481-0.91415-2.8143h8.6015v-1.0785c0-1.704-0.45338-3.0561-1.3596-4.0566-0.90623-1.0005-2.2419-1.5007-4.0075-1.5007zm-81.607 0.35192v1.618h0.49196c0.39062 0 0.65623 0.046764 0.79685 0.14056 0.15625 0.078163 0.27328 0.24235 0.3514 0.49248l3.2344 9.0041h2.5781l3.2112-9.0041c0.09375-0.25012 0.21078-0.41431 0.3514-0.49248 0.15625-0.093796 0.42186-0.14056 0.79685-0.14056h0.51573v-1.618h-3.2582l-2.9058 8.7933-2.9063-8.7933zm50.694 0v1.7348h0.49196c0.29687 0 0.50804 0.070663 0.63304 0.21136 0.125 0.14069 0.18758 0.35927 0.18758 0.65629v6.0503c0 0.31265-0.07022 0.53885-0.21084 0.67955-0.125 0.12506-0.3438 0.18758-0.65629 0.18758h-0.58601v1.7353h5.3671v-1.7353h-0.58601c-0.29687 0-0.50804-0.06252-0.63304-0.18758-0.125-0.14069-0.18707-0.36689-0.18707-0.67955v-4.4788c0-0.82853 0.18725-1.4385 0.56224-1.8293 0.37499-0.40645 1.008-0.60978 1.8986-0.60978h1.3121v-1.7348h-1.078c-0.67186 0-1.2575 0.093528-1.7575 0.28112-0.48436 0.18759-0.88278 0.52359-1.1953 1.0082l-0.32815-1.2893zm8.6718 0v1.7585h0.67954c0.31249 0 0.53129 0.070146 0.65629 0.21084 0.14062 0.12506 0.21084 0.33602 0.21084 0.63304v6.0265c0 0.31265-0.07022 0.53937-0.21084 0.68006-0.125 0.14069-0.3438 0.21084-0.65629 0.21084h-0.67954v1.7353h5.6012v-1.7353h-0.67954c-0.29687 0-0.51567-0.07015-0.65629-0.21084-0.14062-0.14069-0.21084-0.35927-0.21084-0.65629v-8.6527zm29.296 0v1.7348h0.49247c0.29687 0 0.50753 0.070663 0.63252 0.21136 0.125 0.14069 0.18759 0.35927 0.18759 0.65629v6.0503c0 0.31265-0.0702 0.53885-0.21085 0.67955-0.12499 0.12506-0.34379 0.18758-0.65629 0.18758h-0.58601v1.7353h5.3671v-1.7353h-0.58601c-0.29686 0-0.50751-0.06252-0.63251-0.18758-0.125-0.14069-0.18758-0.36689-0.18758-0.67955v-4.4788c0-0.82853 0.18725-1.4385 0.56223-1.8293 0.37499-0.40645 1.008-0.60978 1.8986-0.60978h1.3126v-1.7348h-1.078c-0.67185 0-1.258 0.093528-1.758 0.28112-0.48436 0.18759-0.88278 0.52359-1.1953 1.0082l-0.32814-1.2893zm-70.85 1.3364c1.9843 0 2.9766 1.1412 2.9766 3.4236h-6.1872c0-1.063 0.27324-1.8992 0.8201-2.5089s1.3437-0.91467 2.3906-0.91467zm63.772 0c1.9843 0 2.9766 1.1412 2.9766 3.4236h-6.1877c0-1.063 0.27375-1.8992 0.82062-2.5089 0.54686-0.60967 1.3437-0.91467 2.3906-0.91467zm-87.139 0.07028c1.125 0 1.961 0.35176 2.5079 1.0552 0.54686 0.68784 0.8201 1.7507 0.8201 3.189 0 1.4226-0.27324 2.4779-0.8201 3.1657-0.54686 0.68784-1.3829 1.032-2.5079 1.032-1.125 0-1.961-0.34414-2.5079-1.032-0.53124-0.68784-0.79685-1.7431-0.79685-3.1657 0-1.4382 0.26561-2.5011 0.79685-3.189 0.54686-0.70347 1.3829-1.0552 2.5079-1.0552z" fill-opacity=".78039" stroke-linecap="round" stroke-width=".21978"/>
|
4
|
+
</svg>
|
Binary file
|
Binary file
|
novelwriter/assets/manual.pdf
CHANGED
Binary file
|
novelwriter/assets/sample.zip
CHANGED
Binary file
|