novelWriter 2.3rc1__py3-none-any.whl → 2.4__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.3rc1.dist-info → novelWriter-2.4.dist-info}/METADATA +5 -6
- {novelWriter-2.3rc1.dist-info → novelWriter-2.4.dist-info}/RECORD +119 -109
- {novelWriter-2.3rc1.dist-info → novelWriter-2.4.dist-info}/WHEEL +1 -1
- novelWriter-2.4.dist-info/entry_points.txt +2 -0
- novelwriter/__init__.py +17 -10
- novelwriter/assets/i18n/nw_de_DE.qm +0 -0
- novelwriter/assets/i18n/nw_en_US.qm +0 -0
- novelwriter/assets/i18n/nw_es_419.qm +0 -0
- novelwriter/assets/i18n/nw_fr_FR.qm +0 -0
- novelwriter/assets/i18n/nw_it_IT.qm +0 -0
- novelwriter/assets/i18n/nw_ja_JP.qm +0 -0
- novelwriter/assets/i18n/nw_nb_NO.qm +0 -0
- novelwriter/assets/i18n/nw_nl_NL.qm +0 -0
- novelwriter/assets/i18n/nw_pt_BR.qm +0 -0
- novelwriter/assets/i18n/nw_zh_CN.qm +0 -0
- novelwriter/assets/i18n/project_nl_NL.json +11 -0
- novelwriter/assets/i18n/project_pt_BR.json +11 -0
- 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/cyberpunk_night.conf +26 -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/tango.conf +23 -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/assets/themes/cyberpunk_night.conf +29 -0
- novelwriter/common.py +12 -4
- novelwriter/config.py +47 -16
- novelwriter/constants.py +5 -6
- novelwriter/core/buildsettings.py +64 -44
- 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 +11 -15
- novelwriter/core/projectxml.py +3 -2
- novelwriter/core/sessions.py +2 -2
- novelwriter/core/spellcheck.py +3 -3
- novelwriter/core/status.py +6 -5
- novelwriter/core/storage.py +16 -6
- novelwriter/core/tohtml.py +22 -25
- novelwriter/core/tokenizer.py +417 -237
- novelwriter/core/tomd.py +17 -8
- novelwriter/core/toodt.py +386 -351
- novelwriter/core/tree.py +8 -8
- novelwriter/dialogs/about.py +10 -12
- novelwriter/dialogs/docmerge.py +17 -14
- novelwriter/dialogs/docsplit.py +20 -19
- novelwriter/dialogs/editlabel.py +5 -4
- novelwriter/dialogs/preferences.py +32 -40
- novelwriter/dialogs/projectsettings.py +31 -28
- novelwriter/dialogs/quotes.py +10 -9
- novelwriter/dialogs/wordlist.py +18 -15
- novelwriter/enum.py +17 -14
- novelwriter/error.py +14 -12
- novelwriter/extensions/circularprogress.py +12 -8
- novelwriter/extensions/configlayout.py +23 -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 +433 -496
- novelwriter/gui/dochighlight.py +54 -33
- 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 -17
- novelwriter/gui/noveltree.py +31 -37
- novelwriter/gui/outline.py +120 -98
- novelwriter/gui/projtree.py +114 -112
- novelwriter/gui/search.py +362 -0
- novelwriter/gui/sidebar.py +36 -45
- novelwriter/gui/statusbar.py +14 -14
- novelwriter/gui/theme.py +116 -34
- novelwriter/guimain.py +216 -207
- novelwriter/shared.py +31 -6
- novelwriter/text/counting.py +138 -0
- novelwriter/tools/dictionaries.py +15 -14
- novelwriter/tools/lipsum.py +20 -17
- novelwriter/tools/manusbuild.py +43 -35
- novelwriter/tools/manuscript.py +381 -104
- novelwriter/tools/manussettings.py +263 -125
- novelwriter/tools/noveldetails.py +21 -19
- novelwriter/tools/welcome.py +59 -57
- novelwriter/tools/writingstats.py +61 -55
- novelwriter/types.py +90 -0
- novelWriter-2.3rc1.dist-info/entry_points.txt +0 -5
- 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.3rc1.dist-info → novelWriter-2.4.dist-info}/LICENSE.md +0 -0
- {novelWriter-2.3rc1.dist-info → novelWriter-2.4.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.4
|
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,23 +1,24 @@
|
|
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/
|
11
|
-
novelwriter/assets/
|
12
|
-
novelwriter/assets/i18n/
|
13
|
-
novelwriter/assets/i18n/
|
14
|
-
novelwriter/assets/i18n/
|
15
|
-
novelwriter/assets/i18n/
|
16
|
-
novelwriter/assets/i18n/
|
17
|
-
novelwriter/assets/i18n/
|
18
|
-
novelwriter/assets/i18n/
|
19
|
-
novelwriter/assets/i18n/
|
20
|
-
novelwriter/assets/i18n/
|
1
|
+
novelwriter/__init__.py,sha256=z4uFKQZVvMByQCX9cmPb2qP61nmMXmzN-jZ6FGcDx0A,7742
|
2
|
+
novelwriter/common.py,sha256=oarn4-2Ezm595b-dHD4MVrytxMFFB_QhITbTMIKD40M,17440
|
3
|
+
novelwriter/config.py,sha256=Y0c3-0xfmDE-IDcFYW0U_x_WGPMoU2T0sqtNZ8CT4zQ,35841
|
4
|
+
novelwriter/constants.py,sha256=UIxiF-23cB_gmRfxbQPYmObn8Ib-ygm46uOIG329RLY,19818
|
5
|
+
novelwriter/enum.py,sha256=MP-nz3vDRp4bWxXitqjdLWO2_RvrDAlRxngiMON9mb8,3305
|
6
|
+
novelwriter/error.py,sha256=rY3kHVkt7W0MM9iKOBkMY-9qhStlESGlyeOOXwT4BGM,7278
|
7
|
+
novelwriter/guimain.py,sha256=Be32lkJv1ZF-aOSOQTPBfcH7TFrk3KvpLBmwIl20eRc,53477
|
8
|
+
novelwriter/shared.py,sha256=OS83rH3zFar0sEPTXAdq13LKNGDKNOaYhf1VZ513wGg,14278
|
9
|
+
novelwriter/types.py,sha256=6aP2hZraPEolYqBgj5R_5bah3NgelASBfKol6yYOi4g,3316
|
10
|
+
novelwriter/assets/manual.pdf,sha256=H8VSjdxMgEOn-Pld3o2pLLzN8Jvs7tLemUjo3m3ufJk,2689966
|
11
|
+
novelwriter/assets/sample.zip,sha256=XPXsR6S8grdhVfQBZqPJ7d04B1ec6W_gyDIeIWxC1os,27358
|
12
|
+
novelwriter/assets/i18n/nw_de_DE.qm,sha256=kjOSx0kFauw_sUNZaHaHMmzLLM98w_CoAkZeFrbNBcY,98156
|
13
|
+
novelwriter/assets/i18n/nw_en_US.qm,sha256=CEobBc12KyTxg_O8zMKpwDJeURSoiz_ICuRiWidghak,91064
|
14
|
+
novelwriter/assets/i18n/nw_es_419.qm,sha256=vR7ACEFJXTy72R0cJVudRJv5SHymL4Sfe3wdPjo45y8,100489
|
15
|
+
novelwriter/assets/i18n/nw_fr_FR.qm,sha256=iyVO0Z8QiG8ZrdEBo10397SsAiWI_VGEsOZvPdw4MQA,100966
|
16
|
+
novelwriter/assets/i18n/nw_it_IT.qm,sha256=GxO6qFfti6BVT723XdEr4QBeKfIrs2palvEgLsrbdU8,100902
|
17
|
+
novelwriter/assets/i18n/nw_ja_JP.qm,sha256=zvl2eayc5m-QK3zElzK_VZCX19aJSkQNqTuRyHx41n0,75433
|
18
|
+
novelwriter/assets/i18n/nw_nb_NO.qm,sha256=v-0hgW_RXXZS2CPo5TglwKzIc7pGCsTmuofVhlDZU-w,93556
|
19
|
+
novelwriter/assets/i18n/nw_nl_NL.qm,sha256=YYHRQdi1aCwpvqc-RdF-uGZR9mXBtRHAohThSbtGYr8,93011
|
20
|
+
novelwriter/assets/i18n/nw_pt_BR.qm,sha256=2pW_7MFG152nN3Yc721qvvcG01XSRTVe21BvvqdBQvk,79257
|
21
|
+
novelwriter/assets/i18n/nw_zh_CN.qm,sha256=vfFnDRqurhO4_rkNww4psJY1dVOwx6jxUAOAoYNDc6w,57700
|
21
22
|
novelwriter/assets/i18n/project_de_DE.json,sha256=85ud9rxRHyXm85QDmW_LKcUE8h0L1Bvukaf5Tjt-wpg,2818
|
22
23
|
novelwriter/assets/i18n/project_en_GB.json,sha256=EcQAVEiQgRL3qobuzkPTfOWIxAc3Om-tA7nXUFFXEdI,2483
|
23
24
|
novelwriter/assets/i18n/project_en_US.json,sha256=EcQAVEiQgRL3qobuzkPTfOWIxAc3Om-tA7nXUFFXEdI,2483
|
@@ -26,17 +27,18 @@ novelwriter/assets/i18n/project_fr_FR.json,sha256=CBojo05gdhxev5pFg889ENe_CKOHSD
|
|
26
27
|
novelwriter/assets/i18n/project_it_IT.json,sha256=C_S5P86hGHaJ_sE-B3ceQGJgDzkXalyjF816oClf9h0,2566
|
27
28
|
novelwriter/assets/i18n/project_ja_JP.json,sha256=8P03f2D9o2TlSxFU5ugRa-DJDeDZr_I_omDWN-xv3lY,2393
|
28
29
|
novelwriter/assets/i18n/project_nb_NO.json,sha256=e8E9c188KRPJfgZa298hDiaLEuhjHMxbRMaIF8HaVew,2298
|
29
|
-
novelwriter/assets/i18n/project_nl_NL.json,sha256=
|
30
|
+
novelwriter/assets/i18n/project_nl_NL.json,sha256=qUEEjLMRtvt9VuNmjb_qOVCXqUCENHskCEyp5YlPMc4,2683
|
30
31
|
novelwriter/assets/i18n/project_nn_NO.json,sha256=7ZfmtFWHcDMiLVqdOEDHQWHbpoC_bv5ESmf_-CoYiks,2250
|
31
|
-
novelwriter/assets/i18n/project_pt_BR.json,sha256=
|
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,101 +227,103 @@ 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
|
227
237
|
novelwriter/assets/images/novelwriter-text-light.svg,sha256=ziTrfrr0WO9JWBzSfuuKBlYFCkENfEBp3MyOYTNGUYQ,5983
|
228
238
|
novelwriter/assets/images/welcome-dark.jpg,sha256=MPRYUI1yEjzee1uHGWlrR352U1LFSSV92awDheFtmZo,299007
|
229
239
|
novelwriter/assets/images/welcome-light.jpg,sha256=FcS5GA5G6o9KgmADYHktyR3GHquNlPNIUQeQQiscQzA,279989
|
230
|
-
novelwriter/assets/syntax/
|
231
|
-
novelwriter/assets/syntax/
|
232
|
-
novelwriter/assets/syntax/
|
233
|
-
novelwriter/assets/syntax/
|
234
|
-
novelwriter/assets/syntax/
|
235
|
-
novelwriter/assets/syntax/
|
236
|
-
novelwriter/assets/syntax/
|
237
|
-
novelwriter/assets/syntax/
|
238
|
-
novelwriter/assets/syntax/
|
239
|
-
novelwriter/assets/syntax/
|
240
|
-
novelwriter/assets/syntax/
|
241
|
-
novelwriter/assets/syntax/
|
242
|
-
novelwriter/assets/syntax/
|
243
|
-
novelwriter/assets/
|
240
|
+
novelwriter/assets/syntax/cyberpunk_night.conf,sha256=w_22pAqGYDsGMrvzwx7QrOnweFW-mkZZjZ-cRB81yaI,760
|
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
|
249
|
+
novelwriter/assets/syntax/tango.conf,sha256=g_nLKaMW71p3NQ8JywpAnkDBXwIy5gvDfNYJFBmYcFw,635
|
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
|
244
256
|
novelwriter/assets/text/lipsum.txt,sha256=sGA6AC_p4jrUifxLxy3cSODeRwkpBNXDPGgX6YRTm2s,62937
|
257
|
+
novelwriter/assets/themes/cyberpunk_night.conf,sha256=cwNVyZ1ElGWm-r6Qpzj1Pl2vIhC_ePVsgmtriwMcAms,827
|
245
258
|
novelwriter/assets/themes/default.conf,sha256=K0LZ64lODpCtUg3pISTAP4UKvEYMvPkmIYN9RDEaWwk,72
|
246
259
|
novelwriter/assets/themes/default_dark.conf,sha256=L6xHLbgVb4E4SkQRSgCV7yEoxH9RxPunCjBuLpU8JEY,925
|
247
260
|
novelwriter/assets/themes/default_light.conf,sha256=o_FJRMidFo-DJYK8bB-jdelcD5qg7MwW4J8lL9nlZUY,928
|
248
261
|
novelwriter/assets/themes/solarized_dark.conf,sha256=HIP9icMtRljUmMH7PmU0IrcLGUSXVDaG97070Hc0UVM,852
|
249
262
|
novelwriter/assets/themes/solarized_light.conf,sha256=jUfaCnWXM4GAOI1eUioj_nP0RiMrnr8MEOprSg7qUU4,854
|
250
|
-
novelwriter/core/
|
251
|
-
novelwriter/core/
|
252
|
-
novelwriter/core/
|
253
|
-
novelwriter/core/
|
254
|
-
novelwriter/core/
|
255
|
-
novelwriter/core/index.py,sha256=1hzA0HiL-14HFQRapziHObXZonjhEev3sEe6Gvx_2ZU,48319
|
263
|
+
novelwriter/core/buildsettings.py,sha256=SVRYtmsneUlidzoHlmXebgpVPW7ZTei8mwTfVug3o4E,22423
|
264
|
+
novelwriter/core/coretools.py,sha256=mNrFL7R3dAAQhe3aGT9QTha4rX4XXF5JOlmXykNCJh0,21467
|
265
|
+
novelwriter/core/docbuild.py,sha256=cvvIe3w3ptY3VE_ak3ppzVkBMvoGS5o0CdzS0ifAVRw,13842
|
266
|
+
novelwriter/core/document.py,sha256=ERU3GCZ1CHkIE3bV-NQ5G8HZlH5C4bWqa-OxyPgFu4w,12154
|
267
|
+
novelwriter/core/index.py,sha256=e-Iov2NyeeLWiWsx_UCD758UIw_6KGe1FZ-jegkRgmU,45951
|
256
268
|
novelwriter/core/item.py,sha256=6a-9Aty4_RIFE-90IxR8t19Fjyl_uHJAwz_TzUn8oRI,18104
|
257
269
|
novelwriter/core/options.py,sha256=6gMe3cXq4U-oSN3zSoGtfiCOW6hX9xtjDssrbZYrtGY,7397
|
258
|
-
novelwriter/core/project.py,sha256=
|
270
|
+
novelwriter/core/project.py,sha256=dl8mx6uCjPUzb9H-pOcwYbDahQ6rxB5D-rkeb8CX-Kk,22718
|
259
271
|
novelwriter/core/projectdata.py,sha256=NYhTL6qIbJxJX98-_zZdV4LzI2-tqdWaMvGYi0Xi4WU,9826
|
260
|
-
novelwriter/core/projectxml.py,sha256=
|
261
|
-
novelwriter/core/sessions.py,sha256=
|
262
|
-
novelwriter/core/spellcheck.py,sha256=
|
263
|
-
novelwriter/core/status.py,sha256=
|
264
|
-
novelwriter/core/storage.py,sha256=
|
265
|
-
novelwriter/core/tohtml.py,sha256=
|
266
|
-
novelwriter/core/tokenizer.py,sha256=
|
267
|
-
novelwriter/core/tomd.py,sha256=
|
268
|
-
novelwriter/core/toodt.py,sha256=
|
269
|
-
novelwriter/core/tree.py,sha256=
|
270
|
-
novelwriter/dialogs/
|
271
|
-
novelwriter/dialogs/
|
272
|
-
novelwriter/dialogs/
|
273
|
-
novelwriter/dialogs/
|
274
|
-
novelwriter/dialogs/
|
275
|
-
novelwriter/dialogs/
|
276
|
-
novelwriter/dialogs/
|
277
|
-
novelwriter/dialogs/
|
278
|
-
novelwriter/
|
279
|
-
novelwriter/extensions/
|
280
|
-
novelwriter/extensions/circularprogress.py,sha256=UrqZCgnJgFVuUvUV0V-9noWKCROJWkDtaC44ijvuJPA,3747
|
281
|
-
novelwriter/extensions/configlayout.py,sha256=GITZpZQ_Fp07x3NvljthFLh0G9Gelj9QlECmBf1em8k,8682
|
272
|
+
novelwriter/core/projectxml.py,sha256=0qylTwEsgoKRlSmDyBgOU4XpGvA3nPMipYs1dNkc-hA,21948
|
273
|
+
novelwriter/core/sessions.py,sha256=k13qaHO0oAyKBlMrhDogO0dFoAROBA8WNgUULGtIhIA,4431
|
274
|
+
novelwriter/core/spellcheck.py,sha256=FuTPjunG3DpXZzVrpSp3cHCJR1s72MYiSjOm6ok2ZiE,7256
|
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=mwcwUojDL7DW8W4wbXZbtnyPnOdN9soJb11dShrdtbk,40993
|
279
|
+
novelwriter/core/tomd.py,sha256=xk5r3oyHkz6LOouiPaQLGVJWp6bT0HLe3upr4JmWjG4,7386
|
280
|
+
novelwriter/core/toodt.py,sha256=nPslo_bEsUaGWk0YCPaPHak41dXS9PpzNKClGOF_cA0,58662
|
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=hQv70JmrQDTXDY5onrkeQVCZ1UiProi4i8c2xQsXTfk,36440
|
287
|
+
novelwriter/dialogs/projectsettings.py,sha256=IbZkb0oFU9C5PtQxtrY5DJSfdaUoeb_A2qhpZJWG4KY,25750
|
288
|
+
novelwriter/dialogs/quotes.py,sha256=iDtkACeCnaCQOTXQtW1H75BjeOJIm0SsrP4EzLsFq0E,4647
|
289
|
+
novelwriter/dialogs/wordlist.py,sha256=EfjKQn_SZ8qUCXXw5WHgqe6hWLAn02cD23mWUTTaxkc,8646
|
290
|
+
novelwriter/extensions/circularprogress.py,sha256=H0btKccdnvVfijU8ZudYvv4AgrvPYvx7IgznIxASBY0,3856
|
291
|
+
novelwriter/extensions/configlayout.py,sha256=xHUE_HckNwJsfPKZ3hJjAKAYhxzQFRmNCmBrIh6QtTs,9253
|
282
292
|
novelwriter/extensions/eventfilters.py,sha256=XehDoXwsnCvI1D3uieuYu5J3kxZggdV6Teo7Z0xZw7E,2581
|
283
|
-
novelwriter/extensions/modified.py,sha256=
|
293
|
+
novelwriter/extensions/modified.py,sha256=s8HbGumHA0mAspnYo-ADIiwOXkccL-w1ThimxywdlNc,4038
|
284
294
|
novelwriter/extensions/novelselector.py,sha256=5ccEDvqrbvrG7khZBrOiJwxsjjRnkFX-A4ZT-lj_z_g,3821
|
285
|
-
novelwriter/extensions/pagedsidebar.py,sha256
|
286
|
-
novelwriter/extensions/simpleprogress.py,sha256=
|
287
|
-
novelwriter/extensions/statusled.py,sha256=
|
288
|
-
novelwriter/extensions/switch.py,sha256=
|
289
|
-
novelwriter/extensions/switchbox.py,sha256=
|
290
|
-
novelwriter/extensions/versioninfo.py,sha256=
|
291
|
-
novelwriter/gui/
|
292
|
-
novelwriter/gui/
|
293
|
-
novelwriter/gui/
|
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/sidebar.py,sha256=
|
303
|
-
novelwriter/gui/statusbar.py,sha256=
|
304
|
-
novelwriter/gui/theme.py,sha256=
|
305
|
-
novelwriter/
|
306
|
-
novelwriter/tools/dictionaries.py,sha256=
|
307
|
-
novelwriter/tools/lipsum.py,sha256=
|
308
|
-
novelwriter/tools/manusbuild.py,sha256=
|
309
|
-
novelwriter/tools/manuscript.py,sha256=
|
310
|
-
novelwriter/tools/manussettings.py,sha256=
|
311
|
-
novelwriter/tools/noveldetails.py,sha256=
|
312
|
-
novelwriter/tools/welcome.py,sha256=
|
313
|
-
novelwriter/tools/writingstats.py,sha256=
|
314
|
-
novelWriter-2.
|
315
|
-
novelWriter-2.
|
316
|
-
novelWriter-2.
|
317
|
-
novelWriter-2.
|
318
|
-
novelWriter-2.
|
319
|
-
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=bsGfkeoX1F2vX-HEZHt1zgWoURZeBg3Z-cnMiYKxvvM,113784
|
302
|
+
novelwriter/gui/dochighlight.py,sha256=9-OP0YrMmljOCsdY-rqZe0G27gkBP7Fzk_R_f3iGGVE,17394
|
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=iTXNqmhEZqVDA6XkIAhpIq-cc1fF5-rZVe2g9z7v8_c,38707
|
308
|
+
novelwriter/gui/noveltree.py,sha256=F-r6vdgCoIzxFwOI9kvsLEnz7nX2uOs30LOHHijN7NY,27988
|
309
|
+
novelwriter/gui/outline.py,sha256=q0d21UI2r4K4D9jPARKc3ibWsdpiEnartAHfwxE2AgY,42410
|
310
|
+
novelwriter/gui/projtree.py,sha256=21B1-NJFYf724oIH5xX0b35YX3YX-zxRcLdYopMdRy8,77888
|
311
|
+
novelwriter/gui/search.py,sha256=PYsSIhe77PCuXj1fRXb2_7GF1gxLDv_vyq8JsgW5UfY,12996
|
312
|
+
novelwriter/gui/sidebar.py,sha256=kidGGzXQ5RNQvKuH0kFh-lwoUSlkXffBucEoL15RMd4,6258
|
313
|
+
novelwriter/gui/statusbar.py,sha256=ru-4pyg8owWkwkXGgj5GEupfq9fbIykYwGpomwzaINk,9353
|
314
|
+
novelwriter/gui/theme.py,sha256=P2EI79WMGulYBhkADqVOWW13DfFOOoCUeBf7Kxku-wM,32670
|
315
|
+
novelwriter/text/counting.py,sha256=tkWKWS_scPYmBG8xLpIL1KLIjyF2HOlkrloQa5PZmDc,4304
|
316
|
+
novelwriter/tools/dictionaries.py,sha256=Xy5or2yejJbUv9ptwqsz1-R4pxDYQATiHCZaqorUXdY,9231
|
317
|
+
novelwriter/tools/lipsum.py,sha256=d-qdRSrXLfTkTdzi7vhjeBlWawwGwWQ9Qd_zRSwzgpQ,4901
|
318
|
+
novelwriter/tools/manusbuild.py,sha256=_xcbYtMMuwiaJM000ByVcDct6zLAXZKjkmzkwAEtb04,14010
|
319
|
+
novelwriter/tools/manuscript.py,sha256=Ol5EczpkBHRaUu12UXNe1Goqmi8Zk6ijDpPonjy8Rog,39814
|
320
|
+
novelwriter/tools/manussettings.py,sha256=EmlexuSZVYP5kTA9uyiiE3Ew1dEiAdXE79MhJfcsa_U,55783
|
321
|
+
novelwriter/tools/noveldetails.py,sha256=KoENyz0hH3TlXfRCEJvRTZ0h7ruOgTIv85AgCl1Ur5o,18503
|
322
|
+
novelwriter/tools/welcome.py,sha256=BxORHBPjqumEVNZC7SytE3kUasx01GMOKS5QQSagP-M,27954
|
323
|
+
novelwriter/tools/writingstats.py,sha256=IubrbbLB_Qlnwp9B3muKkeD84xtckPvmTax7E4LnI5g,22797
|
324
|
+
novelWriter-2.4.dist-info/LICENSE.md,sha256=2GirkkLrPfQqx7fACKRJjtKJUegKc8067erGvcDVQHM,32197
|
325
|
+
novelWriter-2.4.dist-info/METADATA,sha256=vrSlDMAWapqlZrVU2yWxYdXkRr8el60G5o6IkkdqFP0,2580
|
326
|
+
novelWriter-2.4.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
327
|
+
novelWriter-2.4.dist-info/entry_points.txt,sha256=YDUG1w361LtLsjD3YhxoTDTwM17JA5-nigjC6j5C74A,45
|
328
|
+
novelWriter-2.4.dist-info/top_level.txt,sha256=wFFEucjEeNC_Ap5ULBuEutg5a1Uc0-YO9uFT5L2naNI,12
|
329
|
+
novelWriter-2.4.dist-info/RECORD,,
|
novelwriter/__init__.py
CHANGED
@@ -23,16 +23,21 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
23
23
|
"""
|
24
24
|
from __future__ import annotations
|
25
25
|
|
26
|
-
import sys
|
27
26
|
import getopt
|
28
27
|
import logging
|
28
|
+
import sys
|
29
|
+
|
30
|
+
from typing import TYPE_CHECKING
|
29
31
|
|
30
32
|
from PyQt5.QtWidgets import QApplication, QErrorMessage
|
31
33
|
|
32
|
-
from novelwriter.error import exceptionHandler, logException
|
33
34
|
from novelwriter.config import Config
|
35
|
+
from novelwriter.error import exceptionHandler, logException
|
34
36
|
from novelwriter.shared import SharedData
|
35
37
|
|
38
|
+
if TYPE_CHECKING: # pragma: no cover
|
39
|
+
from novelwriter.guimain import GuiMain
|
40
|
+
|
36
41
|
# Package Meta
|
37
42
|
# ============
|
38
43
|
|
@@ -42,9 +47,9 @@ __license__ = "GPLv3"
|
|
42
47
|
__author__ = "Veronica Berglyd Olsen"
|
43
48
|
__maintainer__ = "Veronica Berglyd Olsen"
|
44
49
|
__email__ = "code@vkbo.net"
|
45
|
-
__version__ = "2.
|
46
|
-
__hexversion__ = "
|
47
|
-
__date__ = "2024-
|
50
|
+
__version__ = "2.4"
|
51
|
+
__hexversion__ = "0x020400f0"
|
52
|
+
__date__ = "2024-04-20"
|
48
53
|
__status__ = "Stable"
|
49
54
|
__domain__ = "novelwriter.io"
|
50
55
|
|
@@ -60,7 +65,7 @@ CONFIG = Config()
|
|
60
65
|
SHARED = SharedData()
|
61
66
|
|
62
67
|
|
63
|
-
def main(sysArgs: list | None = None):
|
68
|
+
def main(sysArgs: list | None = None) -> GuiMain | None:
|
64
69
|
"""Parse command line, set up logging, and launch main GUI."""
|
65
70
|
if sysArgs is None:
|
66
71
|
sysArgs = sys.argv[1:]
|
@@ -187,7 +192,7 @@ def main(sysArgs: list | None = None):
|
|
187
192
|
))
|
188
193
|
for errLine in errorData:
|
189
194
|
logger.critical(errLine)
|
190
|
-
errApp.
|
195
|
+
errApp.exec()
|
191
196
|
sys.exit(errorCode)
|
192
197
|
|
193
198
|
# Finish initialising config
|
@@ -195,7 +200,7 @@ def main(sysArgs: list | None = None):
|
|
195
200
|
|
196
201
|
if CONFIG.osDarwin:
|
197
202
|
try:
|
198
|
-
from Foundation import NSBundle
|
203
|
+
from Foundation import NSBundle # type: ignore
|
199
204
|
bundle = NSBundle.mainBundle()
|
200
205
|
info = bundle.localizedInfoDictionary() or bundle.infoDictionary()
|
201
206
|
info["CFBundleName"] = "novelWriter"
|
@@ -207,7 +212,7 @@ def main(sysArgs: list | None = None):
|
|
207
212
|
try:
|
208
213
|
import ctypes
|
209
214
|
appID = f"io.novelwriter.{__version__}"
|
210
|
-
ctypes.windll.shell32.SetCurrentProcessExplicitAppUserModelID(appID)
|
215
|
+
ctypes.windll.shell32.SetCurrentProcessExplicitAppUserModelID(appID) # type: ignore
|
211
216
|
except Exception:
|
212
217
|
logger.error("Failed to set application name")
|
213
218
|
logException()
|
@@ -237,6 +242,8 @@ def main(sysArgs: list | None = None):
|
|
237
242
|
nwGUI = GuiMain()
|
238
243
|
nwGUI.postLaunchTasks(cmdOpen)
|
239
244
|
|
240
|
-
sys.exit(nwApp.
|
245
|
+
sys.exit(nwApp.exec())
|
246
|
+
|
247
|
+
return None
|
241
248
|
|
242
249
|
# END Function main
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -1,7 +1,18 @@
|
|
1
1
|
{
|
2
2
|
"Synopsis": "Synopsis",
|
3
|
+
"Short Description": "Korte beschrijving",
|
3
4
|
"Comment": "Opmerking",
|
4
5
|
"Notes": "Notities",
|
6
|
+
"Tag": "Label",
|
7
|
+
"Point of View": "Perspectief",
|
8
|
+
"Focus": "Focus",
|
9
|
+
"Characters": "Personages",
|
10
|
+
"Plot": "Plot",
|
11
|
+
"Timeline": "Tijdslijn",
|
12
|
+
"Locations": "Locaties",
|
13
|
+
"Objects": "Objecten",
|
14
|
+
"Entities": "Entiteiten",
|
15
|
+
"Custom": "Aangepast",
|
5
16
|
"0": "nul",
|
6
17
|
"1": "één",
|
7
18
|
"2": "twee",
|
@@ -1,7 +1,18 @@
|
|
1
1
|
{
|
2
2
|
"Synopsis": "Sinopse",
|
3
|
+
"Short Description": "Descrição breve",
|
3
4
|
"Comment": "Comentários",
|
4
5
|
"Notes": "Notas",
|
6
|
+
"Tag": "Etiqueta",
|
7
|
+
"Point of View": "Ponto de vista",
|
8
|
+
"Focus": "Foco",
|
9
|
+
"Characters": "Personagens",
|
10
|
+
"Plot": "Trama",
|
11
|
+
"Timeline": "Linha do tempo",
|
12
|
+
"Locations": "Lugares",
|
13
|
+
"Objects": "Objetos",
|
14
|
+
"Entities": "Entidades",
|
15
|
+
"Custom": "Outros",
|
5
16
|
"0": "Zero",
|
6
17
|
"1": "Um",
|
7
18
|
"2": "Dois",
|
@@ -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>
|