novelWriter 2.3.1__py3-none-any.whl → 2.4rc1__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.3.1.dist-info → novelWriter-2.4rc1.dist-info}/METADATA +5 -6
- {novelWriter-2.3.1.dist-info → novelWriter-2.4rc1.dist-info}/RECORD +102 -95
- novelwriter/__init__.py +7 -7
- novelwriter/assets/icons/none.svg +4 -0
- novelwriter/assets/icons/typicons_dark/icons.conf +4 -0
- novelwriter/assets/icons/typicons_dark/nw_tb-mark.svg +7 -0
- novelwriter/assets/icons/typicons_dark/typ_refresh-flipped.svg +1 -1
- novelwriter/assets/icons/typicons_dark/typ_refresh.svg +1 -1
- novelwriter/assets/icons/typicons_dark/typ_search-grey.svg +4 -0
- novelwriter/assets/icons/typicons_dark/typ_times.svg +1 -1
- novelwriter/assets/icons/typicons_dark/typ_unfold-hidden.svg +4 -0
- novelwriter/assets/icons/typicons_dark/typ_unfold-visible.svg +4 -0
- novelwriter/assets/icons/typicons_light/icons.conf +4 -0
- novelwriter/assets/icons/typicons_light/nw_tb-mark.svg +7 -0
- novelwriter/assets/icons/typicons_light/typ_refresh-flipped.svg +1 -1
- novelwriter/assets/icons/typicons_light/typ_refresh.svg +1 -1
- novelwriter/assets/icons/typicons_light/typ_search-grey.svg +4 -0
- novelwriter/assets/icons/typicons_light/typ_times.svg +1 -1
- novelwriter/assets/icons/typicons_light/typ_unfold-hidden.svg +4 -0
- novelwriter/assets/icons/typicons_light/typ_unfold-visible.svg +4 -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 +25 -23
- novelwriter/common.py +7 -2
- novelwriter/config.py +43 -16
- novelwriter/constants.py +5 -6
- novelwriter/core/buildsettings.py +60 -40
- novelwriter/core/coretools.py +97 -13
- novelwriter/core/docbuild.py +74 -7
- novelwriter/core/document.py +24 -3
- novelwriter/core/index.py +31 -112
- novelwriter/core/project.py +10 -15
- novelwriter/core/sessions.py +2 -2
- novelwriter/core/status.py +6 -5
- novelwriter/core/storage.py +8 -2
- novelwriter/core/tohtml.py +22 -25
- novelwriter/core/tokenizer.py +416 -232
- novelwriter/core/tomd.py +17 -8
- novelwriter/core/toodt.py +385 -350
- novelwriter/core/tree.py +8 -8
- novelwriter/dialogs/about.py +9 -11
- novelwriter/dialogs/docmerge.py +17 -14
- novelwriter/dialogs/docsplit.py +20 -19
- novelwriter/dialogs/editlabel.py +5 -4
- novelwriter/dialogs/preferences.py +31 -39
- novelwriter/dialogs/projectsettings.py +29 -26
- novelwriter/dialogs/quotes.py +10 -9
- novelwriter/dialogs/wordlist.py +15 -12
- novelwriter/enum.py +17 -14
- novelwriter/error.py +13 -11
- novelwriter/extensions/circularprogress.py +12 -8
- novelwriter/extensions/configlayout.py +1 -3
- novelwriter/extensions/modified.py +51 -2
- novelwriter/extensions/pagedsidebar.py +16 -14
- novelwriter/extensions/simpleprogress.py +3 -1
- novelwriter/extensions/statusled.py +3 -1
- novelwriter/extensions/switch.py +10 -9
- novelwriter/extensions/switchbox.py +14 -13
- novelwriter/extensions/versioninfo.py +1 -1
- novelwriter/gui/doceditor.py +413 -478
- novelwriter/gui/dochighlight.py +33 -29
- novelwriter/gui/docviewer.py +162 -175
- novelwriter/gui/docviewerpanel.py +20 -37
- novelwriter/gui/editordocument.py +15 -4
- novelwriter/gui/itemdetails.py +51 -54
- novelwriter/gui/mainmenu.py +37 -16
- novelwriter/gui/noveltree.py +30 -36
- novelwriter/gui/outline.py +114 -92
- novelwriter/gui/projtree.py +60 -66
- novelwriter/gui/search.py +362 -0
- novelwriter/gui/sidebar.py +36 -45
- novelwriter/gui/statusbar.py +14 -14
- novelwriter/gui/theme.py +93 -28
- novelwriter/guimain.py +207 -200
- novelwriter/shared.py +31 -6
- novelwriter/text/counting.py +137 -0
- novelwriter/tools/dictionaries.py +13 -12
- novelwriter/tools/lipsum.py +20 -17
- novelwriter/tools/manusbuild.py +35 -27
- novelwriter/tools/manuscript.py +374 -90
- novelwriter/tools/manussettings.py +261 -124
- novelwriter/tools/noveldetails.py +20 -18
- novelwriter/tools/welcome.py +48 -44
- novelwriter/tools/writingstats.py +61 -55
- novelwriter/types.py +90 -0
- novelwriter/core/__init__.py +0 -3
- novelwriter/dialogs/__init__.py +0 -3
- novelwriter/extensions/__init__.py +0 -3
- novelwriter/gui/__init__.py +0 -3
- novelwriter/tools/__init__.py +0 -3
- {novelWriter-2.3.1.dist-info → novelWriter-2.4rc1.dist-info}/LICENSE.md +0 -0
- {novelWriter-2.3.1.dist-info → novelWriter-2.4rc1.dist-info}/WHEEL +0 -0
- {novelWriter-2.3.1.dist-info → novelWriter-2.4rc1.dist-info}/entry_points.txt +0 -0
- {novelWriter-2.3.1.dist-info → novelWriter-2.4rc1.dist-info}/top_level.txt +0 -0
@@ -1,14 +1,13 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: novelWriter
|
3
|
-
Version: 2.
|
3
|
+
Version: 2.4rc1
|
4
4
|
Summary: A markdown-like text editor for planning and writing novels
|
5
|
-
|
6
|
-
Author: Veronica Berglyd Olsen
|
7
|
-
Author-email: code@vkbo.net
|
5
|
+
Author-email: Veronica Berglyd Olsen <code@vkbo.net>
|
8
6
|
License: GNU General Public License v3
|
9
|
-
Project-URL:
|
7
|
+
Project-URL: Homepage, https://novelwriter.io
|
10
8
|
Project-URL: Documentation, https://docs.novelwriter.io
|
11
|
-
Project-URL:
|
9
|
+
Project-URL: Repository, https://github.com/vkbo/novelWriter
|
10
|
+
Project-URL: Issues, https://github.com/vkbo/novelWriter/issues
|
12
11
|
Classifier: Programming Language :: Python :: 3 :: Only
|
13
12
|
Classifier: Programming Language :: Python :: 3.8
|
14
13
|
Classifier: Programming Language :: Python :: 3.9
|
@@ -1,13 +1,14 @@
|
|
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/
|
10
|
-
novelwriter/assets/
|
1
|
+
novelwriter/__init__.py,sha256=gPJGUpR72TL3DUdELpLxpobESk-1BSaPJAkBc3NhSAY,7593
|
2
|
+
novelwriter/common.py,sha256=mLy2OhEF2Ad9I-NQcPkNsJ6yqN6AOtB0ThhIdEnIY5I,17376
|
3
|
+
novelwriter/config.py,sha256=HCZF0wE2iI4oOB-Trd9lB4VefgzHhvh0rUbOyUJukLU,35740
|
4
|
+
novelwriter/constants.py,sha256=UIxiF-23cB_gmRfxbQPYmObn8Ib-ygm46uOIG329RLY,19818
|
5
|
+
novelwriter/enum.py,sha256=MP-nz3vDRp4bWxXitqjdLWO2_RvrDAlRxngiMON9mb8,3305
|
6
|
+
novelwriter/error.py,sha256=6NLRdTtqylbKJyrGes9yHOwpa24N7A2VFgnaJ6o0YnM,7263
|
7
|
+
novelwriter/guimain.py,sha256=aBPAeGNqCeFhXRXgm96sm_8M_JK_v3ghUI1BM5wj0Do,53461
|
8
|
+
novelwriter/shared.py,sha256=OS83rH3zFar0sEPTXAdq13LKNGDKNOaYhf1VZ513wGg,14278
|
9
|
+
novelwriter/types.py,sha256=6aP2hZraPEolYqBgj5R_5bah3NgelASBfKol6yYOi4g,3316
|
10
|
+
novelwriter/assets/manual.pdf,sha256=zhm9pfvpEc9rDPQzE7KW1kU9n6IMlxLK1Pc9m1Ul_18,2605816
|
11
|
+
novelwriter/assets/sample.zip,sha256=TTC6YpYhFs8wdJ9FNd8IFrZAc_o4It7UjT5luciEA6k,27361
|
11
12
|
novelwriter/assets/i18n/nw_de_DE.qm,sha256=oUV9VMrFuS14SLfe49xe53_o4KfnBUqdwSF5m6AXQb8,95974
|
12
13
|
novelwriter/assets/i18n/nw_en_US.qm,sha256=rCB443fatkLrRxsd3hVSn6VoX19SpNqR0zv4O1_wm1c,88824
|
13
14
|
novelwriter/assets/i18n/nw_es_419.qm,sha256=-4pEroJn4WDR3LeTO4XEvMKOxNrR4-ve-qKgq8FPWn8,98227
|
@@ -31,12 +32,13 @@ novelwriter/assets/i18n/project_nn_NO.json,sha256=7ZfmtFWHcDMiLVqdOEDHQWHbpoC_bv
|
|
31
32
|
novelwriter/assets/i18n/project_pt_BR.json,sha256=oZ7jdSF1h-kuGhKYZOWbuwVCRgakgs9HzeMSiLPnTns,2763
|
32
33
|
novelwriter/assets/i18n/project_ru_RU.json,sha256=F4QkD6VVDCtGdil7uoXCmuczvUpe9tv-1L-3Eyc8sKE,3699
|
33
34
|
novelwriter/assets/i18n/project_zh_CN.json,sha256=cfl0TsnbISYUvygOw015y0x0REDG97xR0yjyJ85Jm34,2322
|
35
|
+
novelwriter/assets/icons/none.svg,sha256=NRN9vMzohg7Ner71GwPthrCG0uA81TpY8UmKb8-L-pM,251
|
34
36
|
novelwriter/assets/icons/novelwriter.ico,sha256=OJRIeeUcmS7Di51NA3uF5_Ov4V8T47gQ9qWv6C7qDeA,171059
|
35
37
|
novelwriter/assets/icons/novelwriter.svg,sha256=Ad_SgOdXSDJtFR3DLCx6Afme15I78r38_YxCfO9F2z4,8511
|
36
38
|
novelwriter/assets/icons/x-novelwriter-project.ico,sha256=MXdZSYi3j95aIsT5bZo6CkhxmS75cThP9O_38UR7sjg,170697
|
37
39
|
novelwriter/assets/icons/x-novelwriter-project.svg,sha256=VHf1aClkA91tZVYb3LFk9bi_Dw25QBVSjUJAjSD-YX4,5143
|
38
40
|
novelwriter/assets/icons/typicons_dark/README.md,sha256=6ZxJq-19PNrMdeuVeVg84aLjxhr9oF7dLwuMFVGQyq0,1065
|
39
|
-
novelwriter/assets/icons/typicons_dark/icons.conf,sha256=
|
41
|
+
novelwriter/assets/icons/typicons_dark/icons.conf,sha256=b-OYPcmJe1CBXRa62AFm75XIWev4cfeFarJF5mGgpiY,4431
|
40
42
|
novelwriter/assets/icons/typicons_dark/mixed_document-chapter.svg,sha256=POP_Cs3bkkKAmrS_fTgjj90eyNK0bipNGgOhDDlXKu0,1650
|
41
43
|
novelwriter/assets/icons/typicons_dark/mixed_document-new.svg,sha256=EIVU3_ecC0d6rpCHXBfKoA_mWJyilqe7iA6XLQb9oRw,1849
|
42
44
|
novelwriter/assets/icons/typicons_dark/mixed_document-note.svg,sha256=OaPRbvkA7h4GA4mnFXJRORv80h2nAsJTmlIR8Msrwt8,1650
|
@@ -68,6 +70,7 @@ novelwriter/assets/icons/typicons_dark/nw_tb-bold-md.svg,sha256=WkeUP6xYSkV2aayM
|
|
68
70
|
novelwriter/assets/icons/typicons_dark/nw_tb-bold.svg,sha256=D42tFbrt-CYzAEzw3I3HZPdCy-HtZipsSNM7wiE8IAA,1259
|
69
71
|
novelwriter/assets/icons/typicons_dark/nw_tb-italic-md.svg,sha256=tJWQ8-FgR3sY3T5iKj30O2zQl1mtSr7ADxyRLOJh3rE,277
|
70
72
|
novelwriter/assets/icons/typicons_dark/nw_tb-italic.svg,sha256=FlL6g_cPN85405MN2_fmmmOdIVHiiywpfyDlLWytHfk,515
|
73
|
+
novelwriter/assets/icons/typicons_dark/nw_tb-mark.svg,sha256=_4tCzsjorR57WJLnDryX622rn2XMU6FP8nXYGSJiReE,1192
|
71
74
|
novelwriter/assets/icons/typicons_dark/nw_tb-strike-md.svg,sha256=7EcssNMul3_yuXrKLoMMJ_54Zfg5niL1KNCUWcQcjv8,1395
|
72
75
|
novelwriter/assets/icons/typicons_dark/nw_tb-strike.svg,sha256=uO12-KZ3Nx4GEL2mIXub01eCtHfKDR05-I33FdJ38NM,1698
|
73
76
|
novelwriter/assets/icons/typicons_dark/nw_tb-subscript.svg,sha256=dOhhKxlsdWuQ7tq8HkBcShjNOUBpyEKgUP1RoFDlPLs,1550
|
@@ -116,8 +119,9 @@ novelwriter/assets/icons/typicons_dark/typ_pin.svg,sha256=cuzFUatVsy3iP8uLZTuLO3
|
|
116
119
|
novelwriter/assets/icons/typicons_dark/typ_plus.svg,sha256=hD-O7FENTxcgH97uqu0B9ZVyZM-btyyodITnBLc6hX8,439
|
117
120
|
novelwriter/assets/icons/typicons_dark/typ_puzzle-outline.svg,sha256=pNsIi2-xyxMLoMvCMcBPreU5OVsoAMXxa_C1eSvR9tY,3271
|
118
121
|
novelwriter/assets/icons/typicons_dark/typ_puzzle.svg,sha256=0TA_9u9ihm2_SOHWlor8w7OKHmb2zewzw5cwrqt0h54,1404
|
119
|
-
novelwriter/assets/icons/typicons_dark/typ_refresh-flipped.svg,sha256=
|
120
|
-
novelwriter/assets/icons/typicons_dark/typ_refresh.svg,sha256=
|
122
|
+
novelwriter/assets/icons/typicons_dark/typ_refresh-flipped.svg,sha256=MuKo4-TiECrLLxbZFgvENxmBrsKJHl36JpagNb27aHk,952
|
123
|
+
novelwriter/assets/icons/typicons_dark/typ_refresh.svg,sha256=FNOb-thrI4QC7KQiKW9Cfag3IOfp3Syz-W6y5xRCVZQ,956
|
124
|
+
novelwriter/assets/icons/typicons_dark/typ_search-grey.svg,sha256=pSbbseZESP41HP4U3SBIIrlGzLzWFJaatOGXdxyphVo,737
|
121
125
|
novelwriter/assets/icons/typicons_dark/typ_search.svg,sha256=ahjax3IvhlP0sc08W-wO4RMk8cB_Gj_wHPGEkfSmRtc,770
|
122
126
|
novelwriter/assets/icons/typicons_dark/typ_star.svg,sha256=FIaFtvCYIjBuhcP7nNhRsbpZv48qhCR9JW3aifYqWyU,901
|
123
127
|
novelwriter/assets/icons/typicons_dark/typ_stopwatch-grey.svg,sha256=Dwb1BdXeZbDJrZ2nX5VNRfqTTzrD-bOIxUTj0rAG-VQ,1434
|
@@ -125,12 +129,14 @@ novelwriter/assets/icons/typicons_dark/typ_th-dot-menu.svg,sha256=ZTW0p8OxLw0R1X
|
|
125
129
|
novelwriter/assets/icons/typicons_dark/typ_th-dot-more.svg,sha256=GEBhivlN6G9sYf3wM4aU4p7kexO8ejvieMIpfEujRs8,612
|
126
130
|
novelwriter/assets/icons/typicons_dark/typ_th-list-grey.svg,sha256=zx4iK9nlfDFaYau_rnbXM_wrQT7A7eW268j4EkBACSE,1114
|
127
131
|
novelwriter/assets/icons/typicons_dark/typ_th-list.svg,sha256=0qsmBzD9ySWA9G3cuB_BAetuzx4qxaNvQ6TcL8c0d4A,846
|
128
|
-
novelwriter/assets/icons/typicons_dark/typ_times.svg,sha256=
|
132
|
+
novelwriter/assets/icons/typicons_dark/typ_times.svg,sha256=kcd-4tz9DmCMikIaSohdt4EzutDYUsTVBr8w2vqn1SE,703
|
129
133
|
novelwriter/assets/icons/typicons_dark/typ_trash.svg,sha256=XjO0SRcnPDrg9Qe8zR5W1k20liKKRop4O2liv2KILQY,2456
|
134
|
+
novelwriter/assets/icons/typicons_dark/typ_unfold-hidden.svg,sha256=V_yKCUxFOmm7LpadefaSgmi1MTKIzD5GgIS8inPtUJo,516
|
135
|
+
novelwriter/assets/icons/typicons_dark/typ_unfold-visible.svg,sha256=IvVXmxlkrTyNwl0NG_HCpaqv29_9EopjQvpH56ZInZk,517
|
130
136
|
novelwriter/assets/icons/typicons_dark/typ_user.svg,sha256=00gZEDr59B1A7A4o0w5VjCJOHnQHANsgXBhnB_VTMU4,733
|
131
137
|
novelwriter/assets/icons/typicons_dark/typ_warning-full.svg,sha256=zqqV82C37dWH_yHoSuPo-BLsErg0sl8_VlB6fzXL4VE,970
|
132
138
|
novelwriter/assets/icons/typicons_light/README.md,sha256=nyGvWLJ8cusLYP8YsjX_l213NkDE_GHrwctZ-I_JQUg,1066
|
133
|
-
novelwriter/assets/icons/typicons_light/icons.conf,sha256=
|
139
|
+
novelwriter/assets/icons/typicons_light/icons.conf,sha256=rG7V9Vc0Jx0T7YUD2PpGA_Dg-i6zPPBK-mH-PmUnFCA,4434
|
134
140
|
novelwriter/assets/icons/typicons_light/mixed_document-chapter.svg,sha256=kXNwPbeKR3eupIrqtDQrNGq5sL8vdExLfPMrMX2sEsw,1650
|
135
141
|
novelwriter/assets/icons/typicons_light/mixed_document-new.svg,sha256=u0YYfp6hTUEYLsrPleUqYocaG2hl62w-B85INvkm6S4,1825
|
136
142
|
novelwriter/assets/icons/typicons_light/mixed_document-note.svg,sha256=XpKQ2Fj7J3I3BT9mAQkjk_A4eP7uy94vPeDBA62fOYI,1650
|
@@ -162,6 +168,7 @@ novelwriter/assets/icons/typicons_light/nw_tb-bold-md.svg,sha256=1x1uoFq06iKVXNt
|
|
162
168
|
novelwriter/assets/icons/typicons_light/nw_tb-bold.svg,sha256=CW-Q8HLg989PhdwRq_YQ7x_FcE64yk_4wDxqhNA9b2Y,1272
|
163
169
|
novelwriter/assets/icons/typicons_light/nw_tb-italic-md.svg,sha256=TlfmG-iapQo2Z75-83T_aSqmlzaZPxB13HQjeiXhhWY,284
|
164
170
|
novelwriter/assets/icons/typicons_light/nw_tb-italic.svg,sha256=HMeA9SYJ6g7p53kr0Bv9Kqm75I_7zUxDCvdSKmZd_KE,528
|
171
|
+
novelwriter/assets/icons/typicons_light/nw_tb-mark.svg,sha256=3tCiUGD6AEoeZHYch5WhbkpnJYocyo3CRItAeSYoQS4,1205
|
165
172
|
novelwriter/assets/icons/typicons_light/nw_tb-strike-md.svg,sha256=wzHCVcfMvjrL5W3Jfl8UsQiAfjHwXEFSpmmR5F69QQg,1402
|
166
173
|
novelwriter/assets/icons/typicons_light/nw_tb-strike.svg,sha256=HtAYlTga42JVpoUJGyuHX6v4he8__9YiN0tzvOrtqiw,1711
|
167
174
|
novelwriter/assets/icons/typicons_light/nw_tb-subscript.svg,sha256=j8qncFQqiC5vZfFELENtX9COMcrI7NnyED17ki7tC08,1551
|
@@ -210,8 +217,9 @@ novelwriter/assets/icons/typicons_light/typ_pin.svg,sha256=L0hM3KnHX-c3hu1FB72sU
|
|
210
217
|
novelwriter/assets/icons/typicons_light/typ_plus.svg,sha256=XVCi0SmbKcmQSL_3UqjrjFbxWHMUPLXxUWogxaETiPc,442
|
211
218
|
novelwriter/assets/icons/typicons_light/typ_puzzle-outline.svg,sha256=9igpTHOlyjjyew7pb_4OVqDaUzXua6lf6p4E6Iim7H4,3278
|
212
219
|
novelwriter/assets/icons/typicons_light/typ_puzzle.svg,sha256=rQViTB3CygHvrIzpFwJehjnnJBv1Jg0bH1HgS-3KFEE,1407
|
213
|
-
novelwriter/assets/icons/typicons_light/typ_refresh-flipped.svg,sha256=
|
214
|
-
novelwriter/assets/icons/typicons_light/typ_refresh.svg,sha256=
|
220
|
+
novelwriter/assets/icons/typicons_light/typ_refresh-flipped.svg,sha256=cKwmkmCXtGbszc_tPqKpSzMLVb5V7J7WGga8AcZsRFU,955
|
221
|
+
novelwriter/assets/icons/typicons_light/typ_refresh.svg,sha256=ziRJfelZIsDG_oVsIz9xthwBcmmixm19DYwykgIX5Ls,962
|
222
|
+
novelwriter/assets/icons/typicons_light/typ_search-grey.svg,sha256=5rdJc3aRO60YZLqCYpgic3tD2cqOLo2RCu2OxI9DmLs,744
|
215
223
|
novelwriter/assets/icons/typicons_light/typ_search.svg,sha256=jshV8Oy3vSOSlAew22JGN8Jszx8-lFKii_QFpQTsg0U,773
|
216
224
|
novelwriter/assets/icons/typicons_light/typ_star.svg,sha256=CCLyse0_0JhxOl_xDnpsQWtgp_bD49oW8VO9YjJF8ko,901
|
217
225
|
novelwriter/assets/icons/typicons_light/typ_stopwatch-grey.svg,sha256=LMhGCltTFOSiFlsJ4K1aci4nXmxGupBKufqe117NnO0,1438
|
@@ -219,8 +227,10 @@ novelwriter/assets/icons/typicons_light/typ_th-dot-menu.svg,sha256=AZz7XH3VNRC1J
|
|
219
227
|
novelwriter/assets/icons/typicons_light/typ_th-dot-more.svg,sha256=_bYxpdn_ms8zxjD1tG0ZMUqaj4ABELKJ3-sdOPUVoYY,619
|
220
228
|
novelwriter/assets/icons/typicons_light/typ_th-list-grey.svg,sha256=XKAdaWypd1hggZ_HP0ZWqy4S8zvhNB92PjWA5AUkRaI,746
|
221
229
|
novelwriter/assets/icons/typicons_light/typ_th-list.svg,sha256=fq8gazMyrkUC8qzpmSFz8QufTEDd5X6qNBb09to-j5g,849
|
222
|
-
novelwriter/assets/icons/typicons_light/typ_times.svg,sha256=
|
230
|
+
novelwriter/assets/icons/typicons_light/typ_times.svg,sha256=Z48b7czxZUTrmDZxX2NWMGIFyvqsYe7GTvSPV4T4oPs,703
|
223
231
|
novelwriter/assets/icons/typicons_light/typ_trash.svg,sha256=THerHUXB4l6qjcnIdFCzA7eZxOVhcODDQMtYeDj-z5s,2453
|
232
|
+
novelwriter/assets/icons/typicons_light/typ_unfold-hidden.svg,sha256=hPxAI0WjRnalqYlHn1NNKpA9JbE5t7sR1DbIOj6MnkM,523
|
233
|
+
novelwriter/assets/icons/typicons_light/typ_unfold-visible.svg,sha256=eD-_42AnjRRhQ1EIRAFEkJKguVVzDBltbJQR4Wnq8Zk,523
|
224
234
|
novelwriter/assets/icons/typicons_light/typ_user.svg,sha256=q4a-kdXIABSyYlk2BEGPuxnyaM4vTpvLwQNv5-rQ6mQ,736
|
225
235
|
novelwriter/assets/icons/typicons_light/typ_warning-full.svg,sha256=5pCnfBPckrRDznMAOGj2-zmMxUSQi4nK4i07jAVkc_c,970
|
226
236
|
novelwriter/assets/images/novelwriter-text-dark.svg,sha256=gbbDiXd92OV5c6qGREDkAnTnEApxYPbqyrbUHB8mtiM,5976
|
@@ -228,21 +238,21 @@ novelwriter/assets/images/novelwriter-text-light.svg,sha256=ziTrfrr0WO9JWBzSfuuK
|
|
228
238
|
novelwriter/assets/images/welcome-dark.jpg,sha256=MPRYUI1yEjzee1uHGWlrR352U1LFSSV92awDheFtmZo,299007
|
229
239
|
novelwriter/assets/images/welcome-light.jpg,sha256=FcS5GA5G6o9KgmADYHktyR3GHquNlPNIUQeQQiscQzA,279989
|
230
240
|
novelwriter/assets/syntax/cyberpunk_night.conf,sha256=w_22pAqGYDsGMrvzwx7QrOnweFW-mkZZjZ-cRB81yaI,760
|
231
|
-
novelwriter/assets/syntax/default_dark.conf,sha256=
|
232
|
-
novelwriter/assets/syntax/default_light.conf,sha256=
|
233
|
-
novelwriter/assets/syntax/grey_dark.conf,sha256=
|
234
|
-
novelwriter/assets/syntax/grey_light.conf,sha256
|
235
|
-
novelwriter/assets/syntax/light_owl.conf,sha256=
|
236
|
-
novelwriter/assets/syntax/night_owl.conf,sha256=
|
237
|
-
novelwriter/assets/syntax/solarized_dark.conf,sha256=
|
238
|
-
novelwriter/assets/syntax/solarized_light.conf,sha256=
|
241
|
+
novelwriter/assets/syntax/default_dark.conf,sha256=EURI_CPep0nOahQ7Nrx1a4F6yXn0jlnnLI3kQSGPP4Q,844
|
242
|
+
novelwriter/assets/syntax/default_light.conf,sha256=dJR58BVrHqw19zaX-2R1WihLrEPaHxZ9fwZB4v-9eZA,845
|
243
|
+
novelwriter/assets/syntax/grey_dark.conf,sha256=umxXOfkt8UBypfb-ELT8YWnLNwg51umEyTAhGGL9YoA,841
|
244
|
+
novelwriter/assets/syntax/grey_light.conf,sha256=4gveHH8vGuh0t0cjjR4KxumVpLConw1Fvggl7R0qfIM,842
|
245
|
+
novelwriter/assets/syntax/light_owl.conf,sha256=Sh_dpqjvbYNC42uvrCL8CnOnSIU8CEKFAUmSOcqdwwk,1493
|
246
|
+
novelwriter/assets/syntax/night_owl.conf,sha256=33KGoEWi3jD8QQZGZKlw1k5JnAjP2a-zhGsas7kLKYk,1493
|
247
|
+
novelwriter/assets/syntax/solarized_dark.conf,sha256=XJkEeJ-Cg-cOQtRWm6Q-3i-HhuqEg87KTpI6iJ1ciOE,834
|
248
|
+
novelwriter/assets/syntax/solarized_light.conf,sha256=IrL0_2BgNgURda1QrnDFl8HmZ1tILDad4SGSF9x0qMU,835
|
239
249
|
novelwriter/assets/syntax/tango.conf,sha256=g_nLKaMW71p3NQ8JywpAnkDBXwIy5gvDfNYJFBmYcFw,635
|
240
|
-
novelwriter/assets/syntax/tomorrow.conf,sha256=
|
241
|
-
novelwriter/assets/syntax/tomorrow_night.conf,sha256=
|
242
|
-
novelwriter/assets/syntax/tomorrow_night_blue.conf,sha256=
|
243
|
-
novelwriter/assets/syntax/tomorrow_night_bright.conf,sha256=
|
244
|
-
novelwriter/assets/syntax/tomorrow_night_eighties.conf,sha256=
|
245
|
-
novelwriter/assets/text/credits_en.htm,sha256=
|
250
|
+
novelwriter/assets/syntax/tomorrow.conf,sha256=qAJUQyPk3LTo7S9s_GtqakKV1PFYBVmLyv8HTsWqu0g,1491
|
251
|
+
novelwriter/assets/syntax/tomorrow_night.conf,sha256=2urAH-LHOrJHcKwPy2IqrVc_xhQrsrYpEITImk2W9FE,1503
|
252
|
+
novelwriter/assets/syntax/tomorrow_night_blue.conf,sha256=UcPosIQ2S8M2E2mT7dzEqebmxxgIBAPlSu_o1xEQKiM,1513
|
253
|
+
novelwriter/assets/syntax/tomorrow_night_bright.conf,sha256=T7Jzqfo3W_iTG3bR0PZ3ZG5Qgjn5QNU8a3tch4Rq88c,1518
|
254
|
+
novelwriter/assets/syntax/tomorrow_night_eighties.conf,sha256=VW_ibz0cO828WgmaE62KEY7HMLVcIuFN4IJh-dVz6_0,1521
|
255
|
+
novelwriter/assets/text/credits_en.htm,sha256=vB9WS-0rrtFRFCa2GnYyhZPbz6Fema0S4qRd07YhMGQ,4005
|
246
256
|
novelwriter/assets/text/lipsum.txt,sha256=sGA6AC_p4jrUifxLxy3cSODeRwkpBNXDPGgX6YRTm2s,62937
|
247
257
|
novelwriter/assets/themes/cyberpunk_night.conf,sha256=cwNVyZ1ElGWm-r6Qpzj1Pl2vIhC_ePVsgmtriwMcAms,827
|
248
258
|
novelwriter/assets/themes/default.conf,sha256=K0LZ64lODpCtUg3pISTAP4UKvEYMvPkmIYN9RDEaWwk,72
|
@@ -250,73 +260,70 @@ novelwriter/assets/themes/default_dark.conf,sha256=L6xHLbgVb4E4SkQRSgCV7yEoxH9Rx
|
|
250
260
|
novelwriter/assets/themes/default_light.conf,sha256=o_FJRMidFo-DJYK8bB-jdelcD5qg7MwW4J8lL9nlZUY,928
|
251
261
|
novelwriter/assets/themes/solarized_dark.conf,sha256=HIP9icMtRljUmMH7PmU0IrcLGUSXVDaG97070Hc0UVM,852
|
252
262
|
novelwriter/assets/themes/solarized_light.conf,sha256=jUfaCnWXM4GAOI1eUioj_nP0RiMrnr8MEOprSg7qUU4,854
|
253
|
-
novelwriter/core/
|
254
|
-
novelwriter/core/
|
255
|
-
novelwriter/core/
|
256
|
-
novelwriter/core/
|
257
|
-
novelwriter/core/
|
258
|
-
novelwriter/core/index.py,sha256=1hzA0HiL-14HFQRapziHObXZonjhEev3sEe6Gvx_2ZU,48319
|
263
|
+
novelwriter/core/buildsettings.py,sha256=mNJ8v5Rn-lXiqtlFYQ8bzAtQ7JsibktPFiiiTXidHpQ,22385
|
264
|
+
novelwriter/core/coretools.py,sha256=mNrFL7R3dAAQhe3aGT9QTha4rX4XXF5JOlmXykNCJh0,21467
|
265
|
+
novelwriter/core/docbuild.py,sha256=vn47y9aYf7lsu-A5vmlmSjlWxI82X6at5rB-fEH0pl0,13844
|
266
|
+
novelwriter/core/document.py,sha256=ERU3GCZ1CHkIE3bV-NQ5G8HZlH5C4bWqa-OxyPgFu4w,12154
|
267
|
+
novelwriter/core/index.py,sha256=e-Iov2NyeeLWiWsx_UCD758UIw_6KGe1FZ-jegkRgmU,45951
|
259
268
|
novelwriter/core/item.py,sha256=6a-9Aty4_RIFE-90IxR8t19Fjyl_uHJAwz_TzUn8oRI,18104
|
260
269
|
novelwriter/core/options.py,sha256=6gMe3cXq4U-oSN3zSoGtfiCOW6hX9xtjDssrbZYrtGY,7397
|
261
|
-
novelwriter/core/project.py,sha256=
|
270
|
+
novelwriter/core/project.py,sha256=dl8mx6uCjPUzb9H-pOcwYbDahQ6rxB5D-rkeb8CX-Kk,22718
|
262
271
|
novelwriter/core/projectdata.py,sha256=NYhTL6qIbJxJX98-_zZdV4LzI2-tqdWaMvGYi0Xi4WU,9826
|
263
272
|
novelwriter/core/projectxml.py,sha256=o4sn_Hzn3A-DMlHevjieWoTMaJKJW60HYOWbVfaambs,21936
|
264
|
-
novelwriter/core/sessions.py,sha256=
|
273
|
+
novelwriter/core/sessions.py,sha256=k13qaHO0oAyKBlMrhDogO0dFoAROBA8WNgUULGtIhIA,4431
|
265
274
|
novelwriter/core/spellcheck.py,sha256=AfNOymVlJULF6tSz9ldAj5gyY_k1fHyKzsTivXxQJXg,7235
|
266
|
-
novelwriter/core/status.py,sha256=
|
267
|
-
novelwriter/core/storage.py,sha256=
|
268
|
-
novelwriter/core/tohtml.py,sha256=
|
269
|
-
novelwriter/core/tokenizer.py,sha256=
|
270
|
-
novelwriter/core/tomd.py,sha256=
|
271
|
-
novelwriter/core/toodt.py,sha256=
|
272
|
-
novelwriter/core/tree.py,sha256=
|
273
|
-
novelwriter/dialogs/
|
274
|
-
novelwriter/dialogs/
|
275
|
-
novelwriter/dialogs/
|
276
|
-
novelwriter/dialogs/
|
277
|
-
novelwriter/dialogs/
|
278
|
-
novelwriter/dialogs/
|
279
|
-
novelwriter/dialogs/
|
280
|
-
novelwriter/dialogs/
|
281
|
-
novelwriter/
|
282
|
-
novelwriter/extensions/
|
283
|
-
novelwriter/extensions/circularprogress.py,sha256=UrqZCgnJgFVuUvUV0V-9noWKCROJWkDtaC44ijvuJPA,3747
|
284
|
-
novelwriter/extensions/configlayout.py,sha256=z-Z-RGLB9NtTJGJF6WwTH4IAHbkH-0LnanmeixL0LK0,9377
|
275
|
+
novelwriter/core/status.py,sha256=TNeEapa-MLJexXPosoHs0UmHgZrK63vQEOegYOD8uuE,8769
|
276
|
+
novelwriter/core/storage.py,sha256=eJgGL0cvfeQHhGYjc6FiojJ-dnGU-IQJ6FOWa8hFzJQ,20880
|
277
|
+
novelwriter/core/tohtml.py,sha256=zybIc2qMAQhmWBNVVtcHRijmvqDK_DHidgAYwKUGQP0,17236
|
278
|
+
novelwriter/core/tokenizer.py,sha256=XHjsZVlBt-S5jNyN-i7FrkYenwxFT3-NBNjB-qmazIA,40974
|
279
|
+
novelwriter/core/tomd.py,sha256=xk5r3oyHkz6LOouiPaQLGVJWp6bT0HLe3upr4JmWjG4,7386
|
280
|
+
novelwriter/core/toodt.py,sha256=_kTNpeLVIeJYpIwH6ludMF1cNlIGv8fZN0sLAAJP_DM,58628
|
281
|
+
novelwriter/core/tree.py,sha256=bwLJHhNkd2DOKoE-rIwfWwWgaYBlw9xZ8BaQeC0LUJw,18701
|
282
|
+
novelwriter/dialogs/about.py,sha256=6FF9ssrP8G9TNWYAoZ1Z-Bd0gBrJsc8uPBVAulyDd_U,4888
|
283
|
+
novelwriter/dialogs/docmerge.py,sha256=FzOmKQnKW8p1fc_z6pvDlP2LlJQgDG_BV355oB1MKzc,6148
|
284
|
+
novelwriter/dialogs/docsplit.py,sha256=q4kt_lIqrz6-5VpBnCZOeTfvwcZMORZtjO3qrGEynPg,9140
|
285
|
+
novelwriter/dialogs/editlabel.py,sha256=715nMbwexvqaxPRp2rJThyC3Sokp70zztpCg2ZxGKPw,2964
|
286
|
+
novelwriter/dialogs/preferences.py,sha256=oKFjox-ku4uJdQ8Bm3eDlTuXUZ02Cv7Fky8DR-5CqSQ,36432
|
287
|
+
novelwriter/dialogs/projectsettings.py,sha256=-uJl9nEPJgr17IjifzxOp5IW3fdg5ZKytym3dOc-yDo,25752
|
288
|
+
novelwriter/dialogs/quotes.py,sha256=iDtkACeCnaCQOTXQtW1H75BjeOJIm0SsrP4EzLsFq0E,4647
|
289
|
+
novelwriter/dialogs/wordlist.py,sha256=LcqqIeU5-y_u1Le_FYcUKfNNABFweu9QiejnpphqgNs,8634
|
290
|
+
novelwriter/extensions/circularprogress.py,sha256=H0btKccdnvVfijU8ZudYvv4AgrvPYvx7IgznIxASBY0,3856
|
291
|
+
novelwriter/extensions/configlayout.py,sha256=xHUE_HckNwJsfPKZ3hJjAKAYhxzQFRmNCmBrIh6QtTs,9253
|
285
292
|
novelwriter/extensions/eventfilters.py,sha256=XehDoXwsnCvI1D3uieuYu5J3kxZggdV6Teo7Z0xZw7E,2581
|
286
|
-
novelwriter/extensions/modified.py,sha256=
|
293
|
+
novelwriter/extensions/modified.py,sha256=s8HbGumHA0mAspnYo-ADIiwOXkccL-w1ThimxywdlNc,4038
|
287
294
|
novelwriter/extensions/novelselector.py,sha256=5ccEDvqrbvrG7khZBrOiJwxsjjRnkFX-A4ZT-lj_z_g,3821
|
288
|
-
novelwriter/extensions/pagedsidebar.py,sha256
|
289
|
-
novelwriter/extensions/simpleprogress.py,sha256=
|
290
|
-
novelwriter/extensions/statusled.py,sha256=
|
291
|
-
novelwriter/extensions/switch.py,sha256=
|
292
|
-
novelwriter/extensions/switchbox.py,sha256=
|
293
|
-
novelwriter/extensions/versioninfo.py,sha256=
|
294
|
-
novelwriter/gui/
|
295
|
-
novelwriter/gui/
|
296
|
-
novelwriter/gui/
|
297
|
-
novelwriter/gui/
|
298
|
-
novelwriter/gui/
|
299
|
-
novelwriter/gui/
|
300
|
-
novelwriter/gui/
|
301
|
-
novelwriter/gui/
|
302
|
-
novelwriter/gui/
|
303
|
-
novelwriter/gui/
|
304
|
-
novelwriter/gui/
|
305
|
-
novelwriter/gui/sidebar.py,sha256=
|
306
|
-
novelwriter/gui/statusbar.py,sha256=
|
307
|
-
novelwriter/gui/theme.py,sha256=
|
308
|
-
novelwriter/
|
309
|
-
novelwriter/tools/dictionaries.py,sha256=
|
310
|
-
novelwriter/tools/lipsum.py,sha256=
|
311
|
-
novelwriter/tools/manusbuild.py,sha256=
|
312
|
-
novelwriter/tools/manuscript.py,sha256=
|
313
|
-
novelwriter/tools/manussettings.py,sha256=
|
314
|
-
novelwriter/tools/noveldetails.py,sha256=
|
315
|
-
novelwriter/tools/welcome.py,sha256
|
316
|
-
novelwriter/tools/writingstats.py,sha256=
|
317
|
-
novelWriter-2.
|
318
|
-
novelWriter-2.
|
319
|
-
novelWriter-2.
|
320
|
-
novelWriter-2.
|
321
|
-
novelWriter-2.
|
322
|
-
novelWriter-2.
|
295
|
+
novelwriter/extensions/pagedsidebar.py,sha256=X0AYo6oKM7gKr57662v-ZZWUTCVf5AbvIUCoLQai8fk,7369
|
296
|
+
novelwriter/extensions/simpleprogress.py,sha256=13SrFQ9TZTDICyXCdTHeCX0MOtpw4UbBEgxiAmSOjyQ,1836
|
297
|
+
novelwriter/extensions/statusled.py,sha256=640phDm3ZcLvM9EC_uwVPjG9LD5W3pAjtoqU4QbsZUU,2315
|
298
|
+
novelwriter/extensions/switch.py,sha256=sZBNX5Wj1qkVA6cHh04GjuWOTbejaatHgLZ5yGzXGv4,4346
|
299
|
+
novelwriter/extensions/switchbox.py,sha256=y6yuoCAZYYL7miaFlC8h5ymtuB0Xyk2AMmxAFYOYPDA,4210
|
300
|
+
novelwriter/extensions/versioninfo.py,sha256=eUJzO6eV6SFXgp71uxr9696rjUQctGm84CA7XqxFhGc,5120
|
301
|
+
novelwriter/gui/doceditor.py,sha256=255ABHnUOL8SSMbwFxlGwEDYPolhiZaVWni7tYNA5OQ,113649
|
302
|
+
novelwriter/gui/dochighlight.py,sha256=eWBxFm-jU8I3hu8jZg_v0r5tZf3Nsz4PxNOkbQO3r08,16579
|
303
|
+
novelwriter/gui/docviewer.py,sha256=8p_T7e_NbZ7fLrBiE1_XWeW-iHLzJ5an2hPldn4trUw,33089
|
304
|
+
novelwriter/gui/docviewerpanel.py,sha256=IcQGLN49MmVGfIPg-8IzLGKYn9DbJqfdXWG6jd_JaAI,20009
|
305
|
+
novelwriter/gui/editordocument.py,sha256=jxODONgq80Kf63lRezzbYtyEelaC-GpvgPEMKQ3m_sg,4116
|
306
|
+
novelwriter/gui/itemdetails.py,sha256=VIfWDtn9g0IRBYSDFT_AhZgluQ0d7sK5C14lENyvzHg,9774
|
307
|
+
novelwriter/gui/mainmenu.py,sha256=63rvJgvqFtMQGDR0d_p-Z7zSTHyW6ioATlO6U_61MTg,38693
|
308
|
+
novelwriter/gui/noveltree.py,sha256=-XlISrM8y69_HgKHSWsXRSlLTyjQE9x1XG22A4D_5tg,27966
|
309
|
+
novelwriter/gui/outline.py,sha256=XuM-zG74iwPgshqXUQ4ACsPIw_Z-3KNae5iMRX4VCdU,42265
|
310
|
+
novelwriter/gui/projtree.py,sha256=euhQoitT5g49za8elmb_w5kpGqWCIZVZndiToC3qs54,77867
|
311
|
+
novelwriter/gui/search.py,sha256=KJuGMh-V3o8t4bqLvaw2wkDrZyoz0hOALQtYgjSyZAg,12980
|
312
|
+
novelwriter/gui/sidebar.py,sha256=kidGGzXQ5RNQvKuH0kFh-lwoUSlkXffBucEoL15RMd4,6258
|
313
|
+
novelwriter/gui/statusbar.py,sha256=ru-4pyg8owWkwkXGgj5GEupfq9fbIykYwGpomwzaINk,9353
|
314
|
+
novelwriter/gui/theme.py,sha256=B8HzV7yP1jyRKwYlvPj3fU-JHeZrUsrpUFZuqmtmYnk,32354
|
315
|
+
novelwriter/text/counting.py,sha256=TTQoXgK_RThdOkDcM1B3u0X80HxFgKLgvhBgZkNLefM,4236
|
316
|
+
novelwriter/tools/dictionaries.py,sha256=wnlVjRVBAghRXZhN1pBgoXN5qC7Qp7inQ8EG2uyOHMk,9215
|
317
|
+
novelwriter/tools/lipsum.py,sha256=d-qdRSrXLfTkTdzi7vhjeBlWawwGwWQ9Qd_zRSwzgpQ,4901
|
318
|
+
novelwriter/tools/manusbuild.py,sha256=wo7Th5nYWmg4h7Wfg7WYrXg_qGgoN-uX41nOue1lXSU,13946
|
319
|
+
novelwriter/tools/manuscript.py,sha256=Ql4KtzefNr-2LXyNT3vVOnEneOZbXkrkjTA3NXZ08Sc,40043
|
320
|
+
novelwriter/tools/manussettings.py,sha256=4V9M2SaDuvjszYx6oXQVEHW5FmNtYAnNAo5gdSDKX3Q,55781
|
321
|
+
novelwriter/tools/noveldetails.py,sha256=KoENyz0hH3TlXfRCEJvRTZ0h7ruOgTIv85AgCl1Ur5o,18503
|
322
|
+
novelwriter/tools/welcome.py,sha256=3lysgIhIu8DCux3XhTqT2Boc4s5qx9spVvmI48lS2d8,27993
|
323
|
+
novelwriter/tools/writingstats.py,sha256=IubrbbLB_Qlnwp9B3muKkeD84xtckPvmTax7E4LnI5g,22797
|
324
|
+
novelWriter-2.4rc1.dist-info/LICENSE.md,sha256=2GirkkLrPfQqx7fACKRJjtKJUegKc8067erGvcDVQHM,32197
|
325
|
+
novelWriter-2.4rc1.dist-info/METADATA,sha256=aPPGvSD_mgrSCGxhnQ_psHjEbc6a3A5ROIlpdIhH_Ec,2583
|
326
|
+
novelWriter-2.4rc1.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
327
|
+
novelWriter-2.4rc1.dist-info/entry_points.txt,sha256=YDUG1w361LtLsjD3YhxoTDTwM17JA5-nigjC6j5C74A,45
|
328
|
+
novelWriter-2.4rc1.dist-info/top_level.txt,sha256=wFFEucjEeNC_Ap5ULBuEutg5a1Uc0-YO9uFT5L2naNI,12
|
329
|
+
novelWriter-2.4rc1.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.4rc1"
|
46
|
+
__hexversion__ = "0x020400c1"
|
47
|
+
__date__ = "2024-04-06"
|
48
48
|
__status__ = "Stable"
|
49
49
|
__domain__ = "novelwriter.io"
|
50
50
|
|
@@ -187,7 +187,7 @@ def main(sysArgs: list | None = None):
|
|
187
187
|
))
|
188
188
|
for errLine in errorData:
|
189
189
|
logger.critical(errLine)
|
190
|
-
errApp.
|
190
|
+
errApp.exec()
|
191
191
|
sys.exit(errorCode)
|
192
192
|
|
193
193
|
# Finish initialising config
|
@@ -195,7 +195,7 @@ def main(sysArgs: list | None = None):
|
|
195
195
|
|
196
196
|
if CONFIG.osDarwin:
|
197
197
|
try:
|
198
|
-
from Foundation import NSBundle
|
198
|
+
from Foundation import NSBundle # type: ignore
|
199
199
|
bundle = NSBundle.mainBundle()
|
200
200
|
info = bundle.localizedInfoDictionary() or bundle.infoDictionary()
|
201
201
|
info["CFBundleName"] = "novelWriter"
|
@@ -207,7 +207,7 @@ def main(sysArgs: list | None = None):
|
|
207
207
|
try:
|
208
208
|
import ctypes
|
209
209
|
appID = f"io.novelwriter.{__version__}"
|
210
|
-
ctypes.windll.shell32.SetCurrentProcessExplicitAppUserModelID(appID)
|
210
|
+
ctypes.windll.shell32.SetCurrentProcessExplicitAppUserModelID(appID) # type: ignore
|
211
211
|
except Exception:
|
212
212
|
logger.error("Failed to set application name")
|
213
213
|
logException()
|
@@ -237,6 +237,6 @@ def main(sysArgs: list | None = None):
|
|
237
237
|
nwGUI = GuiMain()
|
238
238
|
nwGUI.postLaunchTasks(cmdOpen)
|
239
239
|
|
240
|
-
sys.exit(nwApp.
|
240
|
+
sys.exit(nwApp.exec())
|
241
241
|
|
242
242
|
# END Function main
|
@@ -53,6 +53,7 @@ fmt_bold = nw_tb-bold.svg
|
|
53
53
|
fmt_bold-md = nw_tb-bold-md.svg
|
54
54
|
fmt_italic = nw_tb-italic.svg
|
55
55
|
fmt_italic-md = nw_tb-italic-md.svg
|
56
|
+
fmt_mark = nw_tb-mark.svg
|
56
57
|
fmt_strike = nw_tb-strike.svg
|
57
58
|
fmt_strike-md = nw_tb-strike-md.svg
|
58
59
|
fmt_subscript = nw_tb-subscript.svg
|
@@ -99,12 +100,15 @@ status_time = typ_stopwatch-grey.svg
|
|
99
100
|
sticky-off = typ_pin-outline.svg
|
100
101
|
sticky-on = typ_pin.svg
|
101
102
|
unchecked = mixed_input-unchecked.svg
|
103
|
+
unfold-hide = typ_unfold-hidden.svg
|
104
|
+
unfold-show = typ_unfold-visible.svg
|
102
105
|
up = typ_chevron-up.svg
|
103
106
|
view = typ_eye.svg
|
104
107
|
view_build = typ_export-grey.svg
|
105
108
|
view_editor = mixed_edit.svg
|
106
109
|
view_novel = typ_book-grey.svg
|
107
110
|
view_outline = typ_puzzle-outline.svg
|
111
|
+
view_search = typ_search-grey.svg
|
108
112
|
|
109
113
|
deco_doc_h0 = nw_deco-h0.svg
|
110
114
|
deco_doc_h0_n = nw_deco-h0.svg
|
@@ -0,0 +1,7 @@
|
|
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
|
+
<rect x=".26458" y=".79375" width="5.8208" height="4.7625" fill="#ffff84" fill-opacity=".8" stroke-linecap="round" stroke-width=".1354"/>
|
4
|
+
<path d="m1.3229 5.2917v-4.2333h0.98087l0.6397 1.8829q0.060924 0.18829 0.11576 0.38957 0.054831 0.19479 0.11576 0.38957h0.024369q0.060924-0.19479 0.10966-0.38957 0.054831-0.20128 0.11576-0.38957l0.62752-1.8829h0.97478v4.2333h-0.81638v-1.5518q0-0.15583 0.012185-0.34412 0.012185-0.18829 0.030462-0.37658 0.018277-0.19479 0.036554-0.37658 0.018277-0.18829 0.036554-0.34412h-0.02437l-0.3229 1.0064-0.56659 1.6167h-0.49348l-0.56659-1.6167-0.3168-1.0064h-0.024369q0.018277 0.15583 0.036554 0.34412 0.018277 0.1818 0.036554 0.37658 0.018277 0.18829 0.030462 0.37658 0.012185 0.18829 0.012185 0.34412v1.5518z" fill="#808080" stroke-linecap="round" stroke-width=".11793"/>
|
5
|
+
<path d="m4.9555 5.5562v-0.43195h0.54619v-3.8986h-0.54619v-0.43195h1.1299v4.7624z" fill="#69c" stroke-width="1.1186"/>
|
6
|
+
<path d="m0.26458 5.5562v-4.7624h1.1299v0.43195h-0.54083v3.8986h0.54083v0.43195z" fill="#69c" stroke-width="1.1186"/>
|
7
|
+
</svg>
|
@@ -1,4 +1,4 @@
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
2
2
|
<svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
3
|
-
<path d="m10.
|
3
|
+
<path d="m10.692 12.288h-7.692v-7.689c0.012-1.7022 1.0065-2.1116 2.2095-0.90734l1.731 1.7367c1.5225-1.1923 3.3855-1.8447 5.349-1.8447 2.325 0 4.5135 0.90583 6.156 2.5511 1.6485 1.6377 2.5545 3.8288 2.5545 6.1533 0 2.3291-0.906 4.5172-2.5515 6.1594-1.6455 1.6452-3.8325 2.5525-6.159 2.5525-2.325 0-4.5135-0.90734-6.159-2.554-0.444-0.44542-0.837-0.93132-1.17-1.4472-0.5205-0.81135-0.285-1.8897 0.525-2.4071 0.8085-0.51891 1.887-0.28344 2.406 0.5249 0.1995 0.31044 0.438 0.59988 0.702 0.86984 0.9885 0.98682 2.301 1.5297 3.696 1.5297 1.395 0 2.7075-0.5414 3.696-1.5297 0.9855-0.98682 1.53-2.2991 1.53-3.6969 0-1.3948-0.543-2.707-1.53-3.6908-0.9885-0.98682-2.301-1.5312-3.696-1.5312-1.032 0-2.019 0.30144-2.8635 0.85784l2.172 2.1761c1.2045 1.2027 0.795 2.1866-0.906 2.1866z" fill="#9c9" stroke-width="1.3332"/>
|
4
4
|
</svg>
|
@@ -1,4 +1,4 @@
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
2
2
|
<svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
3
|
-
<path d="m13.
|
3
|
+
<path d="m13.308 12.288h7.692v-7.689c-0.012-1.7022-1.0065-2.1116-2.2095-0.90734l-1.731 1.7367c-1.5225-1.1923-3.3855-1.8447-5.349-1.8447-2.325 0-4.5135 0.90583-6.156 2.5511-1.6485 1.6377-2.5545 3.8288-2.5545 6.1533 0 2.3291 0.906 4.5172 2.5515 6.1594 1.6455 1.6452 3.8325 2.5525 6.159 2.5525 2.325 0 4.5135-0.90734 6.159-2.554 0.444-0.44542 0.837-0.93132 1.17-1.4472 0.5205-0.81135 0.285-1.8897-0.525-2.4071-0.8085-0.51891-1.887-0.28344-2.406 0.5249-0.1995 0.31044-0.438 0.59988-0.702 0.86984-0.9885 0.98682-2.301 1.5297-3.696 1.5297-1.395 0-2.7075-0.5414-3.696-1.5297-0.9855-0.98682-1.53-2.2991-1.53-3.6969 0-1.3948 0.543-2.707 1.53-3.6908 0.9885-0.98682 2.301-1.5312 3.696-1.5312 1.032 0 2.019 0.30144 2.8635 0.85784l-2.172 2.1761c-1.2045 1.2027-0.795 2.1866 0.906 2.1866z" fill="#9c9" stroke-width="1.3332"/>
|
4
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="m20.547 14.707-0.7017-0.703-0.98054-0.98185c0.29717-0.90068 0.46343-1.859 0.46343-2.8578 0-5.0519-4.112-9.1639-9.1639-9.1639s-9.1639 4.112-9.1639 9.1639c0 5.0519 4.112 9.1639 9.1639 9.1639 0.99887 0 1.9585-0.16626 2.8591-0.46343l0.98185 0.98054 1.9794 1.9768 0.07986 0.07986 0.08378 0.072c0.78679 0.66242 1.7647 1.0264 2.7544 1.0264 2.2596 0 4.0976-1.838 4.0976-4.0989 0-1.0997-0.4294-2.1313-1.2096-2.9037zm-16.93-4.5427c0-3.6093 2.9364-6.5457 6.5457-6.5457s6.5457 2.9364 6.5457 6.5457-2.9364 6.5457-6.5457 6.5457-6.5457-2.9364-6.5457-6.5457z" fill="#aeaeae" stroke-width="1.3091"/>
|
4
|
+
</svg>
|
@@ -1,4 +1,4 @@
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
2
2
|
<svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
3
|
-
<path d="
|
3
|
+
<path d="m20.121 3.8786c-1.17-1.1715-3.072-1.1715-4.2421 0l-3.879 3.8791-3.879-3.8791c-1.17-1.1715-3.072-1.1715-4.2421 0-1.1715 1.1715-1.1715 3.0705 0 4.2421l3.8776 3.879-3.8776 3.879c-1.1715 1.1715-1.1715 3.0705 0 4.2421 0.58502 0.58652 1.353 0.87902 2.1211 0.87902 0.76801 0 1.5361-0.29251 2.1211-0.87902l3.879-3.879 3.879 3.879c0.58502 0.58652 1.353 0.87902 2.1211 0.87902 0.76801 0 1.5361-0.29251 2.1211-0.87902 1.1715-1.1715 1.1715-3.0705 0-4.2421l-3.8776-3.879 3.8776-3.879c1.1715-1.1715 1.1715-3.0705 0-4.2421z" fill="#d64848" stroke-width="1.5001"/>
|
4
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="m9.8767 17.723 5.8157-5.723-5.8157-5.723c-0.18462-0.18462-0.46155-0.27693-0.64616-0.27693-0.18462 0-0.46155 0.092309-0.64616 0.27693-0.18462 0.18462-0.27693 0.36924-0.27693 0.64616v10.154c0 0.27693 0.092309 0.46154 0.27693 0.64616 0.18462 0.18462 0.46155 0.27693 0.64616 0.27693 0.18462 0 0.46155-0.09231 0.64616-0.27693z" fill="#aeaeae" stroke-width=".92309"/>
|
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="m6.277 9.8767 5.723 5.8157 5.723-5.8157c0.18462-0.18462 0.27693-0.46155 0.27693-0.64616 0-0.18462-0.092309-0.46155-0.27693-0.64616-0.18462-0.18462-0.36924-0.27693-0.64616-0.27693h-10.154c-0.27693 0-0.46155 0.092309-0.64616 0.27693-0.18462 0.18462-0.27693 0.46155-0.27693 0.64616 0 0.18462 0.092309 0.46155 0.27693 0.64616z" fill="#aeaeae" stroke-width=".92309"/>
|
4
|
+
</svg>
|
@@ -53,6 +53,7 @@ fmt_bold = nw_tb-bold.svg
|
|
53
53
|
fmt_bold-md = nw_tb-bold-md.svg
|
54
54
|
fmt_italic = nw_tb-italic.svg
|
55
55
|
fmt_italic-md = nw_tb-italic-md.svg
|
56
|
+
fmt_mark = nw_tb-mark.svg
|
56
57
|
fmt_strike = nw_tb-strike.svg
|
57
58
|
fmt_strike-md = nw_tb-strike-md.svg
|
58
59
|
fmt_subscript = nw_tb-subscript.svg
|
@@ -99,12 +100,15 @@ status_time = typ_stopwatch-grey.svg
|
|
99
100
|
sticky-off = typ_pin-outline.svg
|
100
101
|
sticky-on = typ_pin.svg
|
101
102
|
unchecked = mixed_input-unchecked.svg
|
103
|
+
unfold-hide = typ_unfold-hidden.svg
|
104
|
+
unfold-show = typ_unfold-visible.svg
|
102
105
|
up = typ_chevron-up.svg
|
103
106
|
view = typ_eye.svg
|
104
107
|
view_build = typ_export-grey.svg
|
105
108
|
view_editor = mixed_edit.svg
|
106
109
|
view_novel = typ_book-grey.svg
|
107
110
|
view_outline = typ_puzzle-outline.svg
|
111
|
+
view_search = typ_search-grey.svg
|
108
112
|
|
109
113
|
deco_doc_h0 = nw_deco-h0.svg
|
110
114
|
deco_doc_h0_n = nw_deco-h0.svg
|
@@ -0,0 +1,7 @@
|
|
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
|
+
<rect x=".26458" y=".79375" width="5.8208" height="4.7625" fill="#ad8700" fill-opacity=".8" stroke-linecap="round" stroke-width=".1354"/>
|
4
|
+
<path d="m1.3229 5.2917v-4.2333h0.98087l0.6397 1.8829q0.060924 0.18829 0.11576 0.38957 0.054831 0.19479 0.11576 0.38957h0.024369q0.060924-0.19479 0.10966-0.38957 0.054831-0.20128 0.11576-0.38957l0.62752-1.8829h0.97478v4.2333h-0.81638v-1.5518q0-0.15583 0.012185-0.34412 0.012185-0.18829 0.030462-0.37658 0.018277-0.19479 0.036554-0.37658 0.018277-0.18829 0.036554-0.34412h-0.02437l-0.3229 1.0064-0.56659 1.6167h-0.49348l-0.56659-1.6167-0.3168-1.0064h-0.024369q0.018277 0.15583 0.036554 0.34412 0.018277 0.1818 0.036554 0.37658 0.018277 0.18829 0.030462 0.37658 0.012185 0.18829 0.012185 0.34412v1.5518z" fill-opacity=".78039" stroke-linecap="round" stroke-width=".11793"/>
|
5
|
+
<path d="m4.9555 5.5562v-0.43195h0.54619v-3.8986h-0.54619v-0.43195h1.1299v4.7624z" fill="#4271ae" stroke-width="1.1186"/>
|
6
|
+
<path d="m0.26458 5.5562v-4.7624h1.1299v0.43195h-0.54083v3.8986h0.54083v0.43195z" fill="#4271ae" stroke-width="1.1186"/>
|
7
|
+
</svg>
|
@@ -1,4 +1,4 @@
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
2
2
|
<svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
3
|
-
<path d="m10.
|
3
|
+
<path d="m10.692 12.288h-7.692v-7.689c0.012-1.7022 1.0065-2.1116 2.2095-0.90734l1.731 1.7367c1.5225-1.1923 3.3855-1.8447 5.349-1.8447 2.325 0 4.5135 0.90583 6.156 2.5511 1.6485 1.6377 2.5545 3.8288 2.5545 6.1533 0 2.3291-0.906 4.5172-2.5515 6.1594-1.6455 1.6452-3.8325 2.5525-6.159 2.5525-2.325 0-4.5135-0.90734-6.159-2.554-0.444-0.44542-0.837-0.93132-1.17-1.4472-0.5205-0.81135-0.285-1.8897 0.525-2.4071 0.8085-0.51891 1.887-0.28344 2.406 0.5249 0.1995 0.31044 0.438 0.59988 0.702 0.86984 0.9885 0.98682 2.301 1.5297 3.696 1.5297 1.395 0 2.7075-0.5414 3.696-1.5297 0.9855-0.98682 1.53-2.2991 1.53-3.6969 0-1.3948-0.543-2.707-1.53-3.6908-0.9885-0.98682-2.301-1.5312-3.696-1.5312-1.032 0-2.019 0.30144-2.8635 0.85784l2.172 2.1761c1.2045 1.2027 0.795 2.1866-0.906 2.1866z" fill="#718c00" stroke-width="1.4998"/>
|
4
4
|
</svg>
|
@@ -1,4 +1,4 @@
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
2
2
|
<svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
3
|
-
<path d="m13.
|
3
|
+
<path d="m13.308 12.288h7.692v-7.689c-0.012001-1.7022-1.0065-2.1116-2.2095-0.90734l-1.731 1.7367c-1.5225-1.1923-3.3855-1.8447-5.349-1.8447-2.325 0-4.5135 0.90583-6.156 2.5511-1.6485 1.6377-2.5545 3.8288-2.5545 6.1533 0 2.3291 0.906 4.5172 2.5515 6.1594 1.6455 1.6452 3.8325 2.5525 6.159 2.5525 2.325 0 4.5135-0.90734 6.159-2.554 0.444-0.44542 0.837-0.93132 1.17-1.4472 0.5205-0.81135 0.285-1.8897-0.525-2.4071-0.8085-0.51891-1.887-0.28344-2.406 0.5249-0.1995 0.31044-0.438 0.59988-0.702 0.86984-0.9885 0.98682-2.301 1.5297-3.696 1.5297-1.395 0-2.7075-0.5414-3.696-1.5297-0.9855-0.98682-1.53-2.2991-1.53-3.6969 0-1.3948 0.543-2.707 1.53-3.6908 0.9885-0.98682 2.301-1.5312 3.696-1.5312 1.032 0 2.019 0.30144 2.8635 0.85784l-2.172 2.1761c-1.2045 1.2027-0.795 2.1866 0.906 2.1866z" fill="#718c00" stroke-width="1.4998"/>
|
4
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="m20.547 14.707-0.7017-0.703-0.98054-0.98185c0.29717-0.90068 0.46343-1.859 0.46343-2.8578 0-5.0519-4.112-9.1639-9.1639-9.1639s-9.1639 4.112-9.1639 9.1639c0 5.0519 4.112 9.1639 9.1639 9.1639 0.99887 0 1.9585-0.16626 2.8591-0.46343l0.98185 0.98054 1.9794 1.9768 0.07986 0.07986 0.08378 0.072c0.78679 0.66242 1.7647 1.0264 2.7544 1.0264 2.2596 0 4.0976-1.838 4.0976-4.0989 0-1.0997-0.4294-2.1313-1.2096-2.9037zm-16.93-4.5427c0-3.6093 2.9364-6.5457 6.5457-6.5457s6.5457 2.9364 6.5457 6.5457-2.9364 6.5457-6.5457 6.5457-6.5457-2.9364-6.5457-6.5457z" fill-opacity=".78039" stroke-width="1.3091"/>
|
4
|
+
</svg>
|
@@ -1,4 +1,4 @@
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
2
2
|
<svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
3
|
-
<path d="
|
3
|
+
<path d="m20.121 3.8786c-1.17-1.1715-3.072-1.1715-4.2421 0l-3.879 3.8791-3.879-3.8791c-1.17-1.1715-3.072-1.1715-4.2421 0-1.1715 1.1715-1.1715 3.0705 0 4.2421l3.8776 3.879-3.8776 3.879c-1.1715 1.1715-1.1715 3.0705 0 4.2421 0.58502 0.58652 1.353 0.87902 2.1211 0.87902 0.76801 0 1.5361-0.29251 2.1211-0.87902l3.879-3.879 3.879 3.879c0.58502 0.58652 1.353 0.87902 2.1211 0.87902 0.76801 0 1.5361-0.29251 2.1211-0.87902 1.1715-1.1715 1.1715-3.0705 0-4.2421l-3.8776-3.879 3.8776-3.879c1.1715-1.1715 1.1715-3.0705 0-4.2421z" fill="#c82829" stroke-width="1.5001"/>
|
4
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="m9.8767 17.723 5.8157-5.723-5.8157-5.723c-0.18462-0.18462-0.46155-0.27693-0.64616-0.27693-0.18462 0-0.46155 0.092309-0.64616 0.27693-0.18462 0.18462-0.27693 0.36924-0.27693 0.64616v10.154c0 0.27693 0.092309 0.46154 0.27693 0.64616 0.18462 0.18462 0.46155 0.27693 0.64616 0.27693 0.18462 0 0.46155-0.09231 0.64616-0.27693z" fill-opacity=".78039" stroke-width="1.6923"/>
|
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="m6.277 9.8767 5.723 5.8157 5.723-5.8157c0.18462-0.18462 0.27693-0.46155 0.27693-0.64616 0-0.18462-0.09231-0.46155-0.27693-0.64616-0.18462-0.18462-0.36924-0.27693-0.64616-0.27693h-10.154c-0.27693 0-0.46155 0.092309-0.64616 0.27693-0.18462 0.18462-0.27693 0.46155-0.27693 0.64616 0 0.18462 0.092309 0.46155 0.27693 0.64616z" fill-opacity=".78039" stroke-width="1.6923"/>
|
4
|
+
</svg>
|
novelwriter/assets/manual.pdf
CHANGED
Binary file
|
novelwriter/assets/sample.zip
CHANGED
Binary file
|