novelWriter 2.6b2__py3-none-any.whl → 2.6rc1__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.6b2.dist-info → novelWriter-2.6rc1.dist-info}/METADATA +2 -2
- {novelWriter-2.6b2.dist-info → novelWriter-2.6rc1.dist-info}/RECORD +95 -95
- {novelWriter-2.6b2.dist-info → novelWriter-2.6rc1.dist-info}/WHEEL +1 -1
- novelwriter/__init__.py +4 -4
- 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_ru_RU.qm +0 -0
- novelwriter/assets/i18n/nw_zh_CN.qm +0 -0
- novelwriter/assets/manual.pdf +0 -0
- novelwriter/assets/sample.zip +0 -0
- novelwriter/common.py +1 -1
- novelwriter/config.py +4 -1
- novelwriter/constants.py +36 -36
- novelwriter/core/buildsettings.py +1 -1
- novelwriter/core/coretools.py +1 -1
- novelwriter/core/docbuild.py +1 -1
- novelwriter/core/document.py +1 -1
- novelwriter/core/index.py +1 -1
- novelwriter/core/item.py +1 -1
- novelwriter/core/itemmodel.py +1 -1
- novelwriter/core/options.py +1 -1
- novelwriter/core/project.py +1 -1
- novelwriter/core/projectdata.py +8 -2
- novelwriter/core/projectxml.py +1 -1
- novelwriter/core/sessions.py +1 -1
- novelwriter/core/spellcheck.py +1 -1
- novelwriter/core/status.py +17 -3
- novelwriter/core/storage.py +1 -1
- novelwriter/core/tree.py +1 -1
- novelwriter/dialogs/about.py +1 -1
- novelwriter/dialogs/docmerge.py +1 -1
- novelwriter/dialogs/docsplit.py +1 -1
- novelwriter/dialogs/editlabel.py +1 -1
- novelwriter/dialogs/preferences.py +2 -2
- novelwriter/dialogs/projectsettings.py +146 -96
- novelwriter/dialogs/quotes.py +1 -1
- novelwriter/dialogs/wordlist.py +11 -10
- novelwriter/enum.py +1 -1
- novelwriter/error.py +2 -2
- novelwriter/extensions/configlayout.py +1 -1
- novelwriter/extensions/eventfilters.py +1 -1
- novelwriter/extensions/modified.py +17 -5
- novelwriter/extensions/novelselector.py +1 -1
- novelwriter/extensions/pagedsidebar.py +4 -4
- novelwriter/extensions/progressbars.py +4 -4
- novelwriter/extensions/statusled.py +3 -3
- novelwriter/extensions/switch.py +3 -3
- novelwriter/extensions/switchbox.py +1 -1
- novelwriter/extensions/versioninfo.py +1 -1
- novelwriter/formats/shared.py +1 -1
- novelwriter/formats/todocx.py +1 -1
- novelwriter/formats/tohtml.py +1 -1
- novelwriter/formats/tokenizer.py +5 -5
- novelwriter/formats/tomarkdown.py +1 -1
- novelwriter/formats/toodt.py +1 -1
- novelwriter/formats/toqdoc.py +1 -1
- novelwriter/formats/toraw.py +1 -1
- novelwriter/gui/doceditor.py +4 -2
- novelwriter/gui/dochighlight.py +1 -1
- novelwriter/gui/docviewer.py +1 -1
- novelwriter/gui/docviewerpanel.py +1 -1
- novelwriter/gui/editordocument.py +1 -1
- novelwriter/gui/itemdetails.py +3 -3
- novelwriter/gui/mainmenu.py +1 -1
- novelwriter/gui/noveltree.py +1 -1
- novelwriter/gui/outline.py +8 -9
- novelwriter/gui/projtree.py +5 -7
- novelwriter/gui/search.py +2 -9
- novelwriter/gui/sidebar.py +1 -1
- novelwriter/gui/statusbar.py +20 -3
- novelwriter/gui/theme.py +1 -1
- novelwriter/guimain.py +1 -5
- novelwriter/shared.py +1 -1
- novelwriter/text/counting.py +1 -1
- novelwriter/text/patterns.py +1 -1
- novelwriter/tools/dictionaries.py +1 -1
- novelwriter/tools/lipsum.py +1 -1
- novelwriter/tools/manusbuild.py +1 -1
- novelwriter/tools/manuscript.py +7 -7
- novelwriter/tools/manussettings.py +1 -1
- novelwriter/tools/noveldetails.py +1 -1
- novelwriter/tools/welcome.py +1 -1
- novelwriter/tools/writingstats.py +1 -1
- novelwriter/types.py +2 -2
- {novelWriter-2.6b2.dist-info → novelWriter-2.6rc1.dist-info}/LICENSE.md +0 -0
- {novelWriter-2.6b2.dist-info → novelWriter-2.6rc1.dist-info}/entry_points.txt +0 -0
- {novelWriter-2.6b2.dist-info → novelWriter-2.6rc1.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.2
|
2
2
|
Name: novelWriter
|
3
|
-
Version: 2.
|
3
|
+
Version: 2.6rc1
|
4
4
|
Summary: A markdown-like text editor for planning and writing novels
|
5
5
|
Author-email: Veronica Berglyd Olsen <code@vkbo.net>
|
6
6
|
License: GNU General Public License v3
|
@@ -1,26 +1,26 @@
|
|
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/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/nw_pl_PL.qm,sha256=
|
21
|
-
novelwriter/assets/i18n/nw_pt_BR.qm,sha256=
|
22
|
-
novelwriter/assets/i18n/nw_ru_RU.qm,sha256=
|
23
|
-
novelwriter/assets/i18n/nw_zh_CN.qm,sha256=
|
1
|
+
novelwriter/__init__.py,sha256=FpUhjOmmT5CoBcmp4xnXISjYAfc-zg5aGTeni8uXVQw,8844
|
2
|
+
novelwriter/common.py,sha256=i5kxxzOOg0W60uZ8w1HhwlgEUYKqv60F1JTlu4KEjrY,21751
|
3
|
+
novelwriter/config.py,sha256=ckvg0ufgBPz69qq-9Tk-RHoDE6vAG5tx4Sc9CJhA4qA,39789
|
4
|
+
novelwriter/constants.py,sha256=sPAjs_SwLlr5YVDvXrU2ZeJo6m7732oilnWY3jK7KuY,25948
|
5
|
+
novelwriter/enum.py,sha256=wbYnMgViyvuWEqeAGpNJDnk7AfnXDtxLey8Y4WbWkUo,3713
|
6
|
+
novelwriter/error.py,sha256=Pq4ogfb4GlqTBC698o9bJ537Ce5kXzyNw2JZxMGmZJM,6849
|
7
|
+
novelwriter/guimain.py,sha256=MqYuge0OPjfgyysjcQs_pdnSXcwAZq-DxnJJcvpVLBU,49628
|
8
|
+
novelwriter/shared.py,sha256=MaIQuDHX3XvW4SbhGaDlfI6YFn_yxzeq92IKi1ri810,17511
|
9
|
+
novelwriter/types.py,sha256=-qQovORltSnUMWn5Hcjv2FJV18t_DumGkggjch_oFRE,5098
|
10
|
+
novelwriter/assets/manual.pdf,sha256=vUvjZCWBpWsgbw8K7H9JWBH7sB7eWAVLmXvzx-cjxd8,2735354
|
11
|
+
novelwriter/assets/sample.zip,sha256=h9OHiTX2pyJxORdaFp3qzRbklJWzmg7jVMOh3UAXqe0,28036
|
12
|
+
novelwriter/assets/i18n/nw_de_DE.qm,sha256=jMjb_fnKDaBWX-qso1Ci76N0d5j_zQ0uu7c0NgVWp40,97177
|
13
|
+
novelwriter/assets/i18n/nw_en_US.qm,sha256=a7Q5U9C5vFq8xk-xK3h-XFnWmG_85OHnUdScYDrZNCg,90203
|
14
|
+
novelwriter/assets/i18n/nw_es_419.qm,sha256=LCNGv7RUpgTCWkA6oOyfPckGl-sKO1hmdGl_naQO8AY,99798
|
15
|
+
novelwriter/assets/i18n/nw_fr_FR.qm,sha256=BwHQadfuvJyx2koKC2McMWrjJI7KQTEYq8mLe6n1wfI,100161
|
16
|
+
novelwriter/assets/i18n/nw_it_IT.qm,sha256=ezbPAzRdh0sG4M4U3gcfldD4yJNtCZK6uowqK4SHMx4,99883
|
17
|
+
novelwriter/assets/i18n/nw_ja_JP.qm,sha256=lrpFS5T1mW3dPcAGRYLcB3vcMBl5MbAqgOtbbao2clk,74622
|
18
|
+
novelwriter/assets/i18n/nw_nb_NO.qm,sha256=bCeJnRX-e_KHEahvMVLxiu4PLW3V-AO3M1oKjRtXKRE,92747
|
19
|
+
novelwriter/assets/i18n/nw_nl_NL.qm,sha256=WCnVcavSwehklScJQTU-AhogQzrtN1IHYT2cK5B-9gg,96703
|
20
|
+
novelwriter/assets/i18n/nw_pl_PL.qm,sha256=oSy7GDTNNRqZy4tnp7llCVE6CkkqoJNEiI1s1p_wp5w,95451
|
21
|
+
novelwriter/assets/i18n/nw_pt_BR.qm,sha256=iSuAZk2-sKrj_nNCcWUmL4bp7PAq83FrzNGbt3uSNoU,98365
|
22
|
+
novelwriter/assets/i18n/nw_ru_RU.qm,sha256=W10A9BAdYhRbZRzHCpaN03G7Xba7hzl02L6bGveL_0o,94842
|
23
|
+
novelwriter/assets/i18n/nw_zh_CN.qm,sha256=ndKC1LJffwRKg4K7aVz9x7xWwInH3rUb_aJBkd3UAj8,67298
|
24
24
|
novelwriter/assets/i18n/project_de_DE.json,sha256=fuEYohM2xm0mLXmibbU0TISr0BCZb2yOiBLCUmKhDJQ,2810
|
25
25
|
novelwriter/assets/i18n/project_en_GB.json,sha256=CvBOO8kaW0k7NlwvxFi62Br9HYKJKQLDk1nQfvXOj48,2537
|
26
26
|
novelwriter/assets/i18n/project_en_US.json,sha256=EcQAVEiQgRL3qobuzkPTfOWIxAc3Om-tA7nXUFFXEdI,2483
|
@@ -286,75 +286,75 @@ novelwriter/assets/themes/default_light.conf,sha256=2a4SXzlbZpyV9EX3BuFSRFYuLuzu
|
|
286
286
|
novelwriter/assets/themes/dracula.conf,sha256=pUvu7FS1nRPj3PyU3NZMR0WSb5sIa0oLpSa2XTzsh98,1425
|
287
287
|
novelwriter/assets/themes/solarized_dark.conf,sha256=7dDjs8aiFuAjl--hqMJQEExrfCgAapiPY82CL6aAo-I,916
|
288
288
|
novelwriter/assets/themes/solarized_light.conf,sha256=psCPVWcjAKB5y8H_E_h5zYUifxh5YpdFdBzxFofIHa0,918
|
289
|
-
novelwriter/core/buildsettings.py,sha256=
|
290
|
-
novelwriter/core/coretools.py,sha256=
|
291
|
-
novelwriter/core/docbuild.py,sha256=
|
292
|
-
novelwriter/core/document.py,sha256=
|
293
|
-
novelwriter/core/index.py,sha256=
|
294
|
-
novelwriter/core/item.py,sha256=
|
295
|
-
novelwriter/core/itemmodel.py,sha256=
|
296
|
-
novelwriter/core/options.py,sha256=
|
297
|
-
novelwriter/core/project.py,sha256=
|
298
|
-
novelwriter/core/projectdata.py,sha256=
|
299
|
-
novelwriter/core/projectxml.py,sha256=
|
300
|
-
novelwriter/core/sessions.py,sha256=
|
301
|
-
novelwriter/core/spellcheck.py,sha256=
|
302
|
-
novelwriter/core/status.py,sha256=
|
303
|
-
novelwriter/core/storage.py,sha256=
|
304
|
-
novelwriter/core/tree.py,sha256=
|
305
|
-
novelwriter/dialogs/about.py,sha256=
|
306
|
-
novelwriter/dialogs/docmerge.py,sha256=
|
307
|
-
novelwriter/dialogs/docsplit.py,sha256=
|
308
|
-
novelwriter/dialogs/editlabel.py,sha256=
|
309
|
-
novelwriter/dialogs/preferences.py,sha256=
|
310
|
-
novelwriter/dialogs/projectsettings.py,sha256=
|
311
|
-
novelwriter/dialogs/quotes.py,sha256=
|
312
|
-
novelwriter/dialogs/wordlist.py,sha256=
|
313
|
-
novelwriter/extensions/configlayout.py,sha256=
|
314
|
-
novelwriter/extensions/eventfilters.py,sha256=
|
315
|
-
novelwriter/extensions/modified.py,sha256=
|
316
|
-
novelwriter/extensions/novelselector.py,sha256=
|
317
|
-
novelwriter/extensions/pagedsidebar.py,sha256=
|
318
|
-
novelwriter/extensions/progressbars.py,sha256=
|
319
|
-
novelwriter/extensions/statusled.py,sha256=
|
320
|
-
novelwriter/extensions/switch.py,sha256=
|
321
|
-
novelwriter/extensions/switchbox.py,sha256=
|
322
|
-
novelwriter/extensions/versioninfo.py,sha256=
|
323
|
-
novelwriter/formats/shared.py,sha256=
|
324
|
-
novelwriter/formats/todocx.py,sha256=
|
325
|
-
novelwriter/formats/tohtml.py,sha256=
|
326
|
-
novelwriter/formats/tokenizer.py,sha256=
|
327
|
-
novelwriter/formats/tomarkdown.py,sha256=
|
328
|
-
novelwriter/formats/toodt.py,sha256=
|
329
|
-
novelwriter/formats/toqdoc.py,sha256=
|
330
|
-
novelwriter/formats/toraw.py,sha256=
|
331
|
-
novelwriter/gui/doceditor.py,sha256=
|
332
|
-
novelwriter/gui/dochighlight.py,sha256=
|
333
|
-
novelwriter/gui/docviewer.py,sha256=
|
334
|
-
novelwriter/gui/docviewerpanel.py,sha256=
|
335
|
-
novelwriter/gui/editordocument.py,sha256=
|
336
|
-
novelwriter/gui/itemdetails.py,sha256=
|
337
|
-
novelwriter/gui/mainmenu.py,sha256=
|
338
|
-
novelwriter/gui/noveltree.py,sha256
|
339
|
-
novelwriter/gui/outline.py,sha256=
|
340
|
-
novelwriter/gui/projtree.py,sha256=
|
341
|
-
novelwriter/gui/search.py,sha256=
|
342
|
-
novelwriter/gui/sidebar.py,sha256=
|
343
|
-
novelwriter/gui/statusbar.py,sha256
|
344
|
-
novelwriter/gui/theme.py,sha256=
|
345
|
-
novelwriter/text/counting.py,sha256=
|
346
|
-
novelwriter/text/patterns.py,sha256=
|
347
|
-
novelwriter/tools/dictionaries.py,sha256=
|
348
|
-
novelwriter/tools/lipsum.py,sha256=
|
349
|
-
novelwriter/tools/manusbuild.py,sha256=
|
350
|
-
novelwriter/tools/manuscript.py,sha256=
|
351
|
-
novelwriter/tools/manussettings.py,sha256=
|
352
|
-
novelwriter/tools/noveldetails.py,sha256=
|
353
|
-
novelwriter/tools/welcome.py,sha256=
|
354
|
-
novelwriter/tools/writingstats.py,sha256=
|
355
|
-
novelWriter-2.
|
356
|
-
novelWriter-2.
|
357
|
-
novelWriter-2.
|
358
|
-
novelWriter-2.
|
359
|
-
novelWriter-2.
|
360
|
-
novelWriter-2.
|
289
|
+
novelwriter/core/buildsettings.py,sha256=q5ZgkUKJO1-tktAJcgmgKMF5r6Op_UrE_ZTyw-_nyoM,24117
|
290
|
+
novelwriter/core/coretools.py,sha256=sjhU0disSrOrc7X1ObahcjIUwXxyZhG3LiAUBvwBh4I,21175
|
291
|
+
novelwriter/core/docbuild.py,sha256=svK66k4-x203zMYp6P5T5TMKPJDQRLuRAsDUfauIRBs,13778
|
292
|
+
novelwriter/core/document.py,sha256=t52H5RrKu3Un-55Lhdd6cu_MN2-__bdXIJZDWzl72TM,12155
|
293
|
+
novelwriter/core/index.py,sha256=_hbKqnisf-5-WUYtju5EqpPKhfo2gsaiT28ZGXfalgc,48610
|
294
|
+
novelwriter/core/item.py,sha256=hPhR5vtn-FfEgx8OSJ7IbuYCqZOQ2kiPf_SDxbkUBFw,18819
|
295
|
+
novelwriter/core/itemmodel.py,sha256=1W7A-uLI1g2sOe7gietKiV15McF6rMY1VMVJ4L0PpAc,18025
|
296
|
+
novelwriter/core/options.py,sha256=wJ3PJrtwbLPCs-WEvMLTWTOdlX-bn8oaUBZqYNZLY5w,7482
|
297
|
+
novelwriter/core/project.py,sha256=11g3CTQFqzwJBKfNG0AqTsrEonb97vdymC_cM4Ggjz0,21067
|
298
|
+
novelwriter/core/projectdata.py,sha256=EPgvvC8U8qAL3UMZSSuUNiMc9kifULJaexQ3N09Wj4A,10006
|
299
|
+
novelwriter/core/projectxml.py,sha256=Y7_cTzd-kNK0yyvJIiWkdDvZJo6f2WveYM6IqZllHJY,22038
|
300
|
+
novelwriter/core/sessions.py,sha256=XMp6JQcZYLpWRqio28pBFMTmj4EVak61rL7c3qC9TQY,4430
|
301
|
+
novelwriter/core/spellcheck.py,sha256=6T14_EHi7WaK7VFIUwiDSmaFJw9_PnDPBxZRZJygBRY,7176
|
302
|
+
novelwriter/core/status.py,sha256=rP0bBsIauH6P-vIAUIPpUaDx8zF7YU32NhoK29zLRQU,12236
|
303
|
+
novelwriter/core/storage.py,sha256=ndB0PigeoRrQn3tUSjwbDc9FySEYOugeIARFUMld-AY,20951
|
304
|
+
novelwriter/core/tree.py,sha256=awKPagDBkX9negFwiSlydMj-RsowUJaJlGwzBctoGW0,18741
|
305
|
+
novelwriter/dialogs/about.py,sha256=TPdkAPpPsAx7zhCbfBrSn-GhXfz-xG1OSJIePdI-E1k,4780
|
306
|
+
novelwriter/dialogs/docmerge.py,sha256=8Xu_kan7u9LI2__HCnEsDZjLcfn5XP-tFjWvE8VXrDs,6120
|
307
|
+
novelwriter/dialogs/docsplit.py,sha256=nt5L_SuB7QlfDYgBecd57bir5RVIcbpptCMdIBg4-Fs,9306
|
308
|
+
novelwriter/dialogs/editlabel.py,sha256=3x34vjqkdIvS1EdR6D1DHJgVcR_Ny-BkhMR6PKtnUOc,2988
|
309
|
+
novelwriter/dialogs/preferences.py,sha256=__cUBVg5pMk0Er9f4GoVE0Wk7GOgiL2gBYDg3wViW2Q,38747
|
310
|
+
novelwriter/dialogs/projectsettings.py,sha256=uTTDKL5oZhj-DdCfxCOgvN8ZkoDg1Ds7j1wrYMHssHo,29949
|
311
|
+
novelwriter/dialogs/quotes.py,sha256=t8VfrjcBknebtU88rgNEkgQK28qbAd7BN8HNFa0EuOA,4752
|
312
|
+
novelwriter/dialogs/wordlist.py,sha256=zUPmeTp57_VEiIv-lnpuqfYWOYwo1GTrmgiZaXvFJ8U,8700
|
313
|
+
novelwriter/extensions/configlayout.py,sha256=mw5n6bT4J5xJKtzy9dVf3RZCzejxOMSyIhzwbiMbDMQ,10828
|
314
|
+
novelwriter/extensions/eventfilters.py,sha256=82DcBd900zQNce-3XQkQWXBuUuYfYpO_zlNt-p4NXBw,2547
|
315
|
+
novelwriter/extensions/modified.py,sha256=EHkhJV5gR9DV2oOni0eiorFE0yfCfO860Bee3i3RHrA,6428
|
316
|
+
novelwriter/extensions/novelselector.py,sha256=YjdsV8EIcnaM09TPP32-AYzw_sZkmI0hoBVP_zzEf8Y,3819
|
317
|
+
novelwriter/extensions/pagedsidebar.py,sha256=Vw3creX1eHRHPSQQrQAhWZPw5-U-SjTlY_xhEfLnv8g,7273
|
318
|
+
novelwriter/extensions/progressbars.py,sha256=fbFmfhO9FVNUSQqRB0mzEC4TyHvqpVvGXI2XObBMb6U,4653
|
319
|
+
novelwriter/extensions/statusled.py,sha256=pgmoMimVLITcSVs-25Fy0rB7z-zXYNylxPjNciGsDy8,2968
|
320
|
+
novelwriter/extensions/switch.py,sha256=W3K4of_fjhGj90P-5AeBSH9rukdfKAAckB5AbA3Ly_8,4324
|
321
|
+
novelwriter/extensions/switchbox.py,sha256=xDdCKXqd4qOjZFciU6eJRrOYEv74MB2oQivEXx1sztg,4223
|
322
|
+
novelwriter/extensions/versioninfo.py,sha256=gpV-sr1-nK_IjfkAC3ad3uqteFy7Lf2sYT46Osbcp6k,5060
|
323
|
+
novelwriter/formats/shared.py,sha256=RRzDtQN_0ZqS54aLNR7yny8pQGBuI7YS7A5mvVYGyew,4605
|
324
|
+
novelwriter/formats/todocx.py,sha256=4CNG0vOs6Ec9jGRPm9MgJUfo9VxD-5QNVPVrcaww9is,40279
|
325
|
+
novelwriter/formats/tohtml.py,sha256=avC2aO_eOb9-5FI4zQ9uAZdZ0HpXOn8Hm6bER9JFK7s,17079
|
326
|
+
novelwriter/formats/tokenizer.py,sha256=geeS70cuYlJJqjSIMjk_4owgW-6khPGMGQ_HxCzPz-8,48428
|
327
|
+
novelwriter/formats/tomarkdown.py,sha256=vFmiCdaEKgZ_6pwTjtLnPlwLt19b4tPMzhGl7eo2-8c,6916
|
328
|
+
novelwriter/formats/toodt.py,sha256=uH9htj75nQUxv1Oo58hqpwjJJlfwuqQV2m2DSuogWaM,58394
|
329
|
+
novelwriter/formats/toqdoc.py,sha256=kV4IhvpHzbnNaPtbkDRoLGBqg55uq4pxbbWFRcylIx8,17910
|
330
|
+
novelwriter/formats/toraw.py,sha256=niaFt6tVSIwGfMAEP-suDfzzTRN8M08V3KJClbG3hcU,2842
|
331
|
+
novelwriter/gui/doceditor.py,sha256=bYse2QK_JPyiT_y_uIFtATsMO8NNM9DHpfXwVk0cf_o,116618
|
332
|
+
novelwriter/gui/dochighlight.py,sha256=z6WcQfkHzSlXg4-DALtJUHl_8wnikP-YT0iIZmnCV8I,19680
|
333
|
+
novelwriter/gui/docviewer.py,sha256=LQKEJE5155hq4qHI0G694By2dzaobBMnPiAEr3e9Bgc,34516
|
334
|
+
novelwriter/gui/docviewerpanel.py,sha256=3MXehPMyf__mpNaKPNow1I-9CUme_8cpXd-cOCAxWls,19726
|
335
|
+
novelwriter/gui/editordocument.py,sha256=opqrQc_GMNa9InQBAWW_WugSHVO_5cievX7DuF1Cbm4,4723
|
336
|
+
novelwriter/gui/itemdetails.py,sha256=K0mfBDDnRHKoq2OLS_nXzg-6qRnfOIxRgm0q5OhJTfg,9636
|
337
|
+
novelwriter/gui/mainmenu.py,sha256=VKMgE8_jxRM8973ycArOpGMaTwHy-7ju2TIzm2-Zqqo,41629
|
338
|
+
novelwriter/gui/noveltree.py,sha256=-XKR_zBGjbO44hEknhZt64NeW00LIC_31LQURgjsv_U,27136
|
339
|
+
novelwriter/gui/outline.py,sha256=e1U_KakgnJX044nmP5NsXzbrSVd-G_t0tJ_531zMXZI,38446
|
340
|
+
novelwriter/gui/projtree.py,sha256=jfPygfefhRsp2iidX6MGe3fYnmKcrH7WDX-G3lf-xQc,52964
|
341
|
+
novelwriter/gui/search.py,sha256=xP5M4iEA-6Hulgk2JwNqg8_myWi2KT8Yk9ufw4H3gh0,12844
|
342
|
+
novelwriter/gui/sidebar.py,sha256=oPlbPu7jlE5J1P5Jn9X5YtvLgInzPz2Jr7AC98Z2S4k,6286
|
343
|
+
novelwriter/gui/statusbar.py,sha256=XVonGSeSu35nweE6uXrhFzrBEIaijIJsLLWY64hQ6lk,9632
|
344
|
+
novelwriter/gui/theme.py,sha256=__9xz8RxP7fSEdpi_8-ZzewjBsBc7sxn82uE744Sw7U,32249
|
345
|
+
novelwriter/text/counting.py,sha256=JEU-kv5BCdiFfTQc8Uk5Sym2WbRgJ4AKtixlwQIZe1M,4407
|
346
|
+
novelwriter/text/patterns.py,sha256=T2BpUcVvXXFIadIdOqOYF1eih4LFBiRAZ7CtRuO85c8,7687
|
347
|
+
novelwriter/tools/dictionaries.py,sha256=SlEAK21y5GEykJMU4O3OI_TUHVp0x3sRNW4xUaS5q0I,9268
|
348
|
+
novelwriter/tools/lipsum.py,sha256=NZdCJ5TNwKdfwYqtRXtQ5pDbtVFbQzxiGoNPctpCHDk,4819
|
349
|
+
novelwriter/tools/manusbuild.py,sha256=fUAGp7uaPY2rFUXRaGyE8Fce49z4-xkz1i8GAV2fXlI,14107
|
350
|
+
novelwriter/tools/manuscript.py,sha256=ib5FKpcQR_A6jBWuTfQCHpx32ySvE4YFtz56a8pLAxE,40053
|
351
|
+
novelwriter/tools/manussettings.py,sha256=r7SxaJZp5QnvMlhwoAPUPerAhzDUwDKv5ng3HHIHsQg,60831
|
352
|
+
novelwriter/tools/noveldetails.py,sha256=k17ZH21M7yfLNEhY_qD-GREia5CxanN9dbVWt1selkk,18506
|
353
|
+
novelwriter/tools/welcome.py,sha256=STHc6vLBN07MFGIbjhVbopVHTgJDvldzCC40-e1hUtQ,28018
|
354
|
+
novelwriter/tools/writingstats.py,sha256=tuIkHkkiAPJv4zUBIFyh6_mVHRK-beYSc_zBUKG8MnM,22792
|
355
|
+
novelWriter-2.6rc1.dist-info/LICENSE.md,sha256=2GirkkLrPfQqx7fACKRJjtKJUegKc8067erGvcDVQHM,32197
|
356
|
+
novelWriter-2.6rc1.dist-info/METADATA,sha256=H3d21lUrJE1SbJXBjEQlhPgFyMTASdiop5PqvPYPW38,2582
|
357
|
+
novelWriter-2.6rc1.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
358
|
+
novelWriter-2.6rc1.dist-info/entry_points.txt,sha256=YDUG1w361LtLsjD3YhxoTDTwM17JA5-nigjC6j5C74A,45
|
359
|
+
novelWriter-2.6rc1.dist-info/top_level.txt,sha256=wFFEucjEeNC_Ap5ULBuEutg5a1Uc0-YO9uFT5L2naNI,12
|
360
|
+
novelWriter-2.6rc1.dist-info/RECORD,,
|
novelwriter/__init__.py
CHANGED
@@ -6,7 +6,7 @@ File History:
|
|
6
6
|
Created: 2018-09-22 [0.0.1] main
|
7
7
|
|
8
8
|
This file is a part of novelWriter
|
9
|
-
Copyright 2018
|
9
|
+
Copyright (C) 2018 Veronica Berglyd Olsen and novelWriter contributors
|
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
|
@@ -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__ = "
|
50
|
+
__version__ = "2.6rc1"
|
51
|
+
__hexversion__ = "0x020600c1"
|
52
|
+
__date__ = "2025-01-09"
|
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
|
Binary file
|
novelwriter/assets/manual.pdf
CHANGED
Binary file
|
novelwriter/assets/sample.zip
CHANGED
Binary file
|
novelwriter/common.py
CHANGED
@@ -6,7 +6,7 @@ File History:
|
|
6
6
|
Created: 2019-05-12 [0.1.0]
|
7
7
|
|
8
8
|
This file is a part of novelWriter
|
9
|
-
Copyright
|
9
|
+
Copyright (C) 2019 Veronica Berglyd Olsen and novelWriter contributors
|
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
|
novelwriter/config.py
CHANGED
@@ -8,7 +8,7 @@ Created: 2022-11-09 [2.0rc2] RecentProjects
|
|
8
8
|
Created: 2024-06-16 [2.5rc1] RecentPaths
|
9
9
|
|
10
10
|
This file is a part of novelWriter
|
11
|
-
Copyright 2018
|
11
|
+
Copyright (C) 2018 Veronica Berglyd Olsen and novelWriter contributors
|
12
12
|
|
13
13
|
This program is free software: you can redistribute it and/or modify
|
14
14
|
it under the terms of the GNU General Public License as published by
|
@@ -194,6 +194,7 @@ class Config:
|
|
194
194
|
# State
|
195
195
|
self.showViewerPanel = True # The panel for the viewer is visible
|
196
196
|
self.showEditToolBar = False # The document editor toolbar visibility
|
197
|
+
self.showSessionTime = True # Show the session time in the status bar
|
197
198
|
self.viewComments = True # Comments are shown in the viewer
|
198
199
|
self.viewSynopsis = True # Synopsis is shown in the viewer
|
199
200
|
|
@@ -674,6 +675,7 @@ class Config:
|
|
674
675
|
sec = "State"
|
675
676
|
self.showViewerPanel = conf.rdBool(sec, "showviewerpanel", self.showViewerPanel)
|
676
677
|
self.showEditToolBar = conf.rdBool(sec, "showedittoolbar", self.showEditToolBar)
|
678
|
+
self.showSessionTime = conf.rdBool(sec, "showsessiontime", self.showSessionTime)
|
677
679
|
self.viewComments = conf.rdBool(sec, "viewcomments", self.viewComments)
|
678
680
|
self.viewSynopsis = conf.rdBool(sec, "viewsynopsis", self.viewSynopsis)
|
679
681
|
self.searchCase = conf.rdBool(sec, "searchcase", self.searchCase)
|
@@ -784,6 +786,7 @@ class Config:
|
|
784
786
|
conf["State"] = {
|
785
787
|
"showviewerpanel": str(self.showViewerPanel),
|
786
788
|
"showedittoolbar": str(self.showEditToolBar),
|
789
|
+
"showsessiontime": str(self.showSessionTime),
|
787
790
|
"viewcomments": str(self.viewComments),
|
788
791
|
"viewsynopsis": str(self.viewSynopsis),
|
789
792
|
"searchcase": str(self.searchCase),
|
novelwriter/constants.py
CHANGED
@@ -6,7 +6,7 @@ File History:
|
|
6
6
|
Created: 2019-04-28 [0.0.1]
|
7
7
|
|
8
8
|
This file is a part of novelWriter
|
9
|
-
Copyright
|
9
|
+
Copyright (C) 2019 Veronica Berglyd Olsen and novelWriter contributors
|
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
|
@@ -207,7 +207,7 @@ class nwLists:
|
|
207
207
|
|
208
208
|
class nwStats:
|
209
209
|
|
210
|
-
|
210
|
+
CHARS = "allChars"
|
211
211
|
CHARS_TEXT = "textChars"
|
212
212
|
CHARS_TITLE = "titleChars"
|
213
213
|
PARAGRAPHS = "paragraphCount"
|
@@ -215,14 +215,14 @@ class nwStats:
|
|
215
215
|
WCHARS_ALL = "allWordChars"
|
216
216
|
WCHARS_TEXT = "textWordChars"
|
217
217
|
WCHARS_TITLE = "titleWordChars"
|
218
|
-
|
218
|
+
WORDS = "allWords"
|
219
219
|
WORDS_TEXT = "textWords"
|
220
220
|
WORDS_TITLE = "titleWords"
|
221
221
|
|
222
222
|
# Note: The order here affects the order of menu entries
|
223
223
|
ALL_FIELDS = [
|
224
|
-
|
225
|
-
|
224
|
+
WORDS, WORDS_TEXT, WORDS_TITLE,
|
225
|
+
CHARS, CHARS_TEXT, CHARS_TITLE,
|
226
226
|
WCHARS_ALL, WCHARS_TEXT, WCHARS_TITLE,
|
227
227
|
PARAGRAPHS, TITLES,
|
228
228
|
]
|
@@ -329,17 +329,17 @@ class nwLabels:
|
|
329
329
|
nwOutline.SYNOP: QT_TRANSLATE_NOOP("Constant", "Synopsis"),
|
330
330
|
}
|
331
331
|
STATS_NAME = {
|
332
|
-
nwStats.
|
333
|
-
nwStats.CHARS_TEXT: QT_TRANSLATE_NOOP("
|
334
|
-
nwStats.CHARS_TITLE: QT_TRANSLATE_NOOP("
|
335
|
-
nwStats.PARAGRAPHS: QT_TRANSLATE_NOOP("
|
336
|
-
nwStats.TITLES: QT_TRANSLATE_NOOP("
|
337
|
-
nwStats.WCHARS_ALL: QT_TRANSLATE_NOOP("
|
338
|
-
nwStats.WCHARS_TEXT: QT_TRANSLATE_NOOP("
|
339
|
-
nwStats.WCHARS_TITLE: QT_TRANSLATE_NOOP("
|
340
|
-
nwStats.
|
341
|
-
nwStats.WORDS_TEXT: QT_TRANSLATE_NOOP("
|
342
|
-
nwStats.WORDS_TITLE: QT_TRANSLATE_NOOP("
|
332
|
+
nwStats.CHARS: QT_TRANSLATE_NOOP("Stats", "Characters"),
|
333
|
+
nwStats.CHARS_TEXT: QT_TRANSLATE_NOOP("Stats", "Characters in Text"),
|
334
|
+
nwStats.CHARS_TITLE: QT_TRANSLATE_NOOP("Stats", "Characters in Headings"),
|
335
|
+
nwStats.PARAGRAPHS: QT_TRANSLATE_NOOP("Stats", "Paragraphs"),
|
336
|
+
nwStats.TITLES: QT_TRANSLATE_NOOP("Stats", "Headings"),
|
337
|
+
nwStats.WCHARS_ALL: QT_TRANSLATE_NOOP("Stats", "Characters, No Spaces"),
|
338
|
+
nwStats.WCHARS_TEXT: QT_TRANSLATE_NOOP("Stats", "Characters in Text, No Spaces"),
|
339
|
+
nwStats.WCHARS_TITLE: QT_TRANSLATE_NOOP("Stats", "Characters in Headings, No Spaces"),
|
340
|
+
nwStats.WORDS: QT_TRANSLATE_NOOP("Stats", "Words"),
|
341
|
+
nwStats.WORDS_TEXT: QT_TRANSLATE_NOOP("Stats", "Words in Text"),
|
342
|
+
nwStats.WORDS_TITLE: QT_TRANSLATE_NOOP("Stats", "Words in Headings"),
|
343
343
|
}
|
344
344
|
BUILD_FMT = {
|
345
345
|
nwBuildFmt.ODT: QT_TRANSLATE_NOOP("Constant", "Open Document (.odt)"),
|
@@ -366,32 +366,32 @@ class nwLabels:
|
|
366
366
|
nwBuildFmt.J_NWD: ".json",
|
367
367
|
}
|
368
368
|
SHAPES_PLAIN = {
|
369
|
-
nwStatusShape.SQUARE: QT_TRANSLATE_NOOP("
|
370
|
-
nwStatusShape.TRIANGLE: QT_TRANSLATE_NOOP("
|
371
|
-
nwStatusShape.NABLA: QT_TRANSLATE_NOOP("
|
372
|
-
nwStatusShape.DIAMOND: QT_TRANSLATE_NOOP("
|
373
|
-
nwStatusShape.PENTAGON: QT_TRANSLATE_NOOP("
|
374
|
-
nwStatusShape.HEXAGON: QT_TRANSLATE_NOOP("
|
375
|
-
nwStatusShape.STAR: QT_TRANSLATE_NOOP("
|
376
|
-
nwStatusShape.PACMAN: QT_TRANSLATE_NOOP("
|
369
|
+
nwStatusShape.SQUARE: QT_TRANSLATE_NOOP("Shape", "Square"),
|
370
|
+
nwStatusShape.TRIANGLE: QT_TRANSLATE_NOOP("Shape", "Triangle"),
|
371
|
+
nwStatusShape.NABLA: QT_TRANSLATE_NOOP("Shape", "Nabla"),
|
372
|
+
nwStatusShape.DIAMOND: QT_TRANSLATE_NOOP("Shape", "Diamond"),
|
373
|
+
nwStatusShape.PENTAGON: QT_TRANSLATE_NOOP("Shape", "Pentagon"),
|
374
|
+
nwStatusShape.HEXAGON: QT_TRANSLATE_NOOP("Shape", "Hexagon"),
|
375
|
+
nwStatusShape.STAR: QT_TRANSLATE_NOOP("Shape", "Star"),
|
376
|
+
nwStatusShape.PACMAN: QT_TRANSLATE_NOOP("Shape", "Pacman"),
|
377
377
|
}
|
378
378
|
SHAPES_CIRCLE = {
|
379
|
-
nwStatusShape.CIRCLE_Q: QT_TRANSLATE_NOOP("
|
380
|
-
nwStatusShape.CIRCLE_H: QT_TRANSLATE_NOOP("
|
381
|
-
nwStatusShape.CIRCLE_T: QT_TRANSLATE_NOOP("
|
382
|
-
nwStatusShape.CIRCLE: QT_TRANSLATE_NOOP("
|
379
|
+
nwStatusShape.CIRCLE_Q: QT_TRANSLATE_NOOP("Shape", "1/4 Circle"),
|
380
|
+
nwStatusShape.CIRCLE_H: QT_TRANSLATE_NOOP("Shape", "Half Circle"),
|
381
|
+
nwStatusShape.CIRCLE_T: QT_TRANSLATE_NOOP("Shape", "3/4 Circle"),
|
382
|
+
nwStatusShape.CIRCLE: QT_TRANSLATE_NOOP("Shape", "Full Circle"),
|
383
383
|
}
|
384
384
|
SHAPES_BARS = {
|
385
|
-
nwStatusShape.BARS_1: QT_TRANSLATE_NOOP("
|
386
|
-
nwStatusShape.BARS_2: QT_TRANSLATE_NOOP("
|
387
|
-
nwStatusShape.BARS_3: QT_TRANSLATE_NOOP("
|
388
|
-
nwStatusShape.BARS_4: QT_TRANSLATE_NOOP("
|
385
|
+
nwStatusShape.BARS_1: QT_TRANSLATE_NOOP("Shape", "1 Bar"),
|
386
|
+
nwStatusShape.BARS_2: QT_TRANSLATE_NOOP("Shape", "2 Bars"),
|
387
|
+
nwStatusShape.BARS_3: QT_TRANSLATE_NOOP("Shape", "3 Bars"),
|
388
|
+
nwStatusShape.BARS_4: QT_TRANSLATE_NOOP("Shape", "4 Bars"),
|
389
389
|
}
|
390
390
|
SHAPES_BLOCKS = {
|
391
|
-
nwStatusShape.BLOCK_1: QT_TRANSLATE_NOOP("
|
392
|
-
nwStatusShape.BLOCK_2: QT_TRANSLATE_NOOP("
|
393
|
-
nwStatusShape.BLOCK_3: QT_TRANSLATE_NOOP("
|
394
|
-
nwStatusShape.BLOCK_4: QT_TRANSLATE_NOOP("
|
391
|
+
nwStatusShape.BLOCK_1: QT_TRANSLATE_NOOP("Shape", "1 Block"),
|
392
|
+
nwStatusShape.BLOCK_2: QT_TRANSLATE_NOOP("Shape", "2 Blocks"),
|
393
|
+
nwStatusShape.BLOCK_3: QT_TRANSLATE_NOOP("Shape", "3 Blocks"),
|
394
|
+
nwStatusShape.BLOCK_4: QT_TRANSLATE_NOOP("Shape", "4 Blocks"),
|
395
395
|
}
|
396
396
|
FILE_FILTERS = {
|
397
397
|
"*.txt": QT_TRANSLATE_NOOP("Constant", "Text files"),
|
@@ -7,7 +7,7 @@ Created: 2023-02-14 [2.1b1] BuildSettings
|
|
7
7
|
Created: 2023-05-22 [2.1b1] BuildCollection
|
8
8
|
|
9
9
|
This file is a part of novelWriter
|
10
|
-
Copyright
|
10
|
+
Copyright (C) 2023 Veronica Berglyd Olsen and novelWriter contributors
|
11
11
|
|
12
12
|
This program is free software: you can redistribute it and/or modify
|
13
13
|
it under the terms of the GNU General Public License as published by
|
novelwriter/core/coretools.py
CHANGED
@@ -9,7 +9,7 @@ Created: 2022-11-03 [2.0rc2] ProjectBuilder
|
|
9
9
|
Created: 2023-07-20 [2.1b1] DocDuplicator
|
10
10
|
|
11
11
|
This file is a part of novelWriter
|
12
|
-
Copyright
|
12
|
+
Copyright (C) 2022 Veronica Berglyd Olsen and novelWriter contributors
|
13
13
|
|
14
14
|
This program is free software: you can redistribute it and/or modify
|
15
15
|
it under the terms of the GNU General Public License as published by
|
novelwriter/core/docbuild.py
CHANGED
@@ -6,7 +6,7 @@ File History:
|
|
6
6
|
Created: 2022-12-01 [2.1b1] NWBuildDocument
|
7
7
|
|
8
8
|
This file is a part of novelWriter
|
9
|
-
Copyright
|
9
|
+
Copyright (C) 2022 Veronica Berglyd Olsen and novelWriter contributors
|
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
|
novelwriter/core/document.py
CHANGED
@@ -6,7 +6,7 @@ File History:
|
|
6
6
|
Created: 2018-09-29 [0.0.1]
|
7
7
|
|
8
8
|
This file is a part of novelWriter
|
9
|
-
Copyright 2018
|
9
|
+
Copyright (C) 2018 Veronica Berglyd Olsen and novelWriter contributors
|
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
|
novelwriter/core/index.py
CHANGED
@@ -10,7 +10,7 @@ Created: 2022-05-29 [2.0rc1] TagsIndex
|
|
10
10
|
Created: 2022-05-29 [2.0rc1] ItemIndex
|
11
11
|
|
12
12
|
This file is a part of novelWriter
|
13
|
-
Copyright
|
13
|
+
Copyright (C) 2019 Veronica Berglyd Olsen and novelWriter contributors
|
14
14
|
|
15
15
|
This program is free software: you can redistribute it and/or modify
|
16
16
|
it under the terms of the GNU General Public License as published by
|
novelwriter/core/item.py
CHANGED
@@ -6,7 +6,7 @@ File History:
|
|
6
6
|
Created: 2018-10-27 [0.0.1] NWItem
|
7
7
|
|
8
8
|
This file is a part of novelWriter
|
9
|
-
Copyright 2018
|
9
|
+
Copyright (C) 2018 Veronica Berglyd Olsen and novelWriter contributors
|
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
|
novelwriter/core/itemmodel.py
CHANGED
@@ -7,7 +7,7 @@ Created: 2024-11-16 [2.6b2] ProjectNode
|
|
7
7
|
Created: 2024-11-16 [2.6b2] ProjectModel
|
8
8
|
|
9
9
|
This file is a part of novelWriter
|
10
|
-
Copyright
|
10
|
+
Copyright (C) 2024 Veronica Berglyd Olsen and novelWriter contributors
|
11
11
|
|
12
12
|
This program is free software: you can redistribute it and/or modify
|
13
13
|
it under the terms of the GNU General Public License as published by
|
novelwriter/core/options.py
CHANGED
@@ -7,7 +7,7 @@ Created: 2019-10-21 [0.3.1] OptionState
|
|
7
7
|
Rewritten: 2020-02-19 [0.4.5] OptionState
|
8
8
|
|
9
9
|
This file is a part of novelWriter
|
10
|
-
Copyright
|
10
|
+
Copyright (C) 2019 Veronica Berglyd Olsen and novelWriter contributors
|
11
11
|
|
12
12
|
This program is free software: you can redistribute it and/or modify
|
13
13
|
it under the terms of the GNU General Public License as published by
|
novelwriter/core/project.py
CHANGED
@@ -6,7 +6,7 @@ File History:
|
|
6
6
|
Created: 2018-09-29 [0.0.1] NWProject
|
7
7
|
|
8
8
|
This file is a part of novelWriter
|
9
|
-
Copyright 2018
|
9
|
+
Copyright (C) 2018 Veronica Berglyd Olsen and novelWriter contributors
|
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
|
novelwriter/core/projectdata.py
CHANGED
@@ -6,7 +6,7 @@ File History:
|
|
6
6
|
Created: 2022-10-30 [2.0rc2] NWProjectData
|
7
7
|
|
8
8
|
This file is a part of novelWriter
|
9
|
-
Copyright
|
9
|
+
Copyright (C) 2022 Veronica Berglyd Olsen and novelWriter contributors
|
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
|
@@ -29,7 +29,8 @@ import uuid
|
|
29
29
|
from typing import TYPE_CHECKING, Any
|
30
30
|
|
31
31
|
from novelwriter.common import (
|
32
|
-
checkBool, checkInt, checkStringNone, checkUuid, isHandle,
|
32
|
+
checkBool, checkInt, checkStringNone, checkUuid, isHandle,
|
33
|
+
makeFileNameSafe, simplified
|
33
34
|
)
|
34
35
|
from novelwriter.core.status import NWStatus
|
35
36
|
|
@@ -101,6 +102,11 @@ class NWProjectData:
|
|
101
102
|
"""Return the project name."""
|
102
103
|
return self._name
|
103
104
|
|
105
|
+
@property
|
106
|
+
def fileSafeName(self) -> str:
|
107
|
+
"""Return the project name in a file name safe format."""
|
108
|
+
return makeFileNameSafe(self._name)
|
109
|
+
|
104
110
|
@property
|
105
111
|
def author(self) -> str:
|
106
112
|
"""Return the project author."""
|
novelwriter/core/projectxml.py
CHANGED
@@ -8,7 +8,7 @@ Created: 2022-09-28 [2.0rc2] ProjectXMLReader
|
|
8
8
|
Created: 2022-10-31 [2.0rc2] ProjectXMLWriter
|
9
9
|
|
10
10
|
This file is a part of novelWriter
|
11
|
-
Copyright
|
11
|
+
Copyright (C) 2022 Veronica Berglyd Olsen and novelWriter contributors
|
12
12
|
|
13
13
|
This program is free software: you can redistribute it and/or modify
|
14
14
|
it under the terms of the GNU General Public License as published by
|
novelwriter/core/sessions.py
CHANGED
@@ -6,7 +6,7 @@ File History:
|
|
6
6
|
Created: 2023-06-11 [2.1b1] NWSessionLog
|
7
7
|
|
8
8
|
This file is a part of novelWriter
|
9
|
-
Copyright
|
9
|
+
Copyright (C) 2023 Veronica Berglyd Olsen and novelWriter contributors
|
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
|
novelwriter/core/spellcheck.py
CHANGED
@@ -7,7 +7,7 @@ Created: 2019-06-11 [0.1.5] NWSpellEnchant
|
|
7
7
|
Created: 2023-06-13 [2.1b1] UserDictionary
|
8
8
|
|
9
9
|
This file is a part of novelWriter
|
10
|
-
Copyright
|
10
|
+
Copyright (C) 2019 Veronica Berglyd Olsen and novelWriter contributors
|
11
11
|
|
12
12
|
This program is free software: you can redistribute it and/or modify
|
13
13
|
it under the terms of the GNU General Public License as published by
|