novelWriter 2.2rc1__py3-none-any.whl → 2.2.1__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.2rc1.dist-info → novelWriter-2.2.1.dist-info}/METADATA +1 -1
- {novelWriter-2.2rc1.dist-info → novelWriter-2.2.1.dist-info}/RECORD +113 -111
- {novelWriter-2.2rc1.dist-info → novelWriter-2.2.1.dist-info}/WHEEL +1 -1
- novelwriter/__init__.py +10 -5
- 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_zh_CN.qm +0 -0
- novelwriter/assets/i18n/project_de_DE.json +1 -0
- novelwriter/assets/i18n/project_en_US.json +1 -0
- novelwriter/assets/i18n/project_es_419.json +11 -0
- novelwriter/assets/i18n/project_fr_FR.json +11 -0
- novelwriter/assets/i18n/project_it_IT.json +11 -0
- novelwriter/assets/i18n/project_ja_JP.json +2 -1
- novelwriter/assets/i18n/project_nb_NO.json +1 -0
- novelwriter/assets/i18n/project_zh_CN.json +11 -0
- novelwriter/assets/icons/typicons_dark/icons.conf +3 -2
- novelwriter/assets/icons/typicons_dark/nw_tb-bold-md.svg +4 -0
- novelwriter/assets/icons/typicons_dark/nw_tb-bold.svg +3 -1
- novelwriter/assets/icons/typicons_dark/nw_tb-italic-md.svg +4 -0
- novelwriter/assets/icons/typicons_dark/nw_tb-italic.svg +3 -1
- novelwriter/assets/icons/typicons_dark/nw_tb-strike-md.svg +4 -0
- novelwriter/assets/icons/typicons_dark/nw_tb-strike.svg +3 -1
- novelwriter/assets/icons/typicons_dark/nw_tb-subscript.svg +4 -2
- novelwriter/assets/icons/typicons_dark/nw_tb-superscript.svg +4 -2
- novelwriter/assets/icons/typicons_dark/nw_tb-underline.svg +4 -2
- novelwriter/assets/icons/typicons_light/icons.conf +3 -2
- novelwriter/assets/icons/typicons_light/nw_tb-bold-md.svg +4 -0
- novelwriter/assets/icons/typicons_light/nw_tb-bold.svg +3 -1
- novelwriter/assets/icons/typicons_light/nw_tb-italic-md.svg +4 -0
- novelwriter/assets/icons/typicons_light/nw_tb-italic.svg +3 -1
- novelwriter/assets/icons/typicons_light/nw_tb-strike-md.svg +4 -0
- novelwriter/assets/icons/typicons_light/nw_tb-strike.svg +3 -1
- novelwriter/assets/icons/typicons_light/nw_tb-subscript.svg +4 -2
- novelwriter/assets/icons/typicons_light/nw_tb-superscript.svg +4 -2
- novelwriter/assets/icons/typicons_light/nw_tb-underline.svg +4 -2
- novelwriter/assets/manual.pdf +0 -0
- novelwriter/assets/sample.zip +0 -0
- novelwriter/assets/text/release_notes.htm +50 -7
- novelwriter/common.py +16 -29
- novelwriter/config.py +3 -3
- novelwriter/constants.py +1 -1
- novelwriter/core/buildsettings.py +1 -1
- novelwriter/core/coretools.py +2 -1
- novelwriter/core/docbuild.py +1 -1
- novelwriter/core/document.py +1 -1
- novelwriter/core/index.py +2 -2
- novelwriter/core/item.py +2 -2
- novelwriter/core/options.py +3 -3
- novelwriter/core/project.py +3 -3
- novelwriter/core/projectdata.py +2 -2
- novelwriter/core/projectxml.py +1 -1
- novelwriter/core/sessions.py +2 -2
- novelwriter/core/spellcheck.py +4 -3
- novelwriter/core/status.py +3 -3
- novelwriter/core/storage.py +1 -1
- novelwriter/core/tohtml.py +2 -2
- novelwriter/core/tokenizer.py +1 -1
- novelwriter/core/tomd.py +2 -2
- novelwriter/core/toodt.py +1 -1
- novelwriter/core/tree.py +2 -2
- novelwriter/dialogs/about.py +30 -31
- novelwriter/dialogs/docmerge.py +24 -15
- novelwriter/dialogs/docsplit.py +27 -16
- novelwriter/dialogs/editlabel.py +19 -7
- novelwriter/dialogs/preferences.py +44 -57
- novelwriter/dialogs/projdetails.py +29 -36
- novelwriter/dialogs/projload.py +32 -36
- novelwriter/dialogs/projsettings.py +20 -15
- novelwriter/dialogs/quotes.py +32 -25
- novelwriter/dialogs/updates.py +4 -14
- novelwriter/dialogs/wordlist.py +34 -21
- novelwriter/enum.py +5 -4
- novelwriter/error.py +1 -1
- novelwriter/extensions/circularprogress.py +1 -1
- novelwriter/extensions/configlayout.py +3 -15
- novelwriter/extensions/{wheeleventfilter.py → eventfilters.py} +15 -5
- novelwriter/extensions/novelselector.py +1 -1
- novelwriter/extensions/pageddialog.py +1 -1
- novelwriter/extensions/pagedsidebar.py +2 -5
- novelwriter/extensions/simpleprogress.py +8 -9
- novelwriter/extensions/statusled.py +1 -1
- novelwriter/extensions/switch.py +4 -4
- novelwriter/extensions/switchbox.py +1 -6
- novelwriter/gui/doceditor.py +72 -64
- novelwriter/gui/dochighlight.py +3 -2
- novelwriter/gui/docviewer.py +22 -47
- novelwriter/gui/docviewerpanel.py +68 -23
- novelwriter/gui/editordocument.py +3 -3
- novelwriter/gui/itemdetails.py +2 -2
- novelwriter/gui/mainmenu.py +35 -30
- novelwriter/gui/noveltree.py +44 -53
- novelwriter/gui/outline.py +2 -1
- novelwriter/gui/projtree.py +5 -6
- novelwriter/gui/sidebar.py +6 -4
- novelwriter/gui/statusbar.py +47 -4
- novelwriter/gui/theme.py +5 -6
- novelwriter/guimain.py +139 -189
- novelwriter/shared.py +53 -29
- novelwriter/tools/dictionaries.py +2 -2
- novelwriter/tools/lipsum.py +34 -28
- novelwriter/tools/manusbuild.py +3 -4
- novelwriter/tools/manuscript.py +19 -26
- novelwriter/tools/manussettings.py +2 -4
- novelwriter/tools/projwizard.py +3 -3
- novelwriter/tools/writingstats.py +17 -4
- novelwriter/assets/icons/typicons_dark/nw_tb-markdown.svg +0 -8
- novelwriter/assets/icons/typicons_dark/nw_tb-shortcode.svg +0 -8
- novelwriter/assets/icons/typicons_light/nw_tb-markdown.svg +0 -8
- novelwriter/assets/icons/typicons_light/nw_tb-shortcode.svg +0 -8
- {novelWriter-2.2rc1.dist-info → novelWriter-2.2.1.dist-info}/LICENSE.md +0 -0
- {novelWriter-2.2rc1.dist-info → novelWriter-2.2.1.dist-info}/entry_points.txt +0 -0
- {novelWriter-2.2rc1.dist-info → novelWriter-2.2.1.dist-info}/top_level.txt +0 -0
@@ -1,42 +1,42 @@
|
|
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=
|
11
|
-
novelwriter/assets/i18n/nw_de_DE.qm,sha256=
|
12
|
-
novelwriter/assets/i18n/nw_en_US.qm,sha256=
|
13
|
-
novelwriter/assets/i18n/nw_es_419.qm,sha256=
|
14
|
-
novelwriter/assets/i18n/nw_fr_FR.qm,sha256=
|
15
|
-
novelwriter/assets/i18n/nw_it_IT.qm,sha256=
|
16
|
-
novelwriter/assets/i18n/nw_ja_JP.qm,sha256=
|
17
|
-
novelwriter/assets/i18n/nw_nb_NO.qm,sha256
|
1
|
+
novelwriter/__init__.py,sha256=LKs09MjRNB9aVhnbJcFmQnsrLevEEBoRE7bil5ipN00,7562
|
2
|
+
novelwriter/common.py,sha256=0qQZIOL-Yu_4_XegSFpa1j5QePw_GVF9eoVRgUY6p9E,16496
|
3
|
+
novelwriter/config.py,sha256=_vgWU2VV6YX2t5PSR9yVpv2UCO7nMGC0azVzAEpUvig,34622
|
4
|
+
novelwriter/constants.py,sha256=rwMllh0rbwZ5VF7RHUZCbSj4ckVwEaYKE8dpsKt8z6g,19003
|
5
|
+
novelwriter/enum.py,sha256=1pUM5M4DCuBYlnFuYzKFmij6w_cTLbVc6a5iO0xBrcQ,3213
|
6
|
+
novelwriter/error.py,sha256=se9wPsctJGjnJznZRp2WmsF4xrMkVj6UUq-82iT-3ss,7125
|
7
|
+
novelwriter/guimain.py,sha256=i6fsNuv-Fuj6mPIOI_ZB-o6ANqbQ_IZSd9gQjPTvoIU,55994
|
8
|
+
novelwriter/shared.py,sha256=NbD0I86B08v02E2VwFOvk-PUC1E8-1Itn6V3CuXPdFE,12803
|
9
|
+
novelwriter/assets/manual.pdf,sha256=tiDUBxsL6m4HF9wLxXo6ZWBWMUddeXhuOX26AyjJFmI,2409466
|
10
|
+
novelwriter/assets/sample.zip,sha256=iL6PuaYmkgOyKjLakCVcypf_eHU5M1_WC3tMozxNeyI,24988
|
11
|
+
novelwriter/assets/i18n/nw_de_DE.qm,sha256=eMPpx_WiG78miAmQwORDZ65sdsUiYGesV53ZOjgbQsg,104414
|
12
|
+
novelwriter/assets/i18n/nw_en_US.qm,sha256=DMmC_fvKotPVIRj2JV32uwDfjvmStw3r2YnOd9MyXbg,96408
|
13
|
+
novelwriter/assets/i18n/nw_es_419.qm,sha256=voOkQJFeRMSlmk2vUOyY3d7x2YzfGARKGi7L7XESbEI,106529
|
14
|
+
novelwriter/assets/i18n/nw_fr_FR.qm,sha256=z5IBHZ1xP_L814f2rEsaWr3jDujKM6wQr--WrxWWPvA,106774
|
15
|
+
novelwriter/assets/i18n/nw_it_IT.qm,sha256=KVtKGTvQQ_6Bzj1O501xs38RlvWx4wP_UKxniYXugMs,106518
|
16
|
+
novelwriter/assets/i18n/nw_ja_JP.qm,sha256=EaSAd7vJMVhojKCljSKeyCkdwZLSy0FEKxLD3D_NgrY,79207
|
17
|
+
novelwriter/assets/i18n/nw_nb_NO.qm,sha256=R6uoSsJD4uk2GeMTv5BEr4y7DiU3LgksQBWBd94z9TY,99040
|
18
18
|
novelwriter/assets/i18n/nw_nl_NL.qm,sha256=vyljBV5rlP5o4dmVQUj29qKRINjDlqHIYHZsiL_-vrw,90885
|
19
19
|
novelwriter/assets/i18n/nw_pt_BR.qm,sha256=JvZ2tXyDdhlfnm25zIq13pcxbvnch5cGte44ENix3LE,103080
|
20
|
-
novelwriter/assets/i18n/nw_zh_CN.qm,sha256=
|
21
|
-
novelwriter/assets/i18n/project_de_DE.json,sha256=
|
20
|
+
novelwriter/assets/i18n/nw_zh_CN.qm,sha256=2sgQgLwMig9h2VGgcJExjrmzaIb0BFwyCyqmY7RpLPM,71433
|
21
|
+
novelwriter/assets/i18n/project_de_DE.json,sha256=85ud9rxRHyXm85QDmW_LKcUE8h0L1Bvukaf5Tjt-wpg,2818
|
22
22
|
novelwriter/assets/i18n/project_en_GB.json,sha256=EcQAVEiQgRL3qobuzkPTfOWIxAc3Om-tA7nXUFFXEdI,2483
|
23
|
-
novelwriter/assets/i18n/project_en_US.json,sha256=
|
24
|
-
novelwriter/assets/i18n/project_es_419.json,sha256=
|
25
|
-
novelwriter/assets/i18n/project_fr_FR.json,sha256=
|
26
|
-
novelwriter/assets/i18n/project_it_IT.json,sha256=
|
27
|
-
novelwriter/assets/i18n/project_ja_JP.json,sha256=
|
28
|
-
novelwriter/assets/i18n/project_nb_NO.json,sha256=
|
23
|
+
novelwriter/assets/i18n/project_en_US.json,sha256=EcQAVEiQgRL3qobuzkPTfOWIxAc3Om-tA7nXUFFXEdI,2483
|
24
|
+
novelwriter/assets/i18n/project_es_419.json,sha256=Z6CAhc0hzekUZFDM-0ykRRsckJG4c2AETy4Xa_f2T7s,2730
|
25
|
+
novelwriter/assets/i18n/project_fr_FR.json,sha256=CBojo05gdhxev5pFg889ENe_CKOHSDv3oj8SmkBFqGg,2788
|
26
|
+
novelwriter/assets/i18n/project_it_IT.json,sha256=C_S5P86hGHaJ_sE-B3ceQGJgDzkXalyjF816oClf9h0,2566
|
27
|
+
novelwriter/assets/i18n/project_ja_JP.json,sha256=8P03f2D9o2TlSxFU5ugRa-DJDeDZr_I_omDWN-xv3lY,2393
|
28
|
+
novelwriter/assets/i18n/project_nb_NO.json,sha256=e8E9c188KRPJfgZa298hDiaLEuhjHMxbRMaIF8HaVew,2298
|
29
29
|
novelwriter/assets/i18n/project_nl_NL.json,sha256=4Dikb3z-XlzVH_fxByiQfLsPR9W3LvbayOkjbIQcugc,2386
|
30
30
|
novelwriter/assets/i18n/project_nn_NO.json,sha256=7ZfmtFWHcDMiLVqdOEDHQWHbpoC_bv5ESmf_-CoYiks,2250
|
31
31
|
novelwriter/assets/i18n/project_pt_BR.json,sha256=2eZNZeGs6l8_ghbGkAziuo3ERFNZ2hxTnZtB2PR1wFY,2461
|
32
32
|
novelwriter/assets/i18n/project_ru_RU.json,sha256=F4QkD6VVDCtGdil7uoXCmuczvUpe9tv-1L-3Eyc8sKE,3699
|
33
|
-
novelwriter/assets/i18n/project_zh_CN.json,sha256=
|
33
|
+
novelwriter/assets/i18n/project_zh_CN.json,sha256=cfl0TsnbISYUvygOw015y0x0REDG97xR0yjyJ85Jm34,2322
|
34
34
|
novelwriter/assets/icons/novelwriter.ico,sha256=OJRIeeUcmS7Di51NA3uF5_Ov4V8T47gQ9qWv6C7qDeA,171059
|
35
35
|
novelwriter/assets/icons/novelwriter.svg,sha256=Ad_SgOdXSDJtFR3DLCx6Afme15I78r38_YxCfO9F2z4,8511
|
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=0DzSqtc2Kt8mqd8Bbf3v3zrvN8Hzj8HwJzHvSfJs6Kw,3993
|
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
|
@@ -62,14 +62,15 @@ novelwriter/assets/icons/typicons_dark/nw_search-case.svg,sha256=RTXth9FpdP83AjW
|
|
62
62
|
novelwriter/assets/icons/typicons_dark/nw_search-preserve.svg,sha256=PSjnk3BbKXGdCOnpaIK623EJml-75gRILs2cJrqo_B4,854
|
63
63
|
novelwriter/assets/icons/typicons_dark/nw_search-regex.svg,sha256=j5u8KQD1LqwWHe7FG_fpyljN3KDWtbsrhI9Jp0eOGcw,746
|
64
64
|
novelwriter/assets/icons/typicons_dark/nw_search-word.svg,sha256=sIZxSAvl_uO_k8EUZWsI8bhBXGfBKfuy5oI052_E5NM,247
|
65
|
-
novelwriter/assets/icons/typicons_dark/nw_tb-bold.svg,sha256=
|
66
|
-
novelwriter/assets/icons/typicons_dark/nw_tb-
|
67
|
-
novelwriter/assets/icons/typicons_dark/nw_tb-
|
68
|
-
novelwriter/assets/icons/typicons_dark/nw_tb-
|
69
|
-
novelwriter/assets/icons/typicons_dark/nw_tb-strike.svg,sha256=
|
70
|
-
novelwriter/assets/icons/typicons_dark/nw_tb-
|
71
|
-
novelwriter/assets/icons/typicons_dark/nw_tb-
|
72
|
-
novelwriter/assets/icons/typicons_dark/nw_tb-
|
65
|
+
novelwriter/assets/icons/typicons_dark/nw_tb-bold-md.svg,sha256=WkeUP6xYSkV2aayMxBg30-3D1-lASL0_GtKbSU196KU,987
|
66
|
+
novelwriter/assets/icons/typicons_dark/nw_tb-bold.svg,sha256=D42tFbrt-CYzAEzw3I3HZPdCy-HtZipsSNM7wiE8IAA,1259
|
67
|
+
novelwriter/assets/icons/typicons_dark/nw_tb-italic-md.svg,sha256=tJWQ8-FgR3sY3T5iKj30O2zQl1mtSr7ADxyRLOJh3rE,277
|
68
|
+
novelwriter/assets/icons/typicons_dark/nw_tb-italic.svg,sha256=FlL6g_cPN85405MN2_fmmmOdIVHiiywpfyDlLWytHfk,515
|
69
|
+
novelwriter/assets/icons/typicons_dark/nw_tb-strike-md.svg,sha256=7EcssNMul3_yuXrKLoMMJ_54Zfg5niL1KNCUWcQcjv8,1395
|
70
|
+
novelwriter/assets/icons/typicons_dark/nw_tb-strike.svg,sha256=uO12-KZ3Nx4GEL2mIXub01eCtHfKDR05-I33FdJ38NM,1698
|
71
|
+
novelwriter/assets/icons/typicons_dark/nw_tb-subscript.svg,sha256=dOhhKxlsdWuQ7tq8HkBcShjNOUBpyEKgUP1RoFDlPLs,1550
|
72
|
+
novelwriter/assets/icons/typicons_dark/nw_tb-superscript.svg,sha256=0TpY0nIinD4dwgwh0Nyfs0C4rJDcc2JsgxnXSE0flco,1549
|
73
|
+
novelwriter/assets/icons/typicons_dark/nw_tb-underline.svg,sha256=Z0ooKzRV_g298UX22uuUxZPC21Z9DN-1y4sY3vVIaZE,1121
|
73
74
|
novelwriter/assets/icons/typicons_dark/typ_arrow-down-thick-grey.svg,sha256=PsEm_GCebnkMvtVm1OUbVU0hvA2nL8bWlrlyrAWh0tE,519
|
74
75
|
novelwriter/assets/icons/typicons_dark/typ_arrow-forward.svg,sha256=Io2wWbs2Z0z5GHzDkmf3AkNZZqyfSC0ilWVDvGv5Q5U,538
|
75
76
|
novelwriter/assets/icons/typicons_dark/typ_arrow-maximise.svg,sha256=m4w3ZUHy3R2aTtvLKZpmd6FPijjkaG6A5jhiqfTp9mg,1029
|
@@ -123,7 +124,7 @@ novelwriter/assets/icons/typicons_dark/typ_trash.svg,sha256=XjO0SRcnPDrg9Qe8zR5W
|
|
123
124
|
novelwriter/assets/icons/typicons_dark/typ_user.svg,sha256=00gZEDr59B1A7A4o0w5VjCJOHnQHANsgXBhnB_VTMU4,733
|
124
125
|
novelwriter/assets/icons/typicons_dark/typ_warning-full.svg,sha256=zqqV82C37dWH_yHoSuPo-BLsErg0sl8_VlB6fzXL4VE,970
|
125
126
|
novelwriter/assets/icons/typicons_light/README.md,sha256=nyGvWLJ8cusLYP8YsjX_l213NkDE_GHrwctZ-I_JQUg,1066
|
126
|
-
novelwriter/assets/icons/typicons_light/icons.conf,sha256=
|
127
|
+
novelwriter/assets/icons/typicons_light/icons.conf,sha256=oXVr3tlg4OyuduY8tM-ewiViNBVv1ImNvf14OJNMgco,3996
|
127
128
|
novelwriter/assets/icons/typicons_light/mixed_document-chapter.svg,sha256=kXNwPbeKR3eupIrqtDQrNGq5sL8vdExLfPMrMX2sEsw,1650
|
128
129
|
novelwriter/assets/icons/typicons_light/mixed_document-note.svg,sha256=XpKQ2Fj7J3I3BT9mAQkjk_A4eP7uy94vPeDBA62fOYI,1650
|
129
130
|
novelwriter/assets/icons/typicons_light/mixed_document-scene.svg,sha256=kwNPNaCJixTSpTPRFYxEHt3hVqhpwGJTCfZfu8rJvYE,1650
|
@@ -149,14 +150,15 @@ novelwriter/assets/icons/typicons_light/nw_search-case.svg,sha256=cU9e-bOh0vCrI_
|
|
149
150
|
novelwriter/assets/icons/typicons_light/nw_search-preserve.svg,sha256=ggEvIlqfEyjxR_IzP0R0TwVXK5nTaIxyWP4TGgmpLvs,885
|
150
151
|
novelwriter/assets/icons/typicons_light/nw_search-regex.svg,sha256=uYWEIptuiwsVhp5Q30JalDsUTqfMktPosteARZbSXkI,760
|
151
152
|
novelwriter/assets/icons/typicons_light/nw_search-word.svg,sha256=3gbTxBpaa2qeufByuN_VGQPMlrNfm2PPbBbNDAx3sNE,254
|
152
|
-
novelwriter/assets/icons/typicons_light/nw_tb-bold.svg,sha256=
|
153
|
-
novelwriter/assets/icons/typicons_light/nw_tb-
|
154
|
-
novelwriter/assets/icons/typicons_light/nw_tb-
|
155
|
-
novelwriter/assets/icons/typicons_light/nw_tb-
|
156
|
-
novelwriter/assets/icons/typicons_light/nw_tb-strike.svg,sha256=
|
157
|
-
novelwriter/assets/icons/typicons_light/nw_tb-
|
158
|
-
novelwriter/assets/icons/typicons_light/nw_tb-
|
159
|
-
novelwriter/assets/icons/typicons_light/nw_tb-
|
153
|
+
novelwriter/assets/icons/typicons_light/nw_tb-bold-md.svg,sha256=1x1uoFq06iKVXNtd3oWMxQ99nz_27IW6Mm6Zn_Rypk8,994
|
154
|
+
novelwriter/assets/icons/typicons_light/nw_tb-bold.svg,sha256=CW-Q8HLg989PhdwRq_YQ7x_FcE64yk_4wDxqhNA9b2Y,1272
|
155
|
+
novelwriter/assets/icons/typicons_light/nw_tb-italic-md.svg,sha256=TlfmG-iapQo2Z75-83T_aSqmlzaZPxB13HQjeiXhhWY,284
|
156
|
+
novelwriter/assets/icons/typicons_light/nw_tb-italic.svg,sha256=HMeA9SYJ6g7p53kr0Bv9Kqm75I_7zUxDCvdSKmZd_KE,528
|
157
|
+
novelwriter/assets/icons/typicons_light/nw_tb-strike-md.svg,sha256=wzHCVcfMvjrL5W3Jfl8UsQiAfjHwXEFSpmmR5F69QQg,1402
|
158
|
+
novelwriter/assets/icons/typicons_light/nw_tb-strike.svg,sha256=HtAYlTga42JVpoUJGyuHX6v4he8__9YiN0tzvOrtqiw,1711
|
159
|
+
novelwriter/assets/icons/typicons_light/nw_tb-subscript.svg,sha256=j8qncFQqiC5vZfFELENtX9COMcrI7NnyED17ki7tC08,1551
|
160
|
+
novelwriter/assets/icons/typicons_light/nw_tb-superscript.svg,sha256=-B-iVCPsoCaz9ZiVkHN6em2BJOI65_ssjFqZM75wxZ0,1550
|
161
|
+
novelwriter/assets/icons/typicons_light/nw_tb-underline.svg,sha256=rxSFWY2lNpSuF2jbUk_jyfoHk_B5d2bLncaCY-2LT7w,1141
|
160
162
|
novelwriter/assets/icons/typicons_light/typ_arrow-down-thick-grey.svg,sha256=FZFt51KLkvqrP0nM_bnCjKkELcLT7KMWB059gvSMKk4,523
|
161
163
|
novelwriter/assets/icons/typicons_light/typ_arrow-forward.svg,sha256=vDYZrsNe2Afo8-MqS9HV_gsz6aFraYZUyJeAdOXaE4Y,541
|
162
164
|
novelwriter/assets/icons/typicons_light/typ_arrow-maximise.svg,sha256=bz93DwuiB_2Baf-oG5SsMdWGccYogyNqR2Yq3OQ4bDY,1032
|
@@ -226,80 +228,80 @@ novelwriter/assets/syntax/tomorrow_night_eighties.conf,sha256=X6uKDP14Ysy3Irmf9I
|
|
226
228
|
novelwriter/assets/text/credits_en.htm,sha256=G1xGdZ2EbhIa3gO3idywyH7C1gTnsxhyhQjw__VMKOQ,3415
|
227
229
|
novelwriter/assets/text/gplv3_en.htm,sha256=SZ3fBrGvJ5385SxMPqeJOInhI4gMrK4W5jJBUhYt83s,34517
|
228
230
|
novelwriter/assets/text/lipsum.txt,sha256=sGA6AC_p4jrUifxLxy3cSODeRwkpBNXDPGgX6YRTm2s,62937
|
229
|
-
novelwriter/assets/text/release_notes.htm,sha256=
|
231
|
+
novelwriter/assets/text/release_notes.htm,sha256=hoNbCzziImvQk00jHXEVwbDvQSoNf04dUxUCOu7Rw4Q,4075
|
230
232
|
novelwriter/assets/themes/default.conf,sha256=K0LZ64lODpCtUg3pISTAP4UKvEYMvPkmIYN9RDEaWwk,72
|
231
233
|
novelwriter/assets/themes/default_dark.conf,sha256=oAYqk2l1U8zIpHRlGi0Hm4T2eWE0FfH8O7ilqaeoptw,925
|
232
234
|
novelwriter/assets/themes/default_light.conf,sha256=H1raSvgmlCl63rmcQQbx4rfqa1ZvJeRenaCv9BUrrUI,928
|
233
235
|
novelwriter/assets/themes/solarized_dark.conf,sha256=HIP9icMtRljUmMH7PmU0IrcLGUSXVDaG97070Hc0UVM,852
|
234
236
|
novelwriter/assets/themes/solarized_light.conf,sha256=jUfaCnWXM4GAOI1eUioj_nP0RiMrnr8MEOprSg7qUU4,854
|
235
237
|
novelwriter/core/__init__.py,sha256=IrBU9r8-lBnwqAD79xtpaDMortj23X-t6zQ1RIWluY4,39
|
236
|
-
novelwriter/core/buildsettings.py,sha256=
|
237
|
-
novelwriter/core/coretools.py,sha256=
|
238
|
-
novelwriter/core/docbuild.py,sha256=
|
239
|
-
novelwriter/core/document.py,sha256=
|
240
|
-
novelwriter/core/index.py,sha256=
|
241
|
-
novelwriter/core/item.py,sha256=
|
242
|
-
novelwriter/core/options.py,sha256=
|
243
|
-
novelwriter/core/project.py,sha256=
|
244
|
-
novelwriter/core/projectdata.py,sha256=
|
245
|
-
novelwriter/core/projectxml.py,sha256=
|
246
|
-
novelwriter/core/sessions.py,sha256=
|
247
|
-
novelwriter/core/spellcheck.py,sha256=
|
248
|
-
novelwriter/core/status.py,sha256=
|
249
|
-
novelwriter/core/storage.py,sha256=
|
250
|
-
novelwriter/core/tohtml.py,sha256=
|
251
|
-
novelwriter/core/tokenizer.py,sha256=
|
252
|
-
novelwriter/core/tomd.py,sha256=
|
253
|
-
novelwriter/core/toodt.py,sha256=
|
254
|
-
novelwriter/core/tree.py,sha256=
|
238
|
+
novelwriter/core/buildsettings.py,sha256=NVN5bbqm1Lr9yxS-cNpHhK3Jc31vqsfZy85SRi2Crig,21134
|
239
|
+
novelwriter/core/coretools.py,sha256=360BQkw7fmvpBYEYnJoshPs0TtyL21-3kxBFcSluF4k,17024
|
240
|
+
novelwriter/core/docbuild.py,sha256=jmy7npRPCsszi0DqbHotonGDZmdb-rAgYyoudYpR-dc,11467
|
241
|
+
novelwriter/core/document.py,sha256=gR_Hzd0Cl60H8Q2eI6FY-irxdCeoh8D0P928EjVPdC8,11405
|
242
|
+
novelwriter/core/index.py,sha256=AH4bz47tkFLMH5IYIenobWpwDdeoMTNxWqJgoAfQ0Ok,47014
|
243
|
+
novelwriter/core/item.py,sha256=a7H2Qj6OGwk8RJu1Zv0XDoftD78gk2UyylfBwLMGPH8,17697
|
244
|
+
novelwriter/core/options.py,sha256=2XvqSYfux5Mk97ZoYsBPVqNM7vuirC4KWAwZ06xy_S8,7340
|
245
|
+
novelwriter/core/project.py,sha256=39R3doBMxGOjNz0kmg5dbiSCtZHXiT_iaEIuocNAv5U,21891
|
246
|
+
novelwriter/core/projectdata.py,sha256=4X45sElHCsldg957bbpSjHJSsSmkZKXT2NDsiwfpjWU,10202
|
247
|
+
novelwriter/core/projectxml.py,sha256=tODZvYOMumj0azj54Q8kXnHTHoTat6fmoIgWbyyfTMA,23002
|
248
|
+
novelwriter/core/sessions.py,sha256=TEUMzkGoOy8uKd0HMwt2XFJicbXllrhy1otJvBu_1a8,4404
|
249
|
+
novelwriter/core/spellcheck.py,sha256=AsVCz9LiKakImIApZvMR7tN0ny2lqdd8xjMTTf7vPpM,7208
|
250
|
+
novelwriter/core/status.py,sha256=09-Gwu90-kvKbaIENVdAW6CrKO6X8pcTIVh6Al_0rWA,8680
|
251
|
+
novelwriter/core/storage.py,sha256=W5Wk0JcrwnZyzaLnOIJQhC4Q77JUA55B83SU6PIEpWs,19239
|
252
|
+
novelwriter/core/tohtml.py,sha256=wGsym2OXioObBarfZIpqWPi_8DOfpYE36K1bcT8IUwk,17205
|
253
|
+
novelwriter/core/tokenizer.py,sha256=WCEdnTCHUxjtubI5vfzfquiiLJtTJvOoLdN2Uq0a3xI,30761
|
254
|
+
novelwriter/core/tomd.py,sha256=aWFqX88Gjp5MnWVTh6b8Db_2MalWkklg2VwzDQ74OCw,7073
|
255
|
+
novelwriter/core/toodt.py,sha256=fc-KJMyr913U34Q3-S8JdA-8Q3mR8iF6MQJzvBGrnJc,56216
|
256
|
+
novelwriter/core/tree.py,sha256=cd7v2uNq4Uxa8yiA-cN-07-cmKd29Pesb-If68eEw8A,18556
|
255
257
|
novelwriter/dialogs/__init__.py,sha256=8a0BuN7-dtzkgPhkwX2KNq8gG2rqpyCAwI-U06KhU5Y,42
|
256
|
-
novelwriter/dialogs/about.py,sha256=
|
257
|
-
novelwriter/dialogs/docmerge.py,sha256=
|
258
|
-
novelwriter/dialogs/docsplit.py,sha256=
|
259
|
-
novelwriter/dialogs/editlabel.py,sha256=
|
260
|
-
novelwriter/dialogs/preferences.py,sha256=
|
261
|
-
novelwriter/dialogs/projdetails.py,sha256=
|
262
|
-
novelwriter/dialogs/projload.py,sha256=
|
263
|
-
novelwriter/dialogs/projsettings.py,sha256=
|
264
|
-
novelwriter/dialogs/quotes.py,sha256=
|
265
|
-
novelwriter/dialogs/updates.py,sha256=
|
266
|
-
novelwriter/dialogs/wordlist.py,sha256=
|
258
|
+
novelwriter/dialogs/about.py,sha256=hQHshqdAawY2Kh522Bpx5QyunP38TeZu7FooMtS3UmI,8630
|
259
|
+
novelwriter/dialogs/docmerge.py,sha256=I3hMoWcmpywUa5TVzzlkylW-A6o_Yq2ZM_0naLrmoig,5927
|
260
|
+
novelwriter/dialogs/docsplit.py,sha256=1nLvT7QsAcXbO4Uh2pjCRc7qTsA1ftD2BgN5f1N08Kk,9081
|
261
|
+
novelwriter/dialogs/editlabel.py,sha256=fPoC9xwP36riwoofkXLDf8KDXxq8gdxSc28TjzPGhaU,2899
|
262
|
+
novelwriter/dialogs/preferences.py,sha256=DIQB5lD_3HF-sF_5K3OmYhcDGDmcnJ-Yvrqyo8ECmd0,38756
|
263
|
+
novelwriter/dialogs/projdetails.py,sha256=hPhR_F5MUOuNXKveLB_kgndgIqiV68JBRvvy_AB0-1M,17996
|
264
|
+
novelwriter/dialogs/projload.py,sha256=4jm_4OGY57UiNCeqmTWxYxnhhGpstpQITUIBkZJ6QPY,10152
|
265
|
+
novelwriter/dialogs/projsettings.py,sha256=KAoocd-vuEZzvnUDd2qVe0M7TErV9Sn-jCcU8nI95tc,24382
|
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
|
267
269
|
novelwriter/extensions/__init__.py,sha256=ybwq7BzrU1QYw7pd-QC9iCKoB6MIh_FysriNkkHOSMo,51
|
268
|
-
novelwriter/extensions/circularprogress.py,sha256=
|
269
|
-
novelwriter/extensions/configlayout.py,sha256=
|
270
|
-
novelwriter/extensions/
|
271
|
-
novelwriter/extensions/
|
272
|
-
novelwriter/extensions/
|
273
|
-
novelwriter/extensions/
|
274
|
-
novelwriter/extensions/
|
275
|
-
novelwriter/extensions/
|
276
|
-
novelwriter/extensions/
|
277
|
-
novelwriter/extensions/
|
270
|
+
novelwriter/extensions/circularprogress.py,sha256=DEKHqeKIa-luF5Jgo8XU0vntvnEnvLEIj2x8QyBKm9A,3736
|
271
|
+
novelwriter/extensions/configlayout.py,sha256=236nRPBFRkBynv8NkQXw8PPyLfLQ6zPsMNY7tZQSxQc,7049
|
272
|
+
novelwriter/extensions/eventfilters.py,sha256=XehDoXwsnCvI1D3uieuYu5J3kxZggdV6Teo7Z0xZw7E,2581
|
273
|
+
novelwriter/extensions/novelselector.py,sha256=peXlvXwcoqcpVvsx7gXPQ93B4np5jmo7URRuH8RmC94,3394
|
274
|
+
novelwriter/extensions/pageddialog.py,sha256=dt_8kTbA2XOQe0YgMEx_R929JaJ7sUBC-dRcBX-fwqA,4087
|
275
|
+
novelwriter/extensions/pagedsidebar.py,sha256=B9HOGYN9qdbJWlQm6ZL9HWXr4PaQiEWLF_8KUrduemo,7319
|
276
|
+
novelwriter/extensions/simpleprogress.py,sha256=__4xXsISyvoOKqEAo5DTJxRYznSiuTPtjp_e0xAsdJw,1788
|
277
|
+
novelwriter/extensions/statusled.py,sha256=C0Lg276PdApN651vUTvy5RXZJ_mOFtCABYJjVJJk4pI,2296
|
278
|
+
novelwriter/extensions/switch.py,sha256=7BMSVJ6NNhQfrYzL9GVOAHCj0Uy7C4DubQATVYlQ6bs,5146
|
279
|
+
novelwriter/extensions/switchbox.py,sha256=J08lAFGigJZdSY4jdKqLvHI-wehSO2A9cA9wr4lYoiM,4131
|
278
280
|
novelwriter/gui/__init__.py,sha256=8afC6rASWwWCc7KS_6s2whwTpboQt_495AvyGMLLatQ,38
|
279
|
-
novelwriter/gui/doceditor.py,sha256=
|
280
|
-
novelwriter/gui/dochighlight.py,sha256=
|
281
|
-
novelwriter/gui/docviewer.py,sha256=
|
282
|
-
novelwriter/gui/docviewerpanel.py,sha256=
|
283
|
-
novelwriter/gui/editordocument.py,sha256=
|
284
|
-
novelwriter/gui/itemdetails.py,sha256=
|
285
|
-
novelwriter/gui/mainmenu.py,sha256=
|
286
|
-
novelwriter/gui/noveltree.py,sha256=
|
287
|
-
novelwriter/gui/outline.py,sha256=
|
288
|
-
novelwriter/gui/projtree.py,sha256=
|
289
|
-
novelwriter/gui/sidebar.py,sha256=
|
290
|
-
novelwriter/gui/statusbar.py,sha256=
|
291
|
-
novelwriter/gui/theme.py,sha256=
|
281
|
+
novelwriter/gui/doceditor.py,sha256=nrFmMbmbL2k2_MR0Vr2LRpdRPw73ZlKXTSkjzAhHwvk,114888
|
282
|
+
novelwriter/gui/dochighlight.py,sha256=5hUprFpZzarCqClmUDOfEgvL-Se9nbtaNEvqVLe_mRI,17496
|
283
|
+
novelwriter/gui/docviewer.py,sha256=ChM-HnwnVz0tft4GfkGToSu8yS672-L1p_ZMMCjCcUE,33847
|
284
|
+
novelwriter/gui/docviewerpanel.py,sha256=O0Bcd4a2zcyYiPO1e71izVoZFSWZzi_SNe6cN0-OJBI,18503
|
285
|
+
novelwriter/gui/editordocument.py,sha256=w--yYT1au3UdPGiVB1ipuariyi9kPFrfJQCVvvNSz2o,3632
|
286
|
+
novelwriter/gui/itemdetails.py,sha256=gbW6wXFdNXKR8swUB6YFiKHJfO76mVxvdC5Beeofkp4,9841
|
287
|
+
novelwriter/gui/mainmenu.py,sha256=LixrgFOUBXBs4gxICCKGHbrsAXoJbDUmpUUxQNTm8bc,38085
|
288
|
+
novelwriter/gui/noveltree.py,sha256=BkmSEV8rZv9pfgpe4QwZhSD4YlSyQf784MeTAzZ0Tv8,28500
|
289
|
+
novelwriter/gui/outline.py,sha256=Bw8MTFnjoO1wn8a2o7pPX9AgVNf8g9ARVU8G6N4YXW4,40005
|
290
|
+
novelwriter/gui/projtree.py,sha256=EAcaLXgpVrAeChuAVJCsmx4spPBaGuzBpMskWf2ZynY,73433
|
291
|
+
novelwriter/gui/sidebar.py,sha256=EyxmGx2dbbw0xMs5ewF7RrV4b4Z_zccaCrb7qvvGRSE,6634
|
292
|
+
novelwriter/gui/statusbar.py,sha256=6JKqMDJunUC8-jnBgn0aulU6ILw-PX9rcjr4YQbH9ns,9339
|
293
|
+
novelwriter/gui/theme.py,sha256=2oFmzM7YrYm7v1RMgy6ZRwTkcf-Ovv1AABnHACbsymk,29443
|
292
294
|
novelwriter/tools/__init__.py,sha256=1MVOieA7WQw_xjH7d944hko81I4OM7gPAdSomN8zz3M,40
|
293
|
-
novelwriter/tools/dictionaries.py,sha256=
|
294
|
-
novelwriter/tools/lipsum.py,sha256=
|
295
|
-
novelwriter/tools/manusbuild.py,sha256=
|
296
|
-
novelwriter/tools/manuscript.py,sha256=
|
297
|
-
novelwriter/tools/manussettings.py,sha256=
|
298
|
-
novelwriter/tools/projwizard.py,sha256=
|
299
|
-
novelwriter/tools/writingstats.py,sha256=
|
300
|
-
novelWriter-2.
|
301
|
-
novelWriter-2.
|
302
|
-
novelWriter-2.
|
303
|
-
novelWriter-2.
|
304
|
-
novelWriter-2.
|
305
|
-
novelWriter-2.
|
295
|
+
novelwriter/tools/dictionaries.py,sha256=qIEXOoFZ5sqHMcoya6rnAQ0fUnrWrC4OLBHGlnjXw4E,9170
|
296
|
+
novelwriter/tools/lipsum.py,sha256=hKp5siA5TC_KGDufTGy0j0fqSjSwPDdiNvOAuVsMImk,4784
|
297
|
+
novelwriter/tools/manusbuild.py,sha256=Jg0B8MgGI_wqDtzkJvOVD2VB_ow5GotFqsEIbG03RHo,13773
|
298
|
+
novelwriter/tools/manuscript.py,sha256=ccrTJZ6lTDfTlF183WjS0YlJKVTTpUToOXvw7e59oMc,29755
|
299
|
+
novelwriter/tools/manussettings.py,sha256=FTXoqw911TNrBhmpA0KEPOlS_MMT_Ui6LwkVfdjrqwQ,48982
|
300
|
+
novelwriter/tools/projwizard.py,sha256=6QXLl0Hslj-oA5W2OKHoRKq0-CAr5TlarEXoPLQJJ4I,16433
|
301
|
+
novelwriter/tools/writingstats.py,sha256=Q7BHwN1qxc7YuiGL-XPR7L2yLVw0CbKdE5tGsFTX_Sg,22609
|
302
|
+
novelWriter-2.2.1.dist-info/LICENSE.md,sha256=2GirkkLrPfQqx7fACKRJjtKJUegKc8067erGvcDVQHM,32197
|
303
|
+
novelWriter-2.2.1.dist-info/METADATA,sha256=0K0w1nFRiTteYbyZ7mpU21rcs5-HLvs7STGZt4mrhfo,2582
|
304
|
+
novelWriter-2.2.1.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
305
|
+
novelWriter-2.2.1.dist-info/entry_points.txt,sha256=lN-EspQDlSi_RtYp_OVKtyRsbwZEjPuaux0DK_9i3Ts,98
|
306
|
+
novelWriter-2.2.1.dist-info/top_level.txt,sha256=wFFEucjEeNC_Ap5ULBuEutg5a1Uc0-YO9uFT5L2naNI,12
|
307
|
+
novelWriter-2.2.1.dist-info/RECORD,,
|
novelwriter/__init__.py
CHANGED
@@ -6,7 +6,7 @@ File History:
|
|
6
6
|
Created: 2018-09-22 [0.0.1]
|
7
7
|
|
8
8
|
This file is a part of novelWriter
|
9
|
-
Copyright 2018–
|
9
|
+
Copyright 2018–2024, Veronica Berglyd Olsen
|
10
10
|
|
11
11
|
This program is free software: you can redistribute it and/or modify
|
12
12
|
it under the terms of the GNU General Public License as published by
|
@@ -37,14 +37,14 @@ from novelwriter.shared import SharedData
|
|
37
37
|
# ============
|
38
38
|
|
39
39
|
__package__ = "novelwriter"
|
40
|
-
__copyright__ = "Copyright 2018–
|
40
|
+
__copyright__ = "Copyright 2018–2024, Veronica Berglyd Olsen"
|
41
41
|
__license__ = "GPLv3"
|
42
42
|
__author__ = "Veronica Berglyd Olsen"
|
43
43
|
__maintainer__ = "Veronica Berglyd Olsen"
|
44
44
|
__email__ = "code@vkbo.net"
|
45
|
-
__version__ = "2.2
|
46
|
-
__hexversion__ = "
|
47
|
-
__date__ = "
|
45
|
+
__version__ = "2.2.1"
|
46
|
+
__hexversion__ = "0x020201f0"
|
47
|
+
__date__ = "2024-01-27"
|
48
48
|
__status__ = "Stable"
|
49
49
|
__domain__ = "novelwriter.io"
|
50
50
|
|
@@ -76,6 +76,7 @@ def main(sysArgs: list | None = None):
|
|
76
76
|
"config=",
|
77
77
|
"data=",
|
78
78
|
"testmode",
|
79
|
+
"meminfo"
|
79
80
|
]
|
80
81
|
|
81
82
|
helpMsg = (
|
@@ -92,6 +93,7 @@ def main(sysArgs: list | None = None):
|
|
92
93
|
" -v, --version Print program version and exit.\n"
|
93
94
|
" --info Print additional runtime information.\n"
|
94
95
|
" --debug Print debug output. Includes --info.\n"
|
96
|
+
" --meminfo Show memory usage information in the status bar.\n"
|
95
97
|
" --style= Sets Qt5 style flag. Defaults to 'Fusion'.\n"
|
96
98
|
" --config= Alternative config file.\n"
|
97
99
|
" --data= Alternative user data path.\n"
|
@@ -127,6 +129,7 @@ def main(sysArgs: list | None = None):
|
|
127
129
|
elif inOpt == "--info":
|
128
130
|
logLevel = logging.INFO
|
129
131
|
elif inOpt == "--debug":
|
132
|
+
CONFIG.isDebug = True
|
130
133
|
logLevel = logging.DEBUG
|
131
134
|
logFormat = "[{asctime:}] {filename:>17}:{lineno:<4d} {levelname:8} {message:}"
|
132
135
|
elif inOpt == "--style":
|
@@ -137,6 +140,8 @@ def main(sysArgs: list | None = None):
|
|
137
140
|
dataPath = inArg
|
138
141
|
elif inOpt == "--testmode":
|
139
142
|
testMode = True
|
143
|
+
elif inOpt == "--meminfo":
|
144
|
+
CONFIG.memInfo = True
|
140
145
|
|
141
146
|
# Setup Logging
|
142
147
|
pkgLogger = logging.getLogger(__package__)
|
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": "Sinopsis",
|
3
|
+
"Short Description": "Breve Descripción",
|
3
4
|
"Comment": "Comentario",
|
4
5
|
"Notes": "Notas",
|
6
|
+
"Tag": "Etiqueta",
|
7
|
+
"Point of View": "Punto de Vista",
|
8
|
+
"Focus": "Foco",
|
9
|
+
"Characters": "Personajes",
|
10
|
+
"Plot": "Argumento",
|
11
|
+
"Timeline": "Línea de Tiempo",
|
12
|
+
"Locations": "Lugares",
|
13
|
+
"Objects": "Objetos",
|
14
|
+
"Entities": "Entidades",
|
15
|
+
"Custom": "Otros",
|
5
16
|
"0": "Cero",
|
6
17
|
"1": "Uno",
|
7
18
|
"2": "Dos",
|
@@ -1,7 +1,18 @@
|
|
1
1
|
{
|
2
2
|
"Synopsis": "Synopsis",
|
3
|
+
"Short Description": "Description sommaire",
|
3
4
|
"Comment": "Commentaire",
|
4
5
|
"Notes": "Notes",
|
6
|
+
"Tag": "Étiquette",
|
7
|
+
"Point of View": "Point de vue",
|
8
|
+
"Focus": "Focus",
|
9
|
+
"Characters": "Personnages",
|
10
|
+
"Plot": "Intrigue",
|
11
|
+
"Timeline": "Chronologie",
|
12
|
+
"Locations": "Lieux",
|
13
|
+
"Objects": "Objets",
|
14
|
+
"Entities": "Entités",
|
15
|
+
"Custom": "Personnalisé",
|
5
16
|
"0": "Zero",
|
6
17
|
"1": "Un",
|
7
18
|
"2": "Deux",
|
@@ -1,7 +1,18 @@
|
|
1
1
|
{
|
2
2
|
"Synopsis": "Sinossi",
|
3
|
+
"Short Description": "Breve descrizione",
|
3
4
|
"Comment": "Commento",
|
4
5
|
"Notes": "Note",
|
6
|
+
"Tag": "Etichetta",
|
7
|
+
"Point of View": "Punto di vista",
|
8
|
+
"Focus": "Focus",
|
9
|
+
"Characters": "Personaggi",
|
10
|
+
"Plot": "Trama",
|
11
|
+
"Timeline": "Sequenza temporale",
|
12
|
+
"Locations": "Luoghi",
|
13
|
+
"Objects": "Oggetti",
|
14
|
+
"Entities": "Enti",
|
15
|
+
"Custom": "Personalizzato",
|
5
16
|
"0": "Zero",
|
6
17
|
"1": "Uno",
|
7
18
|
"2": "Due",
|
@@ -1,7 +1,18 @@
|
|
1
1
|
{
|
2
2
|
"Synopsis": "概要",
|
3
|
+
"Short Description": "简短描述",
|
3
4
|
"Comment": "注释",
|
4
5
|
"Notes": "笔记",
|
6
|
+
"Tag": "标签",
|
7
|
+
"Point of View": "视角",
|
8
|
+
"Focus": "聚焦",
|
9
|
+
"Characters": "角色",
|
10
|
+
"Plot": "情节",
|
11
|
+
"Timeline": "时间线",
|
12
|
+
"Locations": "地点",
|
13
|
+
"Objects": "物品",
|
14
|
+
"Entities": "条目",
|
15
|
+
"Custom": "自定义",
|
5
16
|
"0": "零",
|
6
17
|
"1": "一",
|
7
18
|
"2": "二",
|
@@ -47,10 +47,11 @@ down = typ_chevron-down.svg
|
|
47
47
|
edit = typ_pencil.svg
|
48
48
|
export = typ_export.svg
|
49
49
|
fmt_bold = nw_tb-bold.svg
|
50
|
+
fmt_bold-md = nw_tb-bold-md.svg
|
50
51
|
fmt_italic = nw_tb-italic.svg
|
51
|
-
|
52
|
-
fmt_mode-sc = nw_tb-shortcode.svg
|
52
|
+
fmt_italic-md = nw_tb-italic-md.svg
|
53
53
|
fmt_strike = nw_tb-strike.svg
|
54
|
+
fmt_strike-md = nw_tb-strike-md.svg
|
54
55
|
fmt_subscript = nw_tb-subscript.svg
|
55
56
|
fmt_superscript = nw_tb-superscript.svg
|
56
57
|
fmt_underline = nw_tb-underline.svg
|
@@ -0,0 +1,4 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<svg width="24" height="24" version="1.1" viewBox="0 0 6.35 6.35" xmlns="http://www.w3.org/2000/svg">
|
3
|
+
<path d="m1.3672 5.5562v-4.7625h1.6289q0.37252 0 0.68662 0.058435 0.32139 0.051131 0.55513 0.18991 0.24104 0.13878 0.37252 0.36522 0.13878 0.22644 0.13878 0.56975 0 0.1607-0.043826 0.32139t-0.12417 0.29948q-0.080349 0.13878-0.19721 0.24835-0.10957 0.10957-0.25565 0.1607v0.029218q0.18261 0.043827 0.33601 0.13878 0.1534 0.087653 0.27027 0.22644 0.11687 0.13878 0.18261 0.3287 0.065739 0.18261 0.065739 0.42365 0 0.36522-0.14608 0.62818-0.13878 0.26295-0.39444 0.43826-0.24835 0.168-0.58435 0.25565-0.33601 0.080349-0.72313 0.080349zm1.0737-2.8561h0.50401q0.39444 0 0.56975-0.1534 0.18261-0.1534 0.18261-0.40905 0-0.27757-0.18261-0.39444t-0.56244-0.11687h-0.51131zm0 2.0233h0.60626q0.88383 0 0.88383-0.64279 0-0.31408-0.21914-0.44557-0.21914-0.13878-0.6647-0.13878h-0.60626z" fill="#aeaeae" stroke-opacity=".78039" stroke-width=".54782"/>
|
4
|
+
</svg>
|
@@ -1,4 +1,6 @@
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
2
2
|
<svg width="24" height="24" version="1.1" viewBox="0 0 6.35 6.35" xmlns="http://www.w3.org/2000/svg">
|
3
|
-
<path d="m1.
|
3
|
+
<path d="m1.568 5.2917v-4.2333h1.4479q0.33113 0 0.61033 0.051942 0.28568 0.04545 0.49345 0.16881 0.21426 0.12336 0.33113 0.32464 0.12336 0.20128 0.12336 0.50644 0 0.14284-0.038957 0.28568-0.038956 0.14284-0.11037 0.2662-0.071421 0.12336-0.1753 0.22076-0.097396 0.097396-0.22724 0.14284v0.025972q0.16232 0.038957 0.29868 0.12336 0.13636 0.077914 0.24024 0.20128 0.10388 0.12336 0.16232 0.29218 0.058435 0.16232 0.058435 0.37658 0 0.32464-0.12985 0.55838-0.12336 0.23373-0.35061 0.38956-0.22076 0.14933-0.51942 0.22724-0.29868 0.071422-0.64278 0.071422zm0.9544-2.5388h0.44801q0.35061 0 0.50644-0.13636 0.16232-0.13636 0.16232-0.3636 0-0.24673-0.16232-0.35061-0.16232-0.10388-0.49995-0.10388h-0.4545zm0 1.7985h0.5389q0.78563 0 0.78563-0.57137 0-0.27918-0.19479-0.39606-0.19479-0.12336-0.59084-0.12336h-0.5389z" fill="#aeaeae" stroke-opacity=".78039" stroke-width=".48695"/>
|
4
|
+
<path d="m4.9555 5.5562v-0.43195h0.54619v-3.8986h-0.54619v-0.43195h1.1299v4.7624z" fill="#69c" stroke-width="1.1186"/>
|
5
|
+
<path d="m0.26458 5.5562v-4.7624h1.1299v0.43195h-0.54083v3.8986h0.54083v0.43195z" fill="#69c" stroke-width="1.1186"/>
|
4
6
|
</svg>
|
@@ -0,0 +1,4 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<svg width="24" height="24" version="1.1" viewBox="0 0 6.35 6.35" xmlns="http://www.w3.org/2000/svg">
|
3
|
+
<path d="m2.3084 5.5562 0.94666-4.7625h0.78646l-0.94666 4.7625z" fill="#aeaeae" stroke-opacity=".78039" stroke-width=".54615"/>
|
4
|
+
</svg>
|
@@ -1,4 +1,6 @@
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
2
2
|
<svg width="24" height="24" version="1.1" viewBox="0 0 6.35 6.35" xmlns="http://www.w3.org/2000/svg">
|
3
|
-
<path d="m2.
|
3
|
+
<path d="m2.417 5.2917 0.84148-4.2333h0.69908l-0.84148 4.2333z" fill="#aeaeae" stroke-opacity=".78039" stroke-width=".48547"/>
|
4
|
+
<path d="m4.9555 5.5562v-0.43195h0.54619v-3.8986h-0.54619v-0.43195h1.1299v4.7624z" fill="#69c" stroke-width="1.1186"/>
|
5
|
+
<path d="m0.26458 5.5562v-4.7624h1.1299v0.43195h-0.54083v3.8986h0.54083v0.43195z" fill="#69c" stroke-width="1.1186"/>
|
4
6
|
</svg>
|
@@ -0,0 +1,4 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<svg width="24" height="24" version="1.1" viewBox="0 0 6.35 6.35" xmlns="http://www.w3.org/2000/svg">
|
3
|
+
<path d="m3.1785 5.5562q-0.46361 0-0.89912-0.17561-0.42848-0.17561-0.75863-0.49873l0.47766-0.55492q0.24585 0.2318 0.56195 0.37931 0.3161 0.14049 0.63219 0.14049 0.39336 0 0.59707-0.16156t0.20371-0.42848q0-0.14049-0.056194-0.23883-0.04917-0.098341-0.14751-0.16858-0.091316-0.077267-0.22478-0.14049-0.12644-0.063219-0.28097-0.12644l-0.63219-0.27395q-0.16858-0.070243-0.33717-0.17561-0.16156-0.10537-0.29502-0.25288t-0.21775-0.34419q-0.077268-0.19668-0.077268-0.44956 0-0.27395 0.11239-0.50575 0.11941-0.23883 0.32312-0.41444t0.48468-0.27395q0.288-0.098341 0.62517-0.098341 0.40039 0 0.77268 0.16156 0.37229 0.15454 0.63921 0.42146l-0.41444 0.5198q-0.22478-0.18263-0.46361-0.288t-0.53385-0.10537q-0.33014 0-0.52683 0.14751-0.19668 0.14049-0.19668 0.39336 0 0.13346 0.056194 0.2318 0.063219 0.091316 0.16156 0.16858 0.10537 0.070244 0.23883 0.13346 0.13346 0.056194 0.27395 0.11239l0.62516 0.2599q0.20371 0.084291 0.37229 0.19668 0.16858 0.11239 0.288 0.2599 0.12644 0.14751 0.19668 0.34419 0.070244 0.18966 0.070244 0.44253 0 0.28097-0.11239 0.52683-0.11239 0.24585-0.33015 0.43551-0.21073 0.18263-0.5198 0.29502-0.30205 0.10536-0.68838 0.10536zm-2.3848-2.6458h4.7625v0.52917h-4.7625z" fill="#aeaeae" stroke-opacity=".78039" stroke-width=".52683"/>
|
4
|
+
</svg>
|
@@ -1,4 +1,6 @@
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
2
2
|
<svg width="24" height="24" version="1.1" viewBox="0 0 6.35 6.35" xmlns="http://www.w3.org/2000/svg">
|
3
|
-
<path d="m3.
|
3
|
+
<path d="m3.1782 5.2917q-0.4121 0-0.79922-0.1561-0.38087-0.1561-0.67434-0.44331l0.42459-0.49326q0.21853 0.20604 0.49951 0.33716 0.28098 0.12488 0.56195 0.12488 0.34965 0 0.53073-0.14361 0.18108-0.14361 0.18108-0.38087 0-0.12488-0.04995-0.21229-0.043707-0.087414-0.13112-0.14985-0.08117-0.068682-0.1998-0.12488-0.11239-0.056194-0.24975-0.11239l-0.56195-0.24351q-0.14985-0.062438-0.29971-0.1561-0.14361-0.093662-0.26224-0.22478-0.11863-0.13112-0.19356-0.30595-0.068682-0.17483-0.068682-0.39961 0-0.24351 0.099902-0.44955 0.10614-0.21229 0.28722-0.36839 0.18108-0.1561 0.43083-0.24351 0.256-0.087414 0.55571-0.087414 0.3559 0 0.68683 0.14361 0.33092 0.13737 0.56819 0.37463l-0.36839 0.46204q-0.1998-0.16234-0.4121-0.256-0.21229-0.093662-0.47453-0.093662-0.29346 0-0.46829 0.13112-0.17483 0.12488-0.17483 0.34965 0 0.11863 0.04995 0.20604 0.056194 0.08117 0.14361 0.14985 0.093662 0.062439 0.21229 0.11863 0.11863 0.04995 0.24351 0.099902l0.5557 0.23102q0.18108 0.074925 0.33092 0.17483 0.14985 0.099902 0.256 0.23102 0.11239 0.13112 0.17483 0.30595 0.062439 0.16859 0.062439 0.39336 0 0.24975-0.099902 0.46829-0.099902 0.21853-0.29347 0.38712-0.18732 0.16234-0.46204 0.26224-0.26849 0.093653-0.61189 0.093653zm-2.1198-2.3518h4.2333v0.47037h-4.2333z" fill="#aeaeae" stroke-opacity=".78039" stroke-width=".46829"/>
|
4
|
+
<path d="m4.9555 5.5562v-0.43195h0.54619v-3.8986h-0.54619v-0.43195h1.1299v4.7624z" fill="#69c" stroke-width="1.1186"/>
|
5
|
+
<path d="m0.26458 5.5562v-4.7624h1.1299v0.43195h-0.54083v3.8986h0.54083v0.43195z" fill="#69c" stroke-width="1.1186"/>
|
4
6
|
</svg>
|