novelWriter 2.6b2__tar.gz → 2.6rc1__tar.gz

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.
Files changed (429) hide show
  1. {novelwriter-2.6b2 → novelwriter-2.6rc1}/CHANGELOG.md +40 -0
  2. {novelwriter-2.6b2 → novelwriter-2.6rc1}/PKG-INFO +2 -2
  3. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelWriter.egg-info/PKG-INFO +2 -2
  4. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/__init__.py +4 -4
  5. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/i18n/nw_de_DE.qm +0 -0
  6. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/i18n/nw_en_US.qm +0 -0
  7. novelwriter-2.6rc1/novelwriter/assets/i18n/nw_es_419.qm +0 -0
  8. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/i18n/nw_fr_FR.qm +0 -0
  9. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/i18n/nw_it_IT.qm +0 -0
  10. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/i18n/nw_ja_JP.qm +0 -0
  11. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/i18n/nw_nb_NO.qm +0 -0
  12. novelwriter-2.6rc1/novelwriter/assets/i18n/nw_nl_NL.qm +0 -0
  13. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/i18n/nw_pl_PL.qm +0 -0
  14. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/i18n/nw_pt_BR.qm +0 -0
  15. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/i18n/nw_ru_RU.qm +0 -0
  16. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/i18n/nw_zh_CN.qm +0 -0
  17. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/manual.pdf +0 -0
  18. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/sample.zip +0 -0
  19. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/common.py +1 -1
  20. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/config.py +4 -1
  21. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/constants.py +36 -36
  22. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/core/buildsettings.py +1 -1
  23. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/core/coretools.py +1 -1
  24. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/core/docbuild.py +1 -1
  25. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/core/document.py +1 -1
  26. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/core/index.py +1 -1
  27. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/core/item.py +1 -1
  28. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/core/itemmodel.py +1 -1
  29. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/core/options.py +1 -1
  30. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/core/project.py +1 -1
  31. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/core/projectdata.py +8 -2
  32. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/core/projectxml.py +1 -1
  33. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/core/sessions.py +1 -1
  34. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/core/spellcheck.py +1 -1
  35. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/core/status.py +17 -3
  36. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/core/storage.py +1 -1
  37. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/core/tree.py +1 -1
  38. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/dialogs/about.py +1 -1
  39. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/dialogs/docmerge.py +1 -1
  40. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/dialogs/docsplit.py +1 -1
  41. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/dialogs/editlabel.py +1 -1
  42. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/dialogs/preferences.py +2 -2
  43. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/dialogs/projectsettings.py +146 -96
  44. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/dialogs/quotes.py +1 -1
  45. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/dialogs/wordlist.py +11 -10
  46. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/enum.py +1 -1
  47. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/error.py +2 -2
  48. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/extensions/configlayout.py +1 -1
  49. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/extensions/eventfilters.py +1 -1
  50. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/extensions/modified.py +17 -5
  51. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/extensions/novelselector.py +1 -1
  52. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/extensions/pagedsidebar.py +4 -4
  53. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/extensions/progressbars.py +4 -4
  54. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/extensions/statusled.py +3 -3
  55. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/extensions/switch.py +3 -3
  56. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/extensions/switchbox.py +1 -1
  57. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/extensions/versioninfo.py +1 -1
  58. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/formats/shared.py +1 -1
  59. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/formats/todocx.py +1 -1
  60. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/formats/tohtml.py +1 -1
  61. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/formats/tokenizer.py +5 -5
  62. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/formats/tomarkdown.py +1 -1
  63. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/formats/toodt.py +1 -1
  64. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/formats/toqdoc.py +1 -1
  65. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/formats/toraw.py +1 -1
  66. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/gui/doceditor.py +4 -2
  67. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/gui/dochighlight.py +1 -1
  68. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/gui/docviewer.py +1 -1
  69. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/gui/docviewerpanel.py +1 -1
  70. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/gui/editordocument.py +1 -1
  71. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/gui/itemdetails.py +3 -3
  72. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/gui/mainmenu.py +1 -1
  73. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/gui/noveltree.py +1 -1
  74. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/gui/outline.py +8 -9
  75. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/gui/projtree.py +5 -7
  76. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/gui/search.py +2 -9
  77. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/gui/sidebar.py +1 -1
  78. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/gui/statusbar.py +20 -3
  79. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/gui/theme.py +1 -1
  80. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/guimain.py +1 -5
  81. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/shared.py +1 -1
  82. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/text/counting.py +1 -1
  83. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/text/patterns.py +1 -1
  84. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/tools/dictionaries.py +1 -1
  85. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/tools/lipsum.py +1 -1
  86. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/tools/manusbuild.py +1 -1
  87. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/tools/manuscript.py +7 -7
  88. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/tools/manussettings.py +1 -1
  89. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/tools/noveldetails.py +1 -1
  90. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/tools/welcome.py +1 -1
  91. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/tools/writingstats.py +1 -1
  92. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/types.py +2 -2
  93. {novelwriter-2.6b2 → novelwriter-2.6rc1}/pkgutils.py +1 -1
  94. {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/debian/copyright +1 -1
  95. {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/iss_license.txt +1 -1
  96. {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/macos/build.sh +1 -0
  97. novelwriter-2.6b2/novelwriter/assets/i18n/nw_es_419.qm +0 -0
  98. novelwriter-2.6b2/novelwriter/assets/i18n/nw_nl_NL.qm +0 -0
  99. {novelwriter-2.6b2 → novelwriter-2.6rc1}/CREDITS.md +0 -0
  100. {novelwriter-2.6b2 → novelwriter-2.6rc1}/LICENSE.md +0 -0
  101. {novelwriter-2.6b2 → novelwriter-2.6rc1}/MANIFEST.in +0 -0
  102. {novelwriter-2.6b2 → novelwriter-2.6rc1}/README.md +0 -0
  103. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelWriter.egg-info/SOURCES.txt +0 -0
  104. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelWriter.egg-info/dependency_links.txt +0 -0
  105. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelWriter.egg-info/entry_points.txt +0 -0
  106. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelWriter.egg-info/requires.txt +0 -0
  107. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelWriter.egg-info/top_level.txt +0 -0
  108. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/i18n/project_de_DE.json +0 -0
  109. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/i18n/project_en_GB.json +0 -0
  110. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/i18n/project_en_US.json +0 -0
  111. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/i18n/project_es_419.json +0 -0
  112. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/i18n/project_fr_FR.json +0 -0
  113. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/i18n/project_it_IT.json +0 -0
  114. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/i18n/project_ja_JP.json +0 -0
  115. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/i18n/project_nb_NO.json +0 -0
  116. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/i18n/project_nl_NL.json +0 -0
  117. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/i18n/project_nn_NO.json +0 -0
  118. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/i18n/project_pl_PL.json +0 -0
  119. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/i18n/project_pt_BR.json +0 -0
  120. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/i18n/project_ru_RU.json +0 -0
  121. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/i18n/project_zh_CN.json +0 -0
  122. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/none.svg +0 -0
  123. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/novelwriter.ico +0 -0
  124. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/novelwriter.svg +0 -0
  125. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/README.md +0 -0
  126. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/icons.conf +0 -0
  127. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/mixed_copy.svg +0 -0
  128. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/mixed_document-chapter.svg +0 -0
  129. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/mixed_document-new.svg +0 -0
  130. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/mixed_document-note.svg +0 -0
  131. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/mixed_document-scene.svg +0 -0
  132. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/mixed_document-section.svg +0 -0
  133. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/mixed_document-title.svg +0 -0
  134. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/mixed_edit.svg +0 -0
  135. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/mixed_import.svg +0 -0
  136. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/mixed_input-checked.svg +0 -0
  137. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/mixed_input-none.svg +0 -0
  138. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/mixed_input-unchecked.svg +0 -0
  139. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/mixed_margin-bottom.svg +0 -0
  140. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/mixed_margin-left.svg +0 -0
  141. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/mixed_margin-right.svg +0 -0
  142. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/mixed_margin-top.svg +0 -0
  143. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/mixed_search-replace.svg +0 -0
  144. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/mixed_size-height.svg +0 -0
  145. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/mixed_size-width.svg +0 -0
  146. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/nw_deco-h0.svg +0 -0
  147. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/nw_deco-h1.svg +0 -0
  148. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/nw_deco-h2-narrow.svg +0 -0
  149. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/nw_deco-h2.svg +0 -0
  150. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/nw_deco-h3-narrow.svg +0 -0
  151. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/nw_deco-h3.svg +0 -0
  152. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/nw_deco-h4-narrow.svg +0 -0
  153. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/nw_deco-h4.svg +0 -0
  154. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/nw_deco-note.svg +0 -0
  155. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/nw_deco-noveltree-more.svg +0 -0
  156. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/nw_font.svg +0 -0
  157. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/nw_panel.svg +0 -0
  158. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/nw_quote.svg +0 -0
  159. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/nw_search-case.svg +0 -0
  160. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/nw_search-preserve.svg +0 -0
  161. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/nw_search-regex.svg +0 -0
  162. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/nw_search-word.svg +0 -0
  163. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/nw_tb-bold-md.svg +0 -0
  164. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/nw_tb-bold.svg +0 -0
  165. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/nw_tb-italic-md.svg +0 -0
  166. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/nw_tb-italic.svg +0 -0
  167. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/nw_tb-mark.svg +0 -0
  168. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/nw_tb-strike-md.svg +0 -0
  169. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/nw_tb-strike.svg +0 -0
  170. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/nw_tb-subscript.svg +0 -0
  171. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/nw_tb-superscript.svg +0 -0
  172. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/nw_tb-underline.svg +0 -0
  173. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/nw_toolbar.svg +0 -0
  174. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_arrow-down-thick-grey.svg +0 -0
  175. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_arrow-forward.svg +0 -0
  176. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_arrow-maximise.svg +0 -0
  177. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_arrow-minimise.svg +0 -0
  178. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_arrow-repeat-grey.svg +0 -0
  179. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_book-grey.svg +0 -0
  180. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_book.svg +0 -0
  181. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_bookmark.svg +0 -0
  182. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_calendar.svg +0 -0
  183. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_cancel-grey.svg +0 -0
  184. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_cancel.svg +0 -0
  185. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_chart-bar-grey.svg +0 -0
  186. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_chevron-down.svg +0 -0
  187. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_chevron-left.svg +0 -0
  188. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_chevron-right.svg +0 -0
  189. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_chevron-up.svg +0 -0
  190. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_cog.svg +0 -0
  191. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_delete-full.svg +0 -0
  192. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_delete.svg +0 -0
  193. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_directions-full.svg +0 -0
  194. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_document-add.svg +0 -0
  195. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_document-text.svg +0 -0
  196. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_document.svg +0 -0
  197. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_export-grey.svg +0 -0
  198. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_export.svg +0 -0
  199. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_eye.svg +0 -0
  200. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_flag.svg +0 -0
  201. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_folder-open.svg +0 -0
  202. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_folder.svg +0 -0
  203. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_globe-grey.svg +0 -0
  204. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_key.svg +0 -0
  205. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_lightbulb-full.svg +0 -0
  206. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_location.svg +0 -0
  207. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_media-pause-grey.svg +0 -0
  208. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_media-record-outline.svg +0 -0
  209. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_media-record.svg +0 -0
  210. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_minus.svg +0 -0
  211. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_pencil.svg +0 -0
  212. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_pin-outline.svg +0 -0
  213. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_pin.svg +0 -0
  214. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_plus.svg +0 -0
  215. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_puzzle-outline.svg +0 -0
  216. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_puzzle.svg +0 -0
  217. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_refresh-flipped.svg +0 -0
  218. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_refresh.svg +0 -0
  219. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_search-grey.svg +0 -0
  220. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_search.svg +0 -0
  221. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_star.svg +0 -0
  222. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_stopwatch-grey.svg +0 -0
  223. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_th-dot-menu.svg +0 -0
  224. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_th-dot-more.svg +0 -0
  225. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_th-list-grey.svg +0 -0
  226. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_th-list.svg +0 -0
  227. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_times.svg +0 -0
  228. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_trash.svg +0 -0
  229. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_unfold-hidden.svg +0 -0
  230. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_unfold-visible.svg +0 -0
  231. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_user.svg +0 -0
  232. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_warning-full.svg +0 -0
  233. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/README.md +0 -0
  234. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/icons.conf +0 -0
  235. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/mixed_copy.svg +0 -0
  236. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/mixed_document-chapter.svg +0 -0
  237. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/mixed_document-new.svg +0 -0
  238. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/mixed_document-note.svg +0 -0
  239. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/mixed_document-scene.svg +0 -0
  240. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/mixed_document-section.svg +0 -0
  241. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/mixed_document-title.svg +0 -0
  242. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/mixed_edit.svg +0 -0
  243. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/mixed_import.svg +0 -0
  244. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/mixed_input-checked.svg +0 -0
  245. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/mixed_input-none.svg +0 -0
  246. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/mixed_input-unchecked.svg +0 -0
  247. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/mixed_margin-bottom.svg +0 -0
  248. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/mixed_margin-left.svg +0 -0
  249. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/mixed_margin-right.svg +0 -0
  250. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/mixed_margin-top.svg +0 -0
  251. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/mixed_search-replace.svg +0 -0
  252. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/mixed_size-height.svg +0 -0
  253. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/mixed_size-width.svg +0 -0
  254. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/nw_deco-h0.svg +0 -0
  255. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/nw_deco-h1.svg +0 -0
  256. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/nw_deco-h2-narrow.svg +0 -0
  257. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/nw_deco-h2.svg +0 -0
  258. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/nw_deco-h3-narrow.svg +0 -0
  259. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/nw_deco-h3.svg +0 -0
  260. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/nw_deco-h4-narrow.svg +0 -0
  261. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/nw_deco-h4.svg +0 -0
  262. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/nw_deco-note.svg +0 -0
  263. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/nw_deco-noveltree-more.svg +0 -0
  264. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/nw_font.svg +0 -0
  265. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/nw_panel.svg +0 -0
  266. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/nw_quote.svg +0 -0
  267. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/nw_search-case.svg +0 -0
  268. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/nw_search-preserve.svg +0 -0
  269. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/nw_search-regex.svg +0 -0
  270. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/nw_search-word.svg +0 -0
  271. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/nw_tb-bold-md.svg +0 -0
  272. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/nw_tb-bold.svg +0 -0
  273. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/nw_tb-italic-md.svg +0 -0
  274. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/nw_tb-italic.svg +0 -0
  275. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/nw_tb-mark.svg +0 -0
  276. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/nw_tb-strike-md.svg +0 -0
  277. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/nw_tb-strike.svg +0 -0
  278. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/nw_tb-subscript.svg +0 -0
  279. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/nw_tb-superscript.svg +0 -0
  280. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/nw_tb-underline.svg +0 -0
  281. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/nw_toolbar.svg +0 -0
  282. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_arrow-down-thick-grey.svg +0 -0
  283. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_arrow-forward.svg +0 -0
  284. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_arrow-maximise.svg +0 -0
  285. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_arrow-minimise.svg +0 -0
  286. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_arrow-repeat-grey.svg +0 -0
  287. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_book-grey.svg +0 -0
  288. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_book.svg +0 -0
  289. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_bookmark.svg +0 -0
  290. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_calendar.svg +0 -0
  291. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_cancel-grey.svg +0 -0
  292. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_cancel.svg +0 -0
  293. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_chart-bar-grey.svg +0 -0
  294. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_chevron-down.svg +0 -0
  295. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_chevron-left.svg +0 -0
  296. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_chevron-right.svg +0 -0
  297. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_chevron-up.svg +0 -0
  298. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_cog.svg +0 -0
  299. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_delete-full.svg +0 -0
  300. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_delete.svg +0 -0
  301. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_directions-full.svg +0 -0
  302. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_document-add.svg +0 -0
  303. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_document-text.svg +0 -0
  304. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_document.svg +0 -0
  305. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_export-grey.svg +0 -0
  306. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_export.svg +0 -0
  307. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_eye.svg +0 -0
  308. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_flag.svg +0 -0
  309. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_folder-open.svg +0 -0
  310. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_folder.svg +0 -0
  311. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_globe-grey.svg +0 -0
  312. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_key.svg +0 -0
  313. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_lightbulb-full.svg +0 -0
  314. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_location.svg +0 -0
  315. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_media-pause-grey.svg +0 -0
  316. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_media-record-outline.svg +0 -0
  317. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_media-record.svg +0 -0
  318. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_minus.svg +0 -0
  319. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_pencil.svg +0 -0
  320. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_pin-outline.svg +0 -0
  321. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_pin.svg +0 -0
  322. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_plus.svg +0 -0
  323. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_puzzle-outline.svg +0 -0
  324. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_puzzle.svg +0 -0
  325. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_refresh-flipped.svg +0 -0
  326. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_refresh.svg +0 -0
  327. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_search-grey.svg +0 -0
  328. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_search.svg +0 -0
  329. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_star.svg +0 -0
  330. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_stopwatch-grey.svg +0 -0
  331. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_th-dot-menu.svg +0 -0
  332. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_th-dot-more.svg +0 -0
  333. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_th-list-grey.svg +0 -0
  334. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_th-list.svg +0 -0
  335. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_times.svg +0 -0
  336. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_trash.svg +0 -0
  337. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_unfold-hidden.svg +0 -0
  338. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_unfold-visible.svg +0 -0
  339. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_user.svg +0 -0
  340. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_warning-full.svg +0 -0
  341. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/x-novelwriter-project.ico +0 -0
  342. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/x-novelwriter-project.svg +0 -0
  343. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/images/novelwriter-text-dark.svg +0 -0
  344. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/images/novelwriter-text-light.svg +0 -0
  345. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/images/welcome-dark.jpg +0 -0
  346. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/images/welcome-light.jpg +0 -0
  347. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/syntax/cyberpunk_night.conf +0 -0
  348. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/syntax/default_dark.conf +0 -0
  349. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/syntax/default_light.conf +0 -0
  350. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/syntax/dracula.conf +0 -0
  351. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/syntax/grey_dark.conf +0 -0
  352. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/syntax/grey_light.conf +0 -0
  353. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/syntax/light_owl.conf +0 -0
  354. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/syntax/night_owl.conf +0 -0
  355. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/syntax/snazzy.conf +0 -0
  356. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/syntax/solarized_dark.conf +0 -0
  357. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/syntax/solarized_light.conf +0 -0
  358. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/syntax/tango.conf +0 -0
  359. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/syntax/tomorrow.conf +0 -0
  360. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/syntax/tomorrow_night.conf +0 -0
  361. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/syntax/tomorrow_night_blue.conf +0 -0
  362. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/syntax/tomorrow_night_bright.conf +0 -0
  363. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/syntax/tomorrow_night_eighties.conf +0 -0
  364. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/text/credits_en.htm +0 -0
  365. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/text/lipsum.txt +0 -0
  366. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/themes/cyberpunk_night.conf +0 -0
  367. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/themes/default.conf +0 -0
  368. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/themes/default_dark.conf +0 -0
  369. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/themes/default_light.conf +0 -0
  370. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/themes/dracula.conf +0 -0
  371. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/themes/solarized_dark.conf +0 -0
  372. {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/themes/solarized_light.conf +0 -0
  373. {novelwriter-2.6b2 → novelwriter-2.6rc1}/pyproject.toml +0 -0
  374. {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/appimage_launcher.sh +0 -0
  375. {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/data/hicolor/128x128/apps/novelwriter.png +0 -0
  376. {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/data/hicolor/128x128/mimetypes/application-x-novelwriter-project.png +0 -0
  377. {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/data/hicolor/16x16/apps/novelwriter.png +0 -0
  378. {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/data/hicolor/16x16/mimetypes/application-x-novelwriter-project.png +0 -0
  379. {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/data/hicolor/24x24/apps/novelwriter.png +0 -0
  380. {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/data/hicolor/24x24/mimetypes/application-x-novelwriter-project.png +0 -0
  381. {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/data/hicolor/256x256/apps/novelwriter.png +0 -0
  382. {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/data/hicolor/256x256/mimetypes/application-x-novelwriter-project.png +0 -0
  383. {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/data/hicolor/32x32/apps/novelwriter.png +0 -0
  384. {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/data/hicolor/32x32/mimetypes/application-x-novelwriter-project.png +0 -0
  385. {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/data/hicolor/48x48/apps/novelwriter.png +0 -0
  386. {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/data/hicolor/48x48/mimetypes/application-x-novelwriter-project.png +0 -0
  387. {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/data/hicolor/512x512/apps/novelwriter.png +0 -0
  388. {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/data/hicolor/512x512/mimetypes/application-x-novelwriter-project.png +0 -0
  389. {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/data/hicolor/64x64/apps/novelwriter.png +0 -0
  390. {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/data/hicolor/64x64/mimetypes/application-x-novelwriter-project.png +0 -0
  391. {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/data/hicolor/scalable/apps/novelwriter.svg +0 -0
  392. {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/data/hicolor/scalable/mimetypes/application-x-novelwriter-project.svg +0 -0
  393. {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/data/novelwriter.desktop +0 -0
  394. {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/data/novelwriter.png +0 -0
  395. {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/data/x-novelwriter-project.xml +0 -0
  396. {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/debian/compat +0 -0
  397. {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/debian/control +0 -0
  398. {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/debian/install +0 -0
  399. {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/debian/py3dist-overrides +0 -0
  400. {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/debian/rules +0 -0
  401. {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/debian/source/format +0 -0
  402. {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/description_pypi.md +0 -0
  403. {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/description_short.txt +0 -0
  404. {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/icons/novelwriter.ico +0 -0
  405. {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/icons/novelwriter.svg +0 -0
  406. {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/icons/x-novelwriter-project.ico +0 -0
  407. {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/icons/x-novelwriter-project.svg +0 -0
  408. {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/launchpad_setup.cfg +0 -0
  409. {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/macos/App.entitlements +0 -0
  410. {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/macos/Info.plist.template +0 -0
  411. {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/macos/novelwriter.iconset/icon_128x128.png +0 -0
  412. {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/macos/novelwriter.iconset/icon_128x128@2x.png +0 -0
  413. {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/macos/novelwriter.iconset/icon_16x16.png +0 -0
  414. {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/macos/novelwriter.iconset/icon_16x16@2x.png +0 -0
  415. {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/macos/novelwriter.iconset/icon_256x256.png +0 -0
  416. {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/macos/novelwriter.iconset/icon_256x256@2x.png +0 -0
  417. {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/macos/novelwriter.iconset/icon_32x32.png +0 -0
  418. {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/macos/novelwriter.iconset/icon_32x32@2x.png +0 -0
  419. {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/macos/novelwriter.iconset/icon_512x512.png +0 -0
  420. {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/macos/novelwriter.iconset/icon_512x512@2x.png +0 -0
  421. {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/make_clean.sh +0 -0
  422. {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/make_pip.sh +0 -0
  423. {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/make_release.sh +0 -0
  424. {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/novelwriter.appdata.xml +0 -0
  425. {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/novelwriter_readme.png +0 -0
  426. {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/novelwriter_text.png +0 -0
  427. {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/signpath_logo.png +0 -0
  428. {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/win_setup_embed.iss +0 -0
  429. {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup.cfg +0 -0
@@ -1,5 +1,45 @@
1
1
  # novelWriter Changelog
2
2
 
3
+ ## Version 2.6 RC 1 [2025-01-09]
4
+
5
+ ### Release Notes
6
+
7
+ This is a release candidate of the next release version, and is intended for testing purposes.
8
+ Please be careful when using this version on live writing projects, and make sure you take frequent
9
+ backups.
10
+
11
+ ### Detailed Changelog
12
+
13
+ **New Features**
14
+
15
+ * The session timer in the status bar can now be hidden by clicking on it. Issue #1029. PR #2149.
16
+ * Status and importance labels can now be exported and imported. Issue #1847. PRs #2152 and #2153.
17
+
18
+ **Bugfixes**
19
+
20
+ * Fix a beta release bug where it was not possible to change the status or importance flag on
21
+ folders in the project tree. Issue #2145. PR #2147.
22
+ * Fix an issue where the word counter would override the selection counter in the editor. This was
23
+ caused by the selection counter being on a much shorter timer than the word counter, so in some
24
+ cases the latter result came in after the former even if the user actions where the other way
25
+ around. The selection counter now takes precedence, always. Issue #2155. PRs #2156 and #2157.
26
+ * Fix a minor issue where the search panel header background would not update colour when the theme
27
+ was changed. Issue #2162. PR #2167.
28
+
29
+ **Improvements**
30
+
31
+ * It is no longer necessary to click the "Apply" button when making changes to status and
32
+ importance labels, or auto-replace settings, in Project Settings. The changes are applied
33
+ directly to the listed items. They are not applied to the project until the Project Settings are
34
+ accepted. This is a more intuitive approach. Issue #2150. PR #2151.
35
+
36
+ **Packaging and Installation**
37
+
38
+ * MacOS packages are now built on the latest MacOS image available on GitHub. The x86_64 build was
39
+ previously locked to MacOS 12, which is no loner available. PR #2141.
40
+
41
+ ----
42
+
3
43
  ## Version 2.6 Beta 2 [2024-12-23]
4
44
 
5
45
  ### Release Notes
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.2
2
2
  Name: novelWriter
3
- Version: 2.6b2
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,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.2
2
2
  Name: novelWriter
3
- Version: 2.6b2
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
@@ -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–2024, Veronica Berglyd Olsen
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.6b2"
51
- __hexversion__ = "0x020600b2"
52
- __date__ = "2024-12-23"
50
+ __version__ = "2.6rc1"
51
+ __hexversion__ = "0x020600c1"
52
+ __date__ = "2025-01-09"
53
53
  __status__ = "Stable"
54
54
  __domain__ = "novelwriter.io"
55
55
 
@@ -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 2018–2024, Veronica Berglyd Olsen
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
@@ -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–2024, Veronica Berglyd Olsen
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),
@@ -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 2018–2024, Veronica Berglyd Olsen
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
- CHARS_ALL = "allChars"
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
- WORDS_ALL = "allWords"
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
- WORDS_ALL, WORDS_TEXT, WORDS_TITLE,
225
- CHARS_ALL, CHARS_TEXT, CHARS_TITLE,
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.CHARS_ALL: QT_TRANSLATE_NOOP("Constant", "Characters"),
333
- nwStats.CHARS_TEXT: QT_TRANSLATE_NOOP("Constant", "Characters in Text"),
334
- nwStats.CHARS_TITLE: QT_TRANSLATE_NOOP("Constant", "Characters in Headings"),
335
- nwStats.PARAGRAPHS: QT_TRANSLATE_NOOP("Constant", "Paragraphs"),
336
- nwStats.TITLES: QT_TRANSLATE_NOOP("Constant", "Headings"),
337
- nwStats.WCHARS_ALL: QT_TRANSLATE_NOOP("Constant", "Characters, No Spaces"),
338
- nwStats.WCHARS_TEXT: QT_TRANSLATE_NOOP("Constant", "Characters in Text, No Spaces"),
339
- nwStats.WCHARS_TITLE: QT_TRANSLATE_NOOP("Constant", "Characters in Headings, No Spaces"),
340
- nwStats.WORDS_ALL: QT_TRANSLATE_NOOP("Constant", "Words"),
341
- nwStats.WORDS_TEXT: QT_TRANSLATE_NOOP("Constant", "Words in Text"),
342
- nwStats.WORDS_TITLE: QT_TRANSLATE_NOOP("Constant", "Words in Headings"),
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("Constant", "Square"),
370
- nwStatusShape.TRIANGLE: QT_TRANSLATE_NOOP("Constant", "Triangle"),
371
- nwStatusShape.NABLA: QT_TRANSLATE_NOOP("Constant", "Nabla"),
372
- nwStatusShape.DIAMOND: QT_TRANSLATE_NOOP("Constant", "Diamond"),
373
- nwStatusShape.PENTAGON: QT_TRANSLATE_NOOP("Constant", "Pentagon"),
374
- nwStatusShape.HEXAGON: QT_TRANSLATE_NOOP("Constant", "Hexagon"),
375
- nwStatusShape.STAR: QT_TRANSLATE_NOOP("Constant", "Star"),
376
- nwStatusShape.PACMAN: QT_TRANSLATE_NOOP("Constant", "Pacman"),
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("Constant", "1/4 Circle"),
380
- nwStatusShape.CIRCLE_H: QT_TRANSLATE_NOOP("Constant", "Half Circle"),
381
- nwStatusShape.CIRCLE_T: QT_TRANSLATE_NOOP("Constant", "3/4 Circle"),
382
- nwStatusShape.CIRCLE: QT_TRANSLATE_NOOP("Constant", "Full Circle"),
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("Constant", "1 Bar"),
386
- nwStatusShape.BARS_2: QT_TRANSLATE_NOOP("Constant", "2 Bars"),
387
- nwStatusShape.BARS_3: QT_TRANSLATE_NOOP("Constant", "3 Bars"),
388
- nwStatusShape.BARS_4: QT_TRANSLATE_NOOP("Constant", "4 Bars"),
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("Constant", "1 Block"),
392
- nwStatusShape.BLOCK_2: QT_TRANSLATE_NOOP("Constant", "2 Blocks"),
393
- nwStatusShape.BLOCK_3: QT_TRANSLATE_NOOP("Constant", "3 Blocks"),
394
- nwStatusShape.BLOCK_4: QT_TRANSLATE_NOOP("Constant", "4 Blocks"),
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 2018–2024, Veronica Berglyd Olsen
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
@@ -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 2018–2024, Veronica Berglyd Olsen
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
@@ -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 2018–2024, Veronica Berglyd Olsen
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
@@ -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–2024, Veronica Berglyd Olsen
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
@@ -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 2018–2024, Veronica Berglyd Olsen
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
@@ -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–2024, Veronica Berglyd Olsen
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
@@ -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 2018–2024, Veronica Berglyd Olsen
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
@@ -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 2018–2024, Veronica Berglyd Olsen
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
@@ -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–2024, Veronica Berglyd Olsen
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
@@ -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 2018–2024, Veronica Berglyd Olsen
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, simplified
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."""
@@ -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 2018–2024, Veronica Berglyd Olsen
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
@@ -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 2018–2024, Veronica Berglyd Olsen
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
@@ -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 2018–2024, Veronica Berglyd Olsen
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
@@ -7,7 +7,7 @@ Created: 2019-05-19 [0.1.3] NWStatus
7
7
  Rewritten: 2022-04-05 [2.0b1] NWStatus
8
8
 
9
9
  This file is a part of novelWriter
10
- Copyright 2018–2024, Veronica Berglyd Olsen
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
@@ -37,7 +37,7 @@ from PyQt5.QtGui import QColor, QIcon, QPainter, QPainterPath, QPixmap, QPolygon
37
37
  from novelwriter import SHARED
38
38
  from novelwriter.common import simplified
39
39
  from novelwriter.enum import nwStatusShape
40
- from novelwriter.types import QtPaintAnitAlias, QtTransparent
40
+ from novelwriter.types import QtPaintAntiAlias, QtTransparent
41
41
 
42
42
  if TYPE_CHECKING: # pragma: no cover
43
43
  from typing import TypeGuard # Requires Python 3.10
@@ -174,6 +174,20 @@ class NWStatus:
174
174
  """Yield entries from the status icons."""
175
175
  yield from self._store.items()
176
176
 
177
+ def fromRaw(self, data: list[str]) -> StatusEntry | None:
178
+ """Create a StatusEntry from a list of three strings consisting
179
+ of shape, colour, and name. This entry is not automatically
180
+ added to the list of entries.
181
+ """
182
+ try:
183
+ shape = nwStatusShape[str(data[0])]
184
+ color = QColor(str(data[1]))
185
+ icon = NWStatus.createIcon(self._height, color, shape)
186
+ return StatusEntry(simplified(data[2]), color, shape, icon)
187
+ except Exception:
188
+ logger.error("Could not parse entry %s", str(data))
189
+ return None
190
+
177
191
  @staticmethod
178
192
  def createIcon(height: int, color: QColor, shape: nwStatusShape) -> QIcon:
179
193
  """Generate an icon for a status label."""
@@ -181,7 +195,7 @@ class NWStatus:
181
195
  pixmap.fill(QtTransparent)
182
196
 
183
197
  painter = QPainter(pixmap)
184
- painter.setRenderHint(QtPaintAnitAlias)
198
+ painter.setRenderHint(QtPaintAntiAlias)
185
199
  painter.fillPath(_SHAPES.getShape(shape), color)
186
200
  painter.end()
187
201
 
@@ -6,7 +6,7 @@ File History:
6
6
  Created: 2022-11-01 [2.0rc2] NWStorage
7
7
 
8
8
  This file is a part of novelWriter
9
- Copyright 2018–2024, Veronica Berglyd Olsen
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
@@ -7,7 +7,7 @@ Created: 2020-05-07 [0.4.5] NWTree
7
7
  Rewritten: 2024-11-16 [2.6b2] NWTree
8
8
 
9
9
  This file is a part of novelWriter
10
- Copyright 2018–2024, Veronica Berglyd Olsen
10
+ Copyright (C) 2020 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
@@ -6,7 +6,7 @@ File History:
6
6
  Created: 2020-05-21 [0.5.2] GuiAbout
7
7
 
8
8
  This file is a part of novelWriter
9
- Copyright 2018–2024, Veronica Berglyd Olsen
9
+ Copyright (C) 2020 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
@@ -7,7 +7,7 @@ Created: 2020-01-23 [0.4.3] GuiDocMerge
7
7
  Rewritten: 2022-10-06 [2.0rc1] GuiDocMerge
8
8
 
9
9
  This file is a part of novelWriter
10
- Copyright 2018–2024, Veronica Berglyd Olsen
10
+ Copyright (C) 2020 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
@@ -7,7 +7,7 @@ Created: 2020-02-01 [0.4.3] GuiDocSplit
7
7
  Rewritten: 2022-10-12 [2.0rc1] GuiDocSplit
8
8
 
9
9
  This file is a part of novelWriter
10
- Copyright 2018–2024, Veronica Berglyd Olsen
10
+ Copyright (C) 2020 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
@@ -6,7 +6,7 @@ File History:
6
6
  Created: 2022-06-11 [2.0rc1] GuiEditLabel
7
7
 
8
8
  This file is a part of novelWriter
9
- Copyright 2018–2024, Veronica Berglyd Olsen
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
@@ -7,7 +7,7 @@ Created: 2019-06-10 [0.1.5] GuiPreferences
7
7
  Rewritten: 2024-01-08 [2.3b1] GuiPreferences
8
8
 
9
9
  This file is a part of novelWriter
10
- Copyright 2018–2024, Veronica Berglyd Olsen
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
@@ -584,7 +584,7 @@ class GuiPreferences(NDialog):
584
584
  self.narratorBreak.setText(CONFIG.narratorBreak)
585
585
  self.mainForm.addRow(
586
586
  self.tr("Narrator break symbol"), self.narratorBreak,
587
- self.tr("Symbol to indicate a narrator break in dialogue")
587
+ self.tr("Symbol to indicate a narrator break in dialogue.")
588
588
  )
589
589
 
590
590
  self.narratorDialog = QLineEdit(self)