novelWriter 2.5b1__py3-none-any.whl → 2.5.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.5b1.dist-info → novelWriter-2.5.1.dist-info}/METADATA +1 -1
- {novelWriter-2.5b1.dist-info → novelWriter-2.5.1.dist-info}/RECORD +77 -75
- {novelWriter-2.5b1.dist-info → novelWriter-2.5.1.dist-info}/WHEEL +1 -1
- novelwriter/__init__.py +3 -3
- 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_pl_PL.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_pl_PL.json +116 -0
- novelwriter/assets/i18n/project_pt_BR.json +74 -74
- novelwriter/assets/manual.pdf +0 -0
- novelwriter/assets/sample.zip +0 -0
- novelwriter/assets/text/credits_en.htm +52 -44
- novelwriter/assets/themes/cyberpunk_night.conf +1 -0
- novelwriter/assets/themes/default_dark.conf +1 -0
- novelwriter/assets/themes/default_light.conf +1 -0
- novelwriter/assets/themes/dracula.conf +1 -0
- novelwriter/assets/themes/solarized_dark.conf +1 -0
- novelwriter/assets/themes/solarized_light.conf +1 -0
- novelwriter/common.py +12 -3
- novelwriter/config.py +67 -15
- novelwriter/constants.py +8 -10
- novelwriter/core/buildsettings.py +5 -3
- novelwriter/core/coretools.py +3 -1
- novelwriter/core/docbuild.py +1 -0
- novelwriter/core/project.py +15 -4
- novelwriter/core/status.py +4 -1
- novelwriter/core/storage.py +6 -1
- novelwriter/core/tohtml.py +69 -29
- novelwriter/core/tokenizer.py +83 -14
- novelwriter/core/toodt.py +48 -21
- novelwriter/core/toqdoc.py +37 -21
- novelwriter/dialogs/about.py +10 -15
- novelwriter/dialogs/docmerge.py +16 -16
- novelwriter/dialogs/docsplit.py +16 -16
- novelwriter/dialogs/editlabel.py +6 -8
- novelwriter/dialogs/preferences.py +106 -93
- novelwriter/dialogs/projectsettings.py +16 -20
- novelwriter/dialogs/quotes.py +9 -5
- novelwriter/dialogs/wordlist.py +6 -6
- novelwriter/enum.py +4 -5
- novelwriter/extensions/configlayout.py +38 -4
- novelwriter/extensions/modified.py +22 -3
- novelwriter/extensions/{circularprogress.py → progressbars.py} +26 -3
- novelwriter/extensions/statusled.py +39 -23
- novelwriter/gui/doceditor.py +22 -13
- novelwriter/gui/dochighlight.py +30 -39
- novelwriter/gui/docviewer.py +24 -15
- novelwriter/gui/docviewerpanel.py +7 -0
- novelwriter/gui/mainmenu.py +11 -11
- novelwriter/gui/outline.py +4 -3
- novelwriter/gui/projtree.py +85 -77
- novelwriter/gui/search.py +10 -1
- novelwriter/gui/statusbar.py +25 -29
- novelwriter/gui/theme.py +3 -0
- novelwriter/guimain.py +139 -124
- novelwriter/shared.py +19 -8
- novelwriter/text/patterns.py +113 -0
- novelwriter/tools/dictionaries.py +2 -8
- novelwriter/tools/lipsum.py +8 -12
- novelwriter/tools/manusbuild.py +9 -9
- novelwriter/tools/manuscript.py +10 -5
- novelwriter/tools/manussettings.py +7 -3
- novelwriter/tools/noveldetails.py +10 -10
- novelwriter/tools/welcome.py +19 -10
- novelwriter/tools/writingstats.py +3 -3
- novelwriter/types.py +5 -2
- novelwriter/extensions/simpleprogress.py +0 -53
- {novelWriter-2.5b1.dist-info → novelWriter-2.5.1.dist-info}/LICENSE.md +0 -0
- {novelWriter-2.5b1.dist-info → novelWriter-2.5.1.dist-info}/entry_points.txt +0 -0
- {novelWriter-2.5b1.dist-info → novelWriter-2.5.1.dist-info}/top_level.txt +0 -0
@@ -1,24 +1,25 @@
|
|
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=
|
1
|
+
novelwriter/__init__.py,sha256=vYFXHDZoxu12zt7mAW1DuW9_JOAzTnBbagm6dSEa9Ok,7552
|
2
|
+
novelwriter/common.py,sha256=qg7jqTVqLOk4zlhKkFoLgYfBdtrBweZYkZeNn7OXX5k,18494
|
3
|
+
novelwriter/config.py,sha256=cUL4S-JOKhxEes--NxCiV84NpanvVbcbW_K5v74dS3w,39081
|
4
|
+
novelwriter/constants.py,sha256=y-UjNZxtU2lzn0Ji9lKiNU3233RmoJuK-3JWHT6GIvc,21368
|
5
|
+
novelwriter/enum.py,sha256=c1IS9rmpWMtqnMzftpWoQFtfRqcK9VMTO0vbMsf7pLM,3501
|
6
6
|
novelwriter/error.py,sha256=iIx1OzyXTT7Ngk2mXW_5c0YqVdFBD0NIkUFgAXNNBlM,6813
|
7
|
-
novelwriter/guimain.py,sha256=
|
8
|
-
novelwriter/shared.py,sha256=
|
9
|
-
novelwriter/types.py,sha256=
|
10
|
-
novelwriter/assets/manual.pdf,sha256=
|
11
|
-
novelwriter/assets/sample.zip,sha256=
|
12
|
-
novelwriter/assets/i18n/nw_de_DE.qm,sha256=
|
13
|
-
novelwriter/assets/i18n/nw_en_US.qm,sha256=
|
14
|
-
novelwriter/assets/i18n/nw_es_419.qm,sha256=
|
15
|
-
novelwriter/assets/i18n/nw_fr_FR.qm,sha256
|
16
|
-
novelwriter/assets/i18n/nw_it_IT.qm,sha256=
|
17
|
-
novelwriter/assets/i18n/nw_ja_JP.qm,sha256=
|
18
|
-
novelwriter/assets/i18n/nw_nb_NO.qm,sha256=
|
19
|
-
novelwriter/assets/i18n/nw_nl_NL.qm,sha256=
|
20
|
-
novelwriter/assets/i18n/
|
21
|
-
novelwriter/assets/i18n/
|
7
|
+
novelwriter/guimain.py,sha256=i3qIrDKlwsaF0BgaTzldHWPOozs1wYpmvwQTVro06_c,53662
|
8
|
+
novelwriter/shared.py,sha256=LMgMXZK28LJUnRDbcTqTp4ZDVCKBt3EJYZMnIdu4R18,15906
|
9
|
+
novelwriter/types.py,sha256=tV-XFc10wsk7zH__S2dEuEfidI6_adgOetpAVbnmJmI,4691
|
10
|
+
novelwriter/assets/manual.pdf,sha256=yuVhyRjEjBMV21AX75Y7-e2pDEwXoBBcK2F19JD9B2c,2723685
|
11
|
+
novelwriter/assets/sample.zip,sha256=esBK85OoJRv4odOE6QFuQqV1qfPVMT_6J39gaW2Q4ns,27805
|
12
|
+
novelwriter/assets/i18n/nw_de_DE.qm,sha256=__e0mtl0hfBX61eICSrJhR4mY0r7W9IkI5fYCwvLrYw,100554
|
13
|
+
novelwriter/assets/i18n/nw_en_US.qm,sha256=Mueo40jL6hBXcV0Vxac-Jd-GAsLASSqEV_7W96sFkZ8,93304
|
14
|
+
novelwriter/assets/i18n/nw_es_419.qm,sha256=eHiRXnf86BPH5MGvJuo8bR_nBaf-HULE-nRW76o9-yU,103131
|
15
|
+
novelwriter/assets/i18n/nw_fr_FR.qm,sha256=mB2TCRNjttTFoC34iGbri5OVt2ygCNtxPS5g48CA-HA,103616
|
16
|
+
novelwriter/assets/i18n/nw_it_IT.qm,sha256=Lg7F4YjU3FE1axKalwcoF9kFvEXS0KDqVNYqHQqhVi4,103350
|
17
|
+
novelwriter/assets/i18n/nw_ja_JP.qm,sha256=ILDwq_8kHCiorjZabSbUYer9xB9q7hf-NQyAlReVKf8,77169
|
18
|
+
novelwriter/assets/i18n/nw_nb_NO.qm,sha256=g2raFt2Lw5RcE0IJM1_f7GJsqt8G_uSv7m6sD6zFe_0,95946
|
19
|
+
novelwriter/assets/i18n/nw_nl_NL.qm,sha256=SnEtdqHaSb8xWA4-EpnWxXD_uK8BeBs44I32AwlST3M,99906
|
20
|
+
novelwriter/assets/i18n/nw_pl_PL.qm,sha256=Em13jYHYnTbLZp_JaodgZntmcpxBrvbitOZhM8ZQXig,98702
|
21
|
+
novelwriter/assets/i18n/nw_pt_BR.qm,sha256=EXqtpkEPafPipTd0rCBN6cQ5SlqVyeMPwyMfgpTKjMs,101680
|
22
|
+
novelwriter/assets/i18n/nw_zh_CN.qm,sha256=poSDKRXapJ8zHBmiRdA85KcIN1nm6gnowDMlpoJwAKE,69647
|
22
23
|
novelwriter/assets/i18n/project_de_DE.json,sha256=85ud9rxRHyXm85QDmW_LKcUE8h0L1Bvukaf5Tjt-wpg,2818
|
23
24
|
novelwriter/assets/i18n/project_en_GB.json,sha256=7c9W2YJAELCSwx4zN_2qYZ3xsGncinCrGNhaj_FVkxk,2511
|
24
25
|
novelwriter/assets/i18n/project_en_US.json,sha256=EcQAVEiQgRL3qobuzkPTfOWIxAc3Om-tA7nXUFFXEdI,2483
|
@@ -29,7 +30,8 @@ novelwriter/assets/i18n/project_ja_JP.json,sha256=8P03f2D9o2TlSxFU5ugRa-DJDeDZr_
|
|
29
30
|
novelwriter/assets/i18n/project_nb_NO.json,sha256=e8E9c188KRPJfgZa298hDiaLEuhjHMxbRMaIF8HaVew,2298
|
30
31
|
novelwriter/assets/i18n/project_nl_NL.json,sha256=qUEEjLMRtvt9VuNmjb_qOVCXqUCENHskCEyp5YlPMc4,2683
|
31
32
|
novelwriter/assets/i18n/project_nn_NO.json,sha256=7ZfmtFWHcDMiLVqdOEDHQWHbpoC_bv5ESmf_-CoYiks,2250
|
32
|
-
novelwriter/assets/i18n/
|
33
|
+
novelwriter/assets/i18n/project_pl_PL.json,sha256=msXu3rNhJ19ytVespoXQ95nZ-mFis5rlLeCPK4A3zS8,3461
|
34
|
+
novelwriter/assets/i18n/project_pt_BR.json,sha256=FDxIeSlf3v8AcrWfgwk7UOMRDmb2hWdDoabsBq5rkL8,2763
|
33
35
|
novelwriter/assets/i18n/project_ru_RU.json,sha256=F4QkD6VVDCtGdil7uoXCmuczvUpe9tv-1L-3Eyc8sKE,3699
|
34
36
|
novelwriter/assets/i18n/project_zh_CN.json,sha256=cfl0TsnbISYUvygOw015y0x0REDG97xR0yjyJ85Jm34,2322
|
35
37
|
novelwriter/assets/icons/none.svg,sha256=NRN9vMzohg7Ner71GwPthrCG0uA81TpY8UmKb8-L-pM,251
|
@@ -258,80 +260,80 @@ novelwriter/assets/syntax/tomorrow_night.conf,sha256=mWPneIV_6tszLEK4-Eo-kcJmUbr
|
|
258
260
|
novelwriter/assets/syntax/tomorrow_night_blue.conf,sha256=L42gcekFfNpCCB45m9Lhzmz8Y6Lvbpik3AADi_1Aao8,1549
|
259
261
|
novelwriter/assets/syntax/tomorrow_night_bright.conf,sha256=h8_775Ed8hl2XhfCoxAY2kT43vi-UvG8UHik1aI4eRw,1554
|
260
262
|
novelwriter/assets/syntax/tomorrow_night_eighties.conf,sha256=stO_xH5RzMN0jaZeYr53LVXbpqSmIXALBFGVLlJBDLA,1557
|
261
|
-
novelwriter/assets/text/credits_en.htm,sha256=
|
263
|
+
novelwriter/assets/text/credits_en.htm,sha256=jeEMRXuD-ZpGgRPtS3oZQ4HdIe6pwSnB3ZifvYiZLjU,2904
|
262
264
|
novelwriter/assets/text/lipsum.txt,sha256=sGA6AC_p4jrUifxLxy3cSODeRwkpBNXDPGgX6YRTm2s,62937
|
263
|
-
novelwriter/assets/themes/cyberpunk_night.conf,sha256=
|
265
|
+
novelwriter/assets/themes/cyberpunk_night.conf,sha256=FvG_YVfEnMwJV1XUDEdpi9qoHQ5sdyVEaR_Y3WfWNA8,923
|
264
266
|
novelwriter/assets/themes/default.conf,sha256=K0LZ64lODpCtUg3pISTAP4UKvEYMvPkmIYN9RDEaWwk,72
|
265
|
-
novelwriter/assets/themes/default_dark.conf,sha256=
|
266
|
-
novelwriter/assets/themes/default_light.conf,sha256=
|
267
|
-
novelwriter/assets/themes/dracula.conf,sha256=
|
268
|
-
novelwriter/assets/themes/solarized_dark.conf,sha256=
|
269
|
-
novelwriter/assets/themes/solarized_light.conf,sha256=
|
270
|
-
novelwriter/core/buildsettings.py,sha256=
|
271
|
-
novelwriter/core/coretools.py,sha256=
|
272
|
-
novelwriter/core/docbuild.py,sha256=
|
267
|
+
novelwriter/assets/themes/default_dark.conf,sha256=obPCLVOXL1Zp973DbbROldyQOoUPGWlPKLbetZqMZe8,989
|
268
|
+
novelwriter/assets/themes/default_light.conf,sha256=zNjrtkRs2hLEcefFt3uys2-tei3Lxdth-yThO9InNz4,992
|
269
|
+
novelwriter/assets/themes/dracula.conf,sha256=pUvu7FS1nRPj3PyU3NZMR0WSb5sIa0oLpSa2XTzsh98,1425
|
270
|
+
novelwriter/assets/themes/solarized_dark.conf,sha256=7dDjs8aiFuAjl--hqMJQEExrfCgAapiPY82CL6aAo-I,916
|
271
|
+
novelwriter/assets/themes/solarized_light.conf,sha256=psCPVWcjAKB5y8H_E_h5zYUifxh5YpdFdBzxFofIHa0,918
|
272
|
+
novelwriter/core/buildsettings.py,sha256=cx-yjeja6VeYUdVZwNhLr6Ka_EXT8xCTwzQtv1Cmrec,22689
|
273
|
+
novelwriter/core/coretools.py,sha256=mItCKIHMMu1zrW3q2-FhF_lVfzjOKhbPtTEaXLt6U-o,21048
|
274
|
+
novelwriter/core/docbuild.py,sha256=h1jCFgkzyuoDgusjvuctBQpyDdNWBCHL2CNwQN0aEeM,14236
|
273
275
|
novelwriter/core/document.py,sha256=T8FlxyEMlR3t2HNE92InseWUMylWFTMnr2fP-Ge5LQc,12130
|
274
276
|
novelwriter/core/index.py,sha256=soGv-bDdAHk77ubqr1OfftGtyB1aJAJNODyfOq2nZm8,48450
|
275
277
|
novelwriter/core/item.py,sha256=0p_o3eCf8ZK30MiUR1rd1fDXb63lqNB4lHZeLMA6Wys,17635
|
276
278
|
novelwriter/core/options.py,sha256=8yAQoTkDhTCZY7EGg29Fq7Lj4n4Hd2i-Kx7TlgnausM,7372
|
277
|
-
novelwriter/core/project.py,sha256=
|
279
|
+
novelwriter/core/project.py,sha256=tdD6GrwicCttvlM2jt0Tx8A9VpfFi5g4sTsM2h497R4,22066
|
278
280
|
novelwriter/core/projectdata.py,sha256=bt-LDNJsM2K4VwTcyZU_V2KOUZJFRKrNXNIwbU1v3Eo,9799
|
279
281
|
novelwriter/core/projectxml.py,sha256=dbgm2ryPCOa1BFsFay-6vEK2itE8TWYRUiwCBpPp59g,22013
|
280
282
|
novelwriter/core/sessions.py,sha256=V9eBXaUMcXTZjYXR5dgi6E14COIlcLIkNwS6pDrn75U,4405
|
281
283
|
novelwriter/core/spellcheck.py,sha256=MwkRPp3MJa2X-6yRWX6Rc-sq2vLsbLnjNnyUpAbRFiE,7176
|
282
|
-
novelwriter/core/status.py,sha256=
|
283
|
-
novelwriter/core/storage.py,sha256=
|
284
|
-
novelwriter/core/tohtml.py,sha256=
|
285
|
-
novelwriter/core/tokenizer.py,sha256=
|
284
|
+
novelwriter/core/status.py,sha256=FW20GK6_gxsYCiD7ZDg_gGIgp6yw3y1PS5mBN5HlARo,11592
|
285
|
+
novelwriter/core/storage.py,sha256=mNM9EMW0VRMwEkmTKnzotPVdJk4tJDDUNAHNH9yG5mw,20926
|
286
|
+
novelwriter/core/tohtml.py,sha256=NxM4c52q2ZFNW-XdHOI9L5lqTSiw9J5KZAELhdmN_9I,19211
|
287
|
+
novelwriter/core/tokenizer.py,sha256=Q7sfWpJxTSkcnj3SiSmQGr8JTXUlH-TGkwzfKe1pfsk,47712
|
286
288
|
novelwriter/core/tomarkdown.py,sha256=sZG64PLyTjDuIxnPQVMdcMSF-obsp4C06B1dUKhlbHU,7925
|
287
|
-
novelwriter/core/toodt.py,sha256=
|
288
|
-
novelwriter/core/toqdoc.py,sha256
|
289
|
+
novelwriter/core/toodt.py,sha256=Hrb6FJkwf2wwcKE6f7lw5o0PZqKsf1TWqvJbrJWrijU,62529
|
290
|
+
novelwriter/core/toqdoc.py,sha256=p8_4WwwXcnEuPw2XsU4Xq76YTyT2JMk7NQR1arCjVd8,15500
|
289
291
|
novelwriter/core/tree.py,sha256=mmOB7kN0tjWda_AdT1WuZyFrewuc6uRAlqCfX6opwek,18681
|
290
|
-
novelwriter/dialogs/about.py,sha256=
|
291
|
-
novelwriter/dialogs/docmerge.py,sha256=
|
292
|
-
novelwriter/dialogs/docsplit.py,sha256=
|
293
|
-
novelwriter/dialogs/editlabel.py,sha256=
|
294
|
-
novelwriter/dialogs/preferences.py,sha256=
|
295
|
-
novelwriter/dialogs/projectsettings.py,sha256=
|
296
|
-
novelwriter/dialogs/quotes.py,sha256=
|
297
|
-
novelwriter/dialogs/wordlist.py,sha256=
|
298
|
-
novelwriter/extensions/
|
299
|
-
novelwriter/extensions/configlayout.py,sha256=_ihrLuwjqd0ZtuuKJjKpqzk7tuDX7o4y26cDPyAHkl8,9438
|
292
|
+
novelwriter/dialogs/about.py,sha256=0iBYkifACc5vZj4KwG0G2Dll_Wp4acAHUfNTto74MFU,4755
|
293
|
+
novelwriter/dialogs/docmerge.py,sha256=HtJvmu56CGb_G27XGRgF3kl0jPR_14SBVsOKv_UyVX8,6286
|
294
|
+
novelwriter/dialogs/docsplit.py,sha256=nPb7U68vtZ5yuJtUIr-2yTWCfADCtK4T1h7LgL0Hx8c,9281
|
295
|
+
novelwriter/dialogs/editlabel.py,sha256=cs8ztrK1Gi3lEZozvs978dNAR6rnlV8cWr9dZArD51I,2963
|
296
|
+
novelwriter/dialogs/preferences.py,sha256=HSH8JrJUi3r_bBiTkkLtLUbsCIZpMI3LECOWDHpqhMU,38050
|
297
|
+
novelwriter/dialogs/projectsettings.py,sha256=EfMcfCDGn59XuzkJGuuKhS9UFdYTNIxTJPEiQB71zGg,27525
|
298
|
+
novelwriter/dialogs/quotes.py,sha256=JCgoz9I8HepxYYVBXOzQac6aFpzNMF4CRdw4CnAnuNM,4727
|
299
|
+
novelwriter/dialogs/wordlist.py,sha256=yuQebLRuasVk2QUm2zWGn7ZzuWM4lFGyXz0egQPyILw,8511
|
300
|
+
novelwriter/extensions/configlayout.py,sha256=rQfK0kAwSZn30WEtqJKP8RoNWOjVP4C3gYTAXXkm5u0,10443
|
300
301
|
novelwriter/extensions/eventfilters.py,sha256=mTU_sMQPOEocRfvLcwQyXUpkm314tH32WsID61ss1CI,2522
|
301
|
-
novelwriter/extensions/modified.py,sha256=
|
302
|
+
novelwriter/extensions/modified.py,sha256=kXntkvw1ZWeRxseZyA444bV3O9RbmbErtaDDafu0DwY,5756
|
302
303
|
novelwriter/extensions/novelselector.py,sha256=etVtoDkHGJIP4ab__vStJQCREKYt5sWLfK1vyuO3hLI,3794
|
303
304
|
novelwriter/extensions/pagedsidebar.py,sha256=Brgl_d8KXnWWJov-sTkj9tMQu7Xrz8v7rXcnvpAaRK8,7232
|
304
|
-
novelwriter/extensions/
|
305
|
-
novelwriter/extensions/statusled.py,sha256=
|
305
|
+
novelwriter/extensions/progressbars.py,sha256=BpJHycboSNGYWIfAEMqIy1Qxf32Cg8TeWM3hogzakTs,4628
|
306
|
+
novelwriter/extensions/statusled.py,sha256=QdgkMSMKMfQRM9kiEXCuH-wbrq_AH9Sh8zBvYfvJE6Q,2943
|
306
307
|
novelwriter/extensions/switch.py,sha256=4kXJ3EHEhaivj1D69iBi46hkkPBGAt-Rt5EjVK3V4Aw,4299
|
307
308
|
novelwriter/extensions/switchbox.py,sha256=5tCiFWkT9WF9xh2c__BnNAJHFLw2nRso3fJZfwzDqRE,4198
|
308
309
|
novelwriter/extensions/versioninfo.py,sha256=R2_U6B678be0WNxbnhUntpxR5PnZVGf6eeyENp-S-Xo,5035
|
309
|
-
novelwriter/gui/doceditor.py,sha256=
|
310
|
-
novelwriter/gui/dochighlight.py,sha256=
|
311
|
-
novelwriter/gui/docviewer.py,sha256=
|
312
|
-
novelwriter/gui/docviewerpanel.py,sha256=
|
310
|
+
novelwriter/gui/doceditor.py,sha256=Cv9_sMKpSozKrIPusvcLDzlgD6rr8JxDHkzIoApOfMc,113720
|
311
|
+
novelwriter/gui/dochighlight.py,sha256=4JNWQkfaEc0p-EvRRkbBWwQdrFqVotgremzu2WWw9hA,19463
|
312
|
+
novelwriter/gui/docviewer.py,sha256=DzCyIwJusRAF8Uw93pAQEgk8PJ6H_yaH9TGFzPmcie8,32280
|
313
|
+
novelwriter/gui/docviewerpanel.py,sha256=CCCzSc-Ol5jCmoEfpZ-RD-tcwzkyM7g_iBSQNeljGgE,20040
|
313
314
|
novelwriter/gui/editordocument.py,sha256=5_v-gwZ9-CwJHGs7lFUGdY3paR7F1PW2FjD6_fbq5wY,4087
|
314
315
|
novelwriter/gui/itemdetails.py,sha256=0U3hghK4Vue3AwtLBRY6YJMN3vOCjatvvzXhJDn4UXo,9688
|
315
|
-
novelwriter/gui/mainmenu.py,sha256=
|
316
|
+
novelwriter/gui/mainmenu.py,sha256=PaJjO38DQ72UL9hMyvSbh2I1daxOZBSbJhNsov771fw,38908
|
316
317
|
novelwriter/gui/noveltree.py,sha256=rAU_f6efrt5uAsew6jGqo3X3E3ggrZaoQh2prm13wD8,27635
|
317
|
-
novelwriter/gui/outline.py,sha256=
|
318
|
-
novelwriter/gui/projtree.py,sha256=
|
319
|
-
novelwriter/gui/search.py,sha256=
|
318
|
+
novelwriter/gui/outline.py,sha256=Id6hSEe1iLls6qPckX-b3U21rPOOndlfe7r4VsNC3G8,42312
|
319
|
+
novelwriter/gui/projtree.py,sha256=iMsMf8IcaV3Dvsbx3thWvWffHFqM5kTWP2AC69Fsvg0,78027
|
320
|
+
novelwriter/gui/search.py,sha256=HnS0_vOg15f3woXeZ8MS_ZAblx9aFIuN7BSa195tY1M,13262
|
320
321
|
novelwriter/gui/sidebar.py,sha256=jBkOinx69lwt4m1GovQ7nF44lF-g_SOk3yTT96KlbFY,6212
|
321
|
-
novelwriter/gui/statusbar.py,sha256
|
322
|
-
novelwriter/gui/theme.py,sha256=
|
322
|
+
novelwriter/gui/statusbar.py,sha256=-rF6bIJXGKFRswVKWE1c5In5x3sX4iXMfp0AGxZxt0c,9053
|
323
|
+
novelwriter/gui/theme.py,sha256=M1ZbEKAZcU-INROiYyanUsDFNHcAZurArpEDvmg8870,31974
|
323
324
|
novelwriter/text/counting.py,sha256=tkWKWS_scPYmBG8xLpIL1KLIjyF2HOlkrloQa5PZmDc,4304
|
324
|
-
novelwriter/
|
325
|
-
novelwriter/tools/
|
326
|
-
novelwriter/tools/
|
327
|
-
novelwriter/tools/
|
328
|
-
novelwriter/tools/
|
329
|
-
novelwriter/tools/
|
330
|
-
novelwriter/tools/
|
331
|
-
novelwriter/tools/
|
332
|
-
|
333
|
-
novelWriter-2.
|
334
|
-
novelWriter-2.
|
335
|
-
novelWriter-2.
|
336
|
-
novelWriter-2.
|
337
|
-
novelWriter-2.
|
325
|
+
novelwriter/text/patterns.py,sha256=sEBPf9buLtJvYeoYquZzDcSC6gfKBHIUPGbD31y5H-g,3843
|
326
|
+
novelwriter/tools/dictionaries.py,sha256=92GNCSEOK1EI7t2DiayT8p7nzKW7LwxJJz98F6kn3Vg,9243
|
327
|
+
novelwriter/tools/lipsum.py,sha256=NcmoxWzrbEybh_w1FzxuxHmeTr8N03OrxjxsPWEbae4,4794
|
328
|
+
novelwriter/tools/manusbuild.py,sha256=c3NdpkAqUPTKN2BpGX_xleFtZPi1G8uv80XBZEp27Bw,14071
|
329
|
+
novelwriter/tools/manuscript.py,sha256=77BaTqfytdrqgUxnCLUUVPxx1wScu289xfyBhcHGX-M,37955
|
330
|
+
novelwriter/tools/manussettings.py,sha256=Uz7QpCb2l_SftpQ5N7x0qHdq41-6fvTRHv7bxWvDLWg,56145
|
331
|
+
novelwriter/tools/noveldetails.py,sha256=xNpTf5-hFu-K_flPhMLug6tNboKvDWV7OEetpHx6Lsc,18481
|
332
|
+
novelwriter/tools/welcome.py,sha256=KLSlBTih_HOTJ3nmyv4IU4ec8XNJDL5AwXMZ6amqmIw,28027
|
333
|
+
novelwriter/tools/writingstats.py,sha256=f5nbmE5V9VsQ8qi_DlvfF5yVIupEbVDavtuMbTzU7IA,22753
|
334
|
+
novelWriter-2.5.1.dist-info/LICENSE.md,sha256=2GirkkLrPfQqx7fACKRJjtKJUegKc8067erGvcDVQHM,32197
|
335
|
+
novelWriter-2.5.1.dist-info/METADATA,sha256=3Q60pUI0VndtXaFOSOuyw1dqmgz0xEZOfD16QGub_SQ,2532
|
336
|
+
novelWriter-2.5.1.dist-info/WHEEL,sha256=Wyh-_nZ0DJYolHNn1_hMa4lM7uDedD_RGVwbmTjyItk,91
|
337
|
+
novelWriter-2.5.1.dist-info/entry_points.txt,sha256=YDUG1w361LtLsjD3YhxoTDTwM17JA5-nigjC6j5C74A,45
|
338
|
+
novelWriter-2.5.1.dist-info/top_level.txt,sha256=wFFEucjEeNC_Ap5ULBuEutg5a1Uc0-YO9uFT5L2naNI,12
|
339
|
+
novelWriter-2.5.1.dist-info/RECORD,,
|
novelwriter/__init__.py
CHANGED
@@ -47,9 +47,9 @@ __license__ = "GPLv3"
|
|
47
47
|
__author__ = "Veronica Berglyd Olsen"
|
48
48
|
__maintainer__ = "Veronica Berglyd Olsen"
|
49
49
|
__email__ = "code@vkbo.net"
|
50
|
-
__version__ = "2.
|
51
|
-
__hexversion__ = "
|
52
|
-
__date__ = "2024-
|
50
|
+
__version__ = "2.5.1"
|
51
|
+
__hexversion__ = "0x020501f0"
|
52
|
+
__date__ = "2024-07-28"
|
53
53
|
__status__ = "Stable"
|
54
54
|
__domain__ = "novelwriter.io"
|
55
55
|
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,116 @@
|
|
1
|
+
{
|
2
|
+
"Synopsis": "Streszczenie",
|
3
|
+
"Short Description": "Krótki opis",
|
4
|
+
"Comment": "Komentarz",
|
5
|
+
"Notes": "Notatki",
|
6
|
+
"Tag": "Znacznik",
|
7
|
+
"Point of View": "Punkt widzenia",
|
8
|
+
"Focus": "Skupienie",
|
9
|
+
"Characters": "Postacie",
|
10
|
+
"Plot": "Fabuła",
|
11
|
+
"Timeline": "Oś czasu",
|
12
|
+
"Locations": "Miejsca",
|
13
|
+
"Objects": "Obiekty",
|
14
|
+
"Entities": "Podmioty",
|
15
|
+
"Custom": "Różne",
|
16
|
+
"0": "zero",
|
17
|
+
"1": "pierwszy",
|
18
|
+
"2": "drugi",
|
19
|
+
"3": "trzeci",
|
20
|
+
"4": "czwarty",
|
21
|
+
"5": "piąty",
|
22
|
+
"6": "szósty",
|
23
|
+
"7": "siódmy",
|
24
|
+
"8": "ósmy",
|
25
|
+
"9": "dziewiąty",
|
26
|
+
"10": "dziesiąty",
|
27
|
+
"11": "jedenasty",
|
28
|
+
"12": "dwunasty",
|
29
|
+
"13": "trzynasty",
|
30
|
+
"14": "czternasty",
|
31
|
+
"15": "piętnasty",
|
32
|
+
"16": "szesnasty",
|
33
|
+
"17": "siedemnasty",
|
34
|
+
"18": "osiemnasty",
|
35
|
+
"19": "dziewiętnasty",
|
36
|
+
"20": "dwudziesty",
|
37
|
+
"21": "dwudziesty pierwszy",
|
38
|
+
"22": "dwudziesty drugi",
|
39
|
+
"23": "dwudziesty Trzeci",
|
40
|
+
"24": "dwudziesty czwarty",
|
41
|
+
"25": "dwudziesty piąty",
|
42
|
+
"26": "dwudziesty szósty",
|
43
|
+
"27": "dwudziesty siódmy",
|
44
|
+
"28": "dwudziesty ósmy",
|
45
|
+
"29": "dwudziesty dziewiąty",
|
46
|
+
"30": "trzydziesty",
|
47
|
+
"31": "trzydziesty pierwszy",
|
48
|
+
"32": "trzydziesty drugi",
|
49
|
+
"33": "trzydziesty trzeci",
|
50
|
+
"34": "trzydziesty czwarty",
|
51
|
+
"35": "trzydziesty piąty",
|
52
|
+
"36": "trzydziesty szósty",
|
53
|
+
"37": "trzydziesty siódmy",
|
54
|
+
"38": "trzydziesty ósmy",
|
55
|
+
"39": "trzydziesty dziewiaty",
|
56
|
+
"40": "czterdziesty",
|
57
|
+
"41": "czterdziesty pierwszy",
|
58
|
+
"42": "czterdziesty drugi",
|
59
|
+
"43": "czterdziesty Trzeci",
|
60
|
+
"44": "czterdziesty czwarty",
|
61
|
+
"45": "czterdziesty piąty",
|
62
|
+
"46": "czterdziesty szósty",
|
63
|
+
"47": "czterdziesty siódmy",
|
64
|
+
"48": "czterdziesty ósmy",
|
65
|
+
"49": "czterdziesty dziewiąty",
|
66
|
+
"50": "pięćdziesiąty",
|
67
|
+
"51": "pięćdziesiąty pierwszy",
|
68
|
+
"52": "pięćdziesiąty drugi",
|
69
|
+
"53": "pięćdziesiąty trzeci",
|
70
|
+
"54": "pięćdziesiąty czwarty",
|
71
|
+
"55": "pięćdziesiąty piąty",
|
72
|
+
"56": "pięćdziesiąty szósty",
|
73
|
+
"57": "pięćdziesiąty siódmy",
|
74
|
+
"58": "pięćdziesiąty ósmy",
|
75
|
+
"59": "pięćdziesiąty dziewiąty",
|
76
|
+
"60": "sześćdziesiąty",
|
77
|
+
"61": "sześćdziesiąty pierwszy",
|
78
|
+
"62": "sześćdziesiąty drugi",
|
79
|
+
"63": "sześćdziesiąty trzeci",
|
80
|
+
"64": "sześćdziesiąty czwarty",
|
81
|
+
"65": "sześćdziesiąty piąty",
|
82
|
+
"66": "sześćdziesiąty szósty",
|
83
|
+
"67": "sześćdziesiąty siódmy",
|
84
|
+
"68": "sześćdziesiąty ósmy",
|
85
|
+
"69": "sześćdziesiąty dziewiąty",
|
86
|
+
"70": "siedemdziesiąty",
|
87
|
+
"71": "siedemdziesiąty pierwszy",
|
88
|
+
"72": "siedemdziesiąty drugi",
|
89
|
+
"73": "siedemdziesiąty trzeci",
|
90
|
+
"74": "siedemdziesiąty czwarty",
|
91
|
+
"75": "siedemdziesiąty piąty",
|
92
|
+
"76": "siedemdziesiąty szósty",
|
93
|
+
"77": "siedemdziesiąty siódmy",
|
94
|
+
"78": "siedemdziesiąty ósmy",
|
95
|
+
"79": "siedemdziesiąty dziewiąty",
|
96
|
+
"80": "osiemdziesiąty",
|
97
|
+
"81": "osiemdziesiąty pierwszy",
|
98
|
+
"82": "osiemdziesiąty drugi",
|
99
|
+
"83": "osiemdziesiąty trzeci",
|
100
|
+
"84": "osiemdziesiąty czwarty",
|
101
|
+
"85": "osiemdziesiąty piąty",
|
102
|
+
"86": "osiemdziesiąty szósty",
|
103
|
+
"87": "osiemdziesiąty siódmy",
|
104
|
+
"88": "osiemdziesiąty ósmy",
|
105
|
+
"89": "osiemdziesiąty dziewiąty",
|
106
|
+
"90": "dziewięćdziesiąty",
|
107
|
+
"91": "dziewięćdziesiąty pierwszy",
|
108
|
+
"92": "dziewięćdziesiąty drugi",
|
109
|
+
"93": "dziewięćdziesiąty trzeci",
|
110
|
+
"94": "dziewięćdziesiąty czwarty",
|
111
|
+
"95": "dziewięćdziesiąty piąty",
|
112
|
+
"96": "dziewięćdziesiąty szósty",
|
113
|
+
"97": "dziewięćdziesiąty siódmy",
|
114
|
+
"98": "dziewięćdziesiąty ósmy",
|
115
|
+
"99": "dziewięćdziesiąty dziewiąty"
|
116
|
+
}
|
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"Synopsis": "Sinopse",
|
3
3
|
"Short Description": "Descrição breve",
|
4
|
-
"Comment": "
|
4
|
+
"Comment": "Comentário",
|
5
5
|
"Notes": "Notas",
|
6
6
|
"Tag": "Etiqueta",
|
7
7
|
"Point of View": "Ponto de vista",
|
@@ -30,87 +30,87 @@
|
|
30
30
|
"14": "Quatorze",
|
31
31
|
"15": "Quinze",
|
32
32
|
"16": "Dezesseis",
|
33
|
-
"17": "
|
33
|
+
"17": "Dezessete",
|
34
34
|
"18": "Dezoito",
|
35
35
|
"19": "Dezenove",
|
36
36
|
"20": "Vinte",
|
37
|
-
"21": "Vinte e
|
38
|
-
"22": "Vinte e
|
39
|
-
"23": "Vinte e
|
40
|
-
"24": "Vinte e
|
41
|
-
"25": "Vinte e
|
42
|
-
"26": "Vinte e
|
43
|
-
"27": "Vinte e
|
44
|
-
"28": "Vinte e
|
45
|
-
"29": "Vinte e
|
37
|
+
"21": "Vinte e um",
|
38
|
+
"22": "Vinte e dois",
|
39
|
+
"23": "Vinte e três",
|
40
|
+
"24": "Vinte e quatro",
|
41
|
+
"25": "Vinte e cinco",
|
42
|
+
"26": "Vinte e seis",
|
43
|
+
"27": "Vinte e sete",
|
44
|
+
"28": "Vinte e oito",
|
45
|
+
"29": "Vinte e nove",
|
46
46
|
"30": "Trinta",
|
47
|
-
"31": "Trinta e
|
48
|
-
"32": "Trinta e
|
49
|
-
"33": "Trinta e
|
50
|
-
"34": "Trinta e
|
51
|
-
"35": "Trinta e
|
52
|
-
"36": "Trinta e
|
53
|
-
"37": "Trinta e
|
54
|
-
"38": "Trinta e
|
55
|
-
"39": "Trinta e
|
47
|
+
"31": "Trinta e um",
|
48
|
+
"32": "Trinta e dois",
|
49
|
+
"33": "Trinta e três",
|
50
|
+
"34": "Trinta e quatro",
|
51
|
+
"35": "Trinta e cinco",
|
52
|
+
"36": "Trinta e seis",
|
53
|
+
"37": "Trinta e sete",
|
54
|
+
"38": "Trinta e oito",
|
55
|
+
"39": "Trinta e nove",
|
56
56
|
"40": "Quarenta",
|
57
|
-
"41": "Quarenta e
|
58
|
-
"42": "Quarenta e
|
59
|
-
"43": "Quarenta e
|
60
|
-
"44": "Quarenta e
|
61
|
-
"45": "Quarenta e
|
62
|
-
"46": "Quarenta e
|
63
|
-
"47": "Quarenta e
|
64
|
-
"48": "Quarenta e
|
65
|
-
"49": "Quarenta e
|
57
|
+
"41": "Quarenta e um",
|
58
|
+
"42": "Quarenta e dois",
|
59
|
+
"43": "Quarenta e três",
|
60
|
+
"44": "Quarenta e quatro",
|
61
|
+
"45": "Quarenta e cinco",
|
62
|
+
"46": "Quarenta e seis",
|
63
|
+
"47": "Quarenta e sete",
|
64
|
+
"48": "Quarenta e oito",
|
65
|
+
"49": "Quarenta e nove",
|
66
66
|
"50": "Cinquenta",
|
67
|
-
"51": "Cinquenta e
|
68
|
-
"52": "Cinquenta e
|
69
|
-
"53": "Cinquenta e
|
70
|
-
"54": "Cinquenta e
|
71
|
-
"55": "Cinquenta e
|
72
|
-
"56": "Cinquenta e
|
73
|
-
"57": "Cinquenta e
|
74
|
-
"58": "Cinquenta e
|
75
|
-
"59": "Cinquenta e
|
67
|
+
"51": "Cinquenta e um",
|
68
|
+
"52": "Cinquenta e dois",
|
69
|
+
"53": "Cinquenta e três",
|
70
|
+
"54": "Cinquenta e quatro",
|
71
|
+
"55": "Cinquenta e cinco",
|
72
|
+
"56": "Cinquenta e seis",
|
73
|
+
"57": "Cinquenta e sete",
|
74
|
+
"58": "Cinquenta e oito",
|
75
|
+
"59": "Cinquenta e nove",
|
76
76
|
"60": "Sessenta",
|
77
|
-
"61": "Sessenta e
|
78
|
-
"62": "Sessenta e
|
79
|
-
"63": "Sessenta e
|
80
|
-
"64": "Sessenta e
|
81
|
-
"65": "Sessenta e
|
82
|
-
"66": "Sessenta e
|
83
|
-
"67": "Sessenta e
|
84
|
-
"68": "Sessenta e
|
85
|
-
"69": "Sessenta e
|
77
|
+
"61": "Sessenta e um",
|
78
|
+
"62": "Sessenta e dois",
|
79
|
+
"63": "Sessenta e três",
|
80
|
+
"64": "Sessenta e quatro",
|
81
|
+
"65": "Sessenta e cinco",
|
82
|
+
"66": "Sessenta e seis",
|
83
|
+
"67": "Sessenta e sete",
|
84
|
+
"68": "Sessenta e oito",
|
85
|
+
"69": "Sessenta e nove",
|
86
86
|
"70": "Setenta",
|
87
|
-
"71": "Setenta e
|
88
|
-
"72": "Setenta e
|
89
|
-
"73": "Setenta e
|
90
|
-
"74": "Setenta e
|
91
|
-
"75": "Setenta e
|
92
|
-
"76": "Setenta e
|
93
|
-
"77": "Setenta e
|
94
|
-
"78": "Setenta e
|
95
|
-
"79": "Setenta e
|
87
|
+
"71": "Setenta e um",
|
88
|
+
"72": "Setenta e dois",
|
89
|
+
"73": "Setenta e três",
|
90
|
+
"74": "Setenta e quatro",
|
91
|
+
"75": "Setenta e cinco",
|
92
|
+
"76": "Setenta e seis",
|
93
|
+
"77": "Setenta e sete",
|
94
|
+
"78": "Setenta e oito",
|
95
|
+
"79": "Setenta e nove",
|
96
96
|
"80": "Oitenta",
|
97
|
-
"81": "Oitenta e
|
98
|
-
"82": "Oitenta e
|
99
|
-
"83": "Oitenta e
|
100
|
-
"84": "Oitenta e
|
101
|
-
"85": "Oitenta e
|
102
|
-
"86": "Oitenta e
|
103
|
-
"87": "Oitenta e
|
104
|
-
"88": "Oitenta e
|
105
|
-
"89": "Oitenta e
|
97
|
+
"81": "Oitenta e um",
|
98
|
+
"82": "Oitenta e dois",
|
99
|
+
"83": "Oitenta e três",
|
100
|
+
"84": "Oitenta e quatro",
|
101
|
+
"85": "Oitenta e cinco",
|
102
|
+
"86": "Oitenta e seis",
|
103
|
+
"87": "Oitenta e sete",
|
104
|
+
"88": "Oitenta e oito",
|
105
|
+
"89": "Oitenta e nove",
|
106
106
|
"90": "Noventa",
|
107
|
-
"91": "Noventa e
|
108
|
-
"92": "Noventa e
|
109
|
-
"93": "Noventa e
|
110
|
-
"94": "Noventa e
|
111
|
-
"95": "Noventa e
|
112
|
-
"96": "Noventa e
|
113
|
-
"97": "Noventa e
|
114
|
-
"98": "Noventa e
|
115
|
-
"99": "Noventa e
|
107
|
+
"91": "Noventa e um",
|
108
|
+
"92": "Noventa e dois",
|
109
|
+
"93": "Noventa e três",
|
110
|
+
"94": "Noventa e quatro",
|
111
|
+
"95": "Noventa e cinco",
|
112
|
+
"96": "Noventa e seis",
|
113
|
+
"97": "Noventa e sete",
|
114
|
+
"98": "Noventa e oito",
|
115
|
+
"99": "Noventa e nove"
|
116
116
|
}
|
novelwriter/assets/manual.pdf
CHANGED
Binary file
|
novelwriter/assets/sample.zip
CHANGED
Binary file
|