novelWriter 2.3.1__tar.gz → 2.4rc1__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 (411) hide show
  1. {novelWriter-2.3.1 → novelWriter-2.4rc1}/CHANGELOG.md +94 -0
  2. {novelWriter-2.3.1 → novelWriter-2.4rc1}/CREDITS.md +3 -1
  3. {novelWriter-2.3.1 → novelWriter-2.4rc1}/PKG-INFO +5 -6
  4. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelWriter.egg-info/PKG-INFO +5 -6
  5. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelWriter.egg-info/SOURCES.txt +12 -7
  6. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/__init__.py +7 -7
  7. novelWriter-2.4rc1/novelwriter/assets/icons/none.svg +4 -0
  8. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/icons.conf +4 -0
  9. novelWriter-2.4rc1/novelwriter/assets/icons/typicons_dark/nw_tb-mark.svg +7 -0
  10. novelWriter-2.4rc1/novelwriter/assets/icons/typicons_dark/typ_refresh-flipped.svg +4 -0
  11. novelWriter-2.4rc1/novelwriter/assets/icons/typicons_dark/typ_refresh.svg +4 -0
  12. novelWriter-2.4rc1/novelwriter/assets/icons/typicons_dark/typ_search-grey.svg +4 -0
  13. novelWriter-2.4rc1/novelwriter/assets/icons/typicons_dark/typ_times.svg +4 -0
  14. novelWriter-2.4rc1/novelwriter/assets/icons/typicons_dark/typ_unfold-hidden.svg +4 -0
  15. novelWriter-2.4rc1/novelwriter/assets/icons/typicons_dark/typ_unfold-visible.svg +4 -0
  16. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/icons.conf +4 -0
  17. novelWriter-2.4rc1/novelwriter/assets/icons/typicons_light/nw_tb-mark.svg +7 -0
  18. novelWriter-2.4rc1/novelwriter/assets/icons/typicons_light/typ_refresh-flipped.svg +4 -0
  19. novelWriter-2.4rc1/novelwriter/assets/icons/typicons_light/typ_refresh.svg +4 -0
  20. novelWriter-2.4rc1/novelwriter/assets/icons/typicons_light/typ_search-grey.svg +4 -0
  21. novelWriter-2.4rc1/novelwriter/assets/icons/typicons_light/typ_times.svg +4 -0
  22. novelWriter-2.4rc1/novelwriter/assets/icons/typicons_light/typ_unfold-hidden.svg +4 -0
  23. novelWriter-2.4rc1/novelwriter/assets/icons/typicons_light/typ_unfold-visible.svg +4 -0
  24. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/manual.pdf +0 -0
  25. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/sample.zip +0 -0
  26. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/syntax/default_dark.conf +1 -0
  27. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/syntax/default_light.conf +1 -0
  28. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/syntax/grey_dark.conf +1 -0
  29. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/syntax/grey_light.conf +1 -0
  30. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/syntax/light_owl.conf +1 -0
  31. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/syntax/night_owl.conf +1 -0
  32. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/syntax/solarized_dark.conf +1 -0
  33. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/syntax/solarized_light.conf +1 -0
  34. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/syntax/tomorrow.conf +1 -0
  35. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/syntax/tomorrow_night.conf +1 -0
  36. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/syntax/tomorrow_night_blue.conf +1 -0
  37. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/syntax/tomorrow_night_bright.conf +1 -0
  38. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/syntax/tomorrow_night_eighties.conf +1 -0
  39. novelWriter-2.4rc1/novelwriter/assets/text/credits_en.htm +81 -0
  40. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/common.py +7 -2
  41. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/config.py +43 -16
  42. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/constants.py +5 -6
  43. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/core/buildsettings.py +60 -40
  44. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/core/coretools.py +97 -13
  45. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/core/docbuild.py +74 -7
  46. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/core/document.py +24 -3
  47. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/core/index.py +31 -112
  48. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/core/project.py +10 -15
  49. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/core/sessions.py +2 -2
  50. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/core/status.py +6 -5
  51. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/core/storage.py +8 -2
  52. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/core/tohtml.py +22 -25
  53. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/core/tokenizer.py +416 -232
  54. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/core/tomd.py +17 -8
  55. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/core/toodt.py +385 -350
  56. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/core/tree.py +8 -8
  57. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/dialogs/about.py +9 -11
  58. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/dialogs/docmerge.py +17 -14
  59. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/dialogs/docsplit.py +20 -19
  60. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/dialogs/editlabel.py +5 -4
  61. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/dialogs/preferences.py +31 -39
  62. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/dialogs/projectsettings.py +29 -26
  63. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/dialogs/quotes.py +10 -9
  64. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/dialogs/wordlist.py +15 -12
  65. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/enum.py +17 -14
  66. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/error.py +13 -11
  67. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/extensions/circularprogress.py +12 -8
  68. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/extensions/configlayout.py +1 -3
  69. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/extensions/modified.py +51 -2
  70. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/extensions/pagedsidebar.py +16 -14
  71. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/extensions/simpleprogress.py +3 -1
  72. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/extensions/statusled.py +3 -1
  73. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/extensions/switch.py +10 -9
  74. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/extensions/switchbox.py +14 -13
  75. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/extensions/versioninfo.py +1 -1
  76. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/gui/doceditor.py +413 -478
  77. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/gui/dochighlight.py +33 -29
  78. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/gui/docviewer.py +162 -175
  79. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/gui/docviewerpanel.py +20 -37
  80. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/gui/editordocument.py +15 -4
  81. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/gui/itemdetails.py +51 -54
  82. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/gui/mainmenu.py +37 -16
  83. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/gui/noveltree.py +30 -36
  84. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/gui/outline.py +114 -92
  85. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/gui/projtree.py +60 -66
  86. novelWriter-2.4rc1/novelwriter/gui/search.py +362 -0
  87. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/gui/sidebar.py +36 -45
  88. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/gui/statusbar.py +14 -14
  89. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/gui/theme.py +93 -28
  90. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/guimain.py +207 -200
  91. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/shared.py +31 -6
  92. novelWriter-2.4rc1/novelwriter/text/counting.py +137 -0
  93. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/tools/dictionaries.py +13 -12
  94. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/tools/lipsum.py +20 -17
  95. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/tools/manusbuild.py +35 -27
  96. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/tools/manuscript.py +374 -90
  97. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/tools/manussettings.py +261 -124
  98. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/tools/noveldetails.py +20 -18
  99. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/tools/welcome.py +48 -44
  100. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/tools/writingstats.py +61 -55
  101. novelWriter-2.4rc1/novelwriter/types.py +90 -0
  102. {novelWriter-2.3.1 → novelWriter-2.4rc1}/pkgutils.py +8 -9
  103. novelWriter-2.4rc1/pyproject.toml +48 -0
  104. novelWriter-2.4rc1/setup.cfg +4 -0
  105. novelWriter-2.3.1/novelWriter.egg-info/not-zip-safe +0 -1
  106. novelWriter-2.3.1/novelwriter/assets/icons/typicons_dark/typ_refresh-flipped.svg +0 -4
  107. novelWriter-2.3.1/novelwriter/assets/icons/typicons_dark/typ_refresh.svg +0 -4
  108. novelWriter-2.3.1/novelwriter/assets/icons/typicons_dark/typ_times.svg +0 -4
  109. novelWriter-2.3.1/novelwriter/assets/icons/typicons_light/typ_refresh-flipped.svg +0 -4
  110. novelWriter-2.3.1/novelwriter/assets/icons/typicons_light/typ_refresh.svg +0 -4
  111. novelWriter-2.3.1/novelwriter/assets/icons/typicons_light/typ_times.svg +0 -4
  112. novelWriter-2.3.1/novelwriter/assets/text/credits_en.htm +0 -79
  113. novelWriter-2.3.1/novelwriter/core/__init__.py +0 -3
  114. novelWriter-2.3.1/novelwriter/dialogs/__init__.py +0 -3
  115. novelWriter-2.3.1/novelwriter/extensions/__init__.py +0 -3
  116. novelWriter-2.3.1/novelwriter/gui/__init__.py +0 -3
  117. novelWriter-2.3.1/novelwriter/tools/__init__.py +0 -3
  118. novelWriter-2.3.1/pyproject.toml +0 -3
  119. novelWriter-2.3.1/setup.cfg +0 -58
  120. {novelWriter-2.3.1 → novelWriter-2.4rc1}/LICENSE.md +0 -0
  121. {novelWriter-2.3.1 → novelWriter-2.4rc1}/MANIFEST.in +0 -0
  122. {novelWriter-2.3.1 → novelWriter-2.4rc1}/README.md +0 -0
  123. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelWriter.egg-info/dependency_links.txt +0 -0
  124. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelWriter.egg-info/entry_points.txt +0 -0
  125. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelWriter.egg-info/requires.txt +0 -0
  126. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelWriter.egg-info/top_level.txt +0 -0
  127. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/i18n/nw_de_DE.qm +0 -0
  128. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/i18n/nw_en_US.qm +0 -0
  129. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/i18n/nw_es_419.qm +0 -0
  130. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/i18n/nw_fr_FR.qm +0 -0
  131. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/i18n/nw_it_IT.qm +0 -0
  132. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/i18n/nw_ja_JP.qm +0 -0
  133. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/i18n/nw_nb_NO.qm +0 -0
  134. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/i18n/nw_nl_NL.qm +0 -0
  135. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/i18n/nw_pt_BR.qm +0 -0
  136. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/i18n/nw_zh_CN.qm +0 -0
  137. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/i18n/project_de_DE.json +0 -0
  138. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/i18n/project_en_GB.json +0 -0
  139. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/i18n/project_en_US.json +0 -0
  140. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/i18n/project_es_419.json +0 -0
  141. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/i18n/project_fr_FR.json +0 -0
  142. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/i18n/project_it_IT.json +0 -0
  143. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/i18n/project_ja_JP.json +0 -0
  144. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/i18n/project_nb_NO.json +0 -0
  145. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/i18n/project_nl_NL.json +0 -0
  146. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/i18n/project_nn_NO.json +0 -0
  147. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/i18n/project_pt_BR.json +0 -0
  148. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/i18n/project_ru_RU.json +0 -0
  149. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/i18n/project_zh_CN.json +0 -0
  150. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/novelwriter.ico +0 -0
  151. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/novelwriter.svg +0 -0
  152. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/README.md +0 -0
  153. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/mixed_document-chapter.svg +0 -0
  154. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/mixed_document-new.svg +0 -0
  155. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/mixed_document-note.svg +0 -0
  156. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/mixed_document-scene.svg +0 -0
  157. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/mixed_document-section.svg +0 -0
  158. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/mixed_document-title.svg +0 -0
  159. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/mixed_edit.svg +0 -0
  160. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/mixed_import.svg +0 -0
  161. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/mixed_input-checked.svg +0 -0
  162. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/mixed_input-none.svg +0 -0
  163. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/mixed_input-unchecked.svg +0 -0
  164. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/mixed_search-replace.svg +0 -0
  165. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/nw_deco-h0.svg +0 -0
  166. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/nw_deco-h1.svg +0 -0
  167. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/nw_deco-h2-narrow.svg +0 -0
  168. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/nw_deco-h2.svg +0 -0
  169. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/nw_deco-h3-narrow.svg +0 -0
  170. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/nw_deco-h3.svg +0 -0
  171. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/nw_deco-h4-narrow.svg +0 -0
  172. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/nw_deco-h4.svg +0 -0
  173. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/nw_deco-note.svg +0 -0
  174. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/nw_deco-noveltree-more.svg +0 -0
  175. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/nw_panel.svg +0 -0
  176. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/nw_search-case.svg +0 -0
  177. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/nw_search-preserve.svg +0 -0
  178. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/nw_search-regex.svg +0 -0
  179. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/nw_search-word.svg +0 -0
  180. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/nw_tb-bold-md.svg +0 -0
  181. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/nw_tb-bold.svg +0 -0
  182. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/nw_tb-italic-md.svg +0 -0
  183. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/nw_tb-italic.svg +0 -0
  184. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/nw_tb-strike-md.svg +0 -0
  185. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/nw_tb-strike.svg +0 -0
  186. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/nw_tb-subscript.svg +0 -0
  187. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/nw_tb-superscript.svg +0 -0
  188. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/nw_tb-underline.svg +0 -0
  189. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/typ_arrow-down-thick-grey.svg +0 -0
  190. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/typ_arrow-forward.svg +0 -0
  191. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/typ_arrow-maximise.svg +0 -0
  192. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/typ_arrow-minimise.svg +0 -0
  193. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/typ_arrow-repeat-grey.svg +0 -0
  194. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/typ_book-grey.svg +0 -0
  195. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/typ_book.svg +0 -0
  196. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/typ_bookmark.svg +0 -0
  197. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/typ_calendar.svg +0 -0
  198. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/typ_cancel-grey.svg +0 -0
  199. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/typ_cancel.svg +0 -0
  200. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/typ_chart-bar-grey.svg +0 -0
  201. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/typ_chevron-down.svg +0 -0
  202. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/typ_chevron-left.svg +0 -0
  203. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/typ_chevron-right.svg +0 -0
  204. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/typ_chevron-up.svg +0 -0
  205. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/typ_cog.svg +0 -0
  206. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/typ_delete-full.svg +0 -0
  207. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/typ_delete.svg +0 -0
  208. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/typ_directions-full.svg +0 -0
  209. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/typ_document-add.svg +0 -0
  210. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/typ_document-text.svg +0 -0
  211. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/typ_document.svg +0 -0
  212. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/typ_export-grey.svg +0 -0
  213. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/typ_export.svg +0 -0
  214. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/typ_eye.svg +0 -0
  215. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/typ_flag.svg +0 -0
  216. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/typ_folder-open.svg +0 -0
  217. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/typ_folder.svg +0 -0
  218. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/typ_globe-grey.svg +0 -0
  219. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/typ_key.svg +0 -0
  220. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/typ_lightbulb-full.svg +0 -0
  221. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/typ_location.svg +0 -0
  222. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/typ_media-pause-grey.svg +0 -0
  223. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/typ_media-record-outline.svg +0 -0
  224. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/typ_media-record.svg +0 -0
  225. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/typ_minus.svg +0 -0
  226. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/typ_pencil.svg +0 -0
  227. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/typ_pin-outline.svg +0 -0
  228. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/typ_pin.svg +0 -0
  229. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/typ_plus.svg +0 -0
  230. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/typ_puzzle-outline.svg +0 -0
  231. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/typ_puzzle.svg +0 -0
  232. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/typ_search.svg +0 -0
  233. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/typ_star.svg +0 -0
  234. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/typ_stopwatch-grey.svg +0 -0
  235. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/typ_th-dot-menu.svg +0 -0
  236. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/typ_th-dot-more.svg +0 -0
  237. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/typ_th-list-grey.svg +0 -0
  238. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/typ_th-list.svg +0 -0
  239. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/typ_trash.svg +0 -0
  240. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/typ_user.svg +0 -0
  241. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_dark/typ_warning-full.svg +0 -0
  242. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/README.md +0 -0
  243. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/mixed_document-chapter.svg +0 -0
  244. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/mixed_document-new.svg +0 -0
  245. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/mixed_document-note.svg +0 -0
  246. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/mixed_document-scene.svg +0 -0
  247. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/mixed_document-section.svg +0 -0
  248. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/mixed_document-title.svg +0 -0
  249. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/mixed_edit.svg +0 -0
  250. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/mixed_import.svg +0 -0
  251. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/mixed_input-checked.svg +0 -0
  252. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/mixed_input-none.svg +0 -0
  253. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/mixed_input-unchecked.svg +0 -0
  254. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/mixed_search-replace.svg +0 -0
  255. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/nw_deco-h0.svg +0 -0
  256. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/nw_deco-h1.svg +0 -0
  257. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/nw_deco-h2-narrow.svg +0 -0
  258. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/nw_deco-h2.svg +0 -0
  259. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/nw_deco-h3-narrow.svg +0 -0
  260. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/nw_deco-h3.svg +0 -0
  261. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/nw_deco-h4-narrow.svg +0 -0
  262. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/nw_deco-h4.svg +0 -0
  263. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/nw_deco-note.svg +0 -0
  264. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/nw_deco-noveltree-more.svg +0 -0
  265. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/nw_panel.svg +0 -0
  266. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/nw_search-case.svg +0 -0
  267. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/nw_search-preserve.svg +0 -0
  268. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/nw_search-regex.svg +0 -0
  269. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/nw_search-word.svg +0 -0
  270. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/nw_tb-bold-md.svg +0 -0
  271. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/nw_tb-bold.svg +0 -0
  272. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/nw_tb-italic-md.svg +0 -0
  273. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/nw_tb-italic.svg +0 -0
  274. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/nw_tb-strike-md.svg +0 -0
  275. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/nw_tb-strike.svg +0 -0
  276. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/nw_tb-subscript.svg +0 -0
  277. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/nw_tb-superscript.svg +0 -0
  278. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/nw_tb-underline.svg +0 -0
  279. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/typ_arrow-down-thick-grey.svg +0 -0
  280. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/typ_arrow-forward.svg +0 -0
  281. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/typ_arrow-maximise.svg +0 -0
  282. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/typ_arrow-minimise.svg +0 -0
  283. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/typ_arrow-repeat-grey.svg +0 -0
  284. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/typ_book-grey.svg +0 -0
  285. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/typ_book.svg +0 -0
  286. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/typ_bookmark.svg +0 -0
  287. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/typ_calendar.svg +0 -0
  288. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/typ_cancel-grey.svg +0 -0
  289. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/typ_cancel.svg +0 -0
  290. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/typ_chart-bar-grey.svg +0 -0
  291. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/typ_chevron-down.svg +0 -0
  292. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/typ_chevron-left.svg +0 -0
  293. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/typ_chevron-right.svg +0 -0
  294. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/typ_chevron-up.svg +0 -0
  295. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/typ_cog.svg +0 -0
  296. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/typ_delete-full.svg +0 -0
  297. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/typ_delete.svg +0 -0
  298. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/typ_directions-full.svg +0 -0
  299. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/typ_document-add.svg +0 -0
  300. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/typ_document-text.svg +0 -0
  301. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/typ_document.svg +0 -0
  302. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/typ_export-grey.svg +0 -0
  303. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/typ_export.svg +0 -0
  304. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/typ_eye.svg +0 -0
  305. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/typ_flag.svg +0 -0
  306. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/typ_folder-open.svg +0 -0
  307. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/typ_folder.svg +0 -0
  308. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/typ_globe-grey.svg +0 -0
  309. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/typ_key.svg +0 -0
  310. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/typ_lightbulb-full.svg +0 -0
  311. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/typ_location.svg +0 -0
  312. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/typ_media-pause-grey.svg +0 -0
  313. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/typ_media-record-outline.svg +0 -0
  314. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/typ_media-record.svg +0 -0
  315. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/typ_minus.svg +0 -0
  316. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/typ_pencil.svg +0 -0
  317. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/typ_pin-outline.svg +0 -0
  318. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/typ_pin.svg +0 -0
  319. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/typ_plus.svg +0 -0
  320. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/typ_puzzle-outline.svg +0 -0
  321. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/typ_puzzle.svg +0 -0
  322. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/typ_search.svg +0 -0
  323. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/typ_star.svg +0 -0
  324. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/typ_stopwatch-grey.svg +0 -0
  325. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/typ_th-dot-menu.svg +0 -0
  326. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/typ_th-dot-more.svg +0 -0
  327. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/typ_th-list-grey.svg +0 -0
  328. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/typ_th-list.svg +0 -0
  329. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/typ_trash.svg +0 -0
  330. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/typ_user.svg +0 -0
  331. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/typicons_light/typ_warning-full.svg +0 -0
  332. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/x-novelwriter-project.ico +0 -0
  333. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/icons/x-novelwriter-project.svg +0 -0
  334. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/images/novelwriter-text-dark.svg +0 -0
  335. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/images/novelwriter-text-light.svg +0 -0
  336. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/images/welcome-dark.jpg +0 -0
  337. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/images/welcome-light.jpg +0 -0
  338. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/syntax/cyberpunk_night.conf +0 -0
  339. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/syntax/tango.conf +0 -0
  340. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/text/lipsum.txt +0 -0
  341. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/themes/cyberpunk_night.conf +0 -0
  342. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/themes/default.conf +0 -0
  343. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/themes/default_dark.conf +0 -0
  344. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/themes/default_light.conf +0 -0
  345. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/themes/solarized_dark.conf +0 -0
  346. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/assets/themes/solarized_light.conf +0 -0
  347. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/core/item.py +0 -0
  348. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/core/options.py +0 -0
  349. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/core/projectdata.py +0 -0
  350. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/core/projectxml.py +0 -0
  351. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/core/spellcheck.py +0 -0
  352. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/extensions/eventfilters.py +0 -0
  353. {novelWriter-2.3.1 → novelWriter-2.4rc1}/novelwriter/extensions/novelselector.py +0 -0
  354. {novelWriter-2.3.1 → novelWriter-2.4rc1}/setup/appimage_launcher.sh +0 -0
  355. {novelWriter-2.3.1 → novelWriter-2.4rc1}/setup/data/hicolor/128x128/apps/novelwriter.png +0 -0
  356. {novelWriter-2.3.1 → novelWriter-2.4rc1}/setup/data/hicolor/128x128/mimetypes/application-x-novelwriter-project.png +0 -0
  357. {novelWriter-2.3.1 → novelWriter-2.4rc1}/setup/data/hicolor/16x16/apps/novelwriter.png +0 -0
  358. {novelWriter-2.3.1 → novelWriter-2.4rc1}/setup/data/hicolor/16x16/mimetypes/application-x-novelwriter-project.png +0 -0
  359. {novelWriter-2.3.1 → novelWriter-2.4rc1}/setup/data/hicolor/24x24/apps/novelwriter.png +0 -0
  360. {novelWriter-2.3.1 → novelWriter-2.4rc1}/setup/data/hicolor/24x24/mimetypes/application-x-novelwriter-project.png +0 -0
  361. {novelWriter-2.3.1 → novelWriter-2.4rc1}/setup/data/hicolor/256x256/apps/novelwriter.png +0 -0
  362. {novelWriter-2.3.1 → novelWriter-2.4rc1}/setup/data/hicolor/256x256/mimetypes/application-x-novelwriter-project.png +0 -0
  363. {novelWriter-2.3.1 → novelWriter-2.4rc1}/setup/data/hicolor/32x32/apps/novelwriter.png +0 -0
  364. {novelWriter-2.3.1 → novelWriter-2.4rc1}/setup/data/hicolor/32x32/mimetypes/application-x-novelwriter-project.png +0 -0
  365. {novelWriter-2.3.1 → novelWriter-2.4rc1}/setup/data/hicolor/48x48/apps/novelwriter.png +0 -0
  366. {novelWriter-2.3.1 → novelWriter-2.4rc1}/setup/data/hicolor/48x48/mimetypes/application-x-novelwriter-project.png +0 -0
  367. {novelWriter-2.3.1 → novelWriter-2.4rc1}/setup/data/hicolor/512x512/apps/novelwriter.png +0 -0
  368. {novelWriter-2.3.1 → novelWriter-2.4rc1}/setup/data/hicolor/512x512/mimetypes/application-x-novelwriter-project.png +0 -0
  369. {novelWriter-2.3.1 → novelWriter-2.4rc1}/setup/data/hicolor/64x64/apps/novelwriter.png +0 -0
  370. {novelWriter-2.3.1 → novelWriter-2.4rc1}/setup/data/hicolor/64x64/mimetypes/application-x-novelwriter-project.png +0 -0
  371. {novelWriter-2.3.1 → novelWriter-2.4rc1}/setup/data/hicolor/scalable/apps/novelwriter.svg +0 -0
  372. {novelWriter-2.3.1 → novelWriter-2.4rc1}/setup/data/hicolor/scalable/mimetypes/application-x-novelwriter-project.svg +0 -0
  373. {novelWriter-2.3.1 → novelWriter-2.4rc1}/setup/data/novelwriter.desktop +0 -0
  374. {novelWriter-2.3.1 → novelWriter-2.4rc1}/setup/data/novelwriter.png +0 -0
  375. {novelWriter-2.3.1 → novelWriter-2.4rc1}/setup/data/x-novelwriter-project.xml +0 -0
  376. {novelWriter-2.3.1 → novelWriter-2.4rc1}/setup/debian/compat +0 -0
  377. {novelWriter-2.3.1 → novelWriter-2.4rc1}/setup/debian/control +0 -0
  378. {novelWriter-2.3.1 → novelWriter-2.4rc1}/setup/debian/copyright +0 -0
  379. {novelWriter-2.3.1 → novelWriter-2.4rc1}/setup/debian/install +0 -0
  380. {novelWriter-2.3.1 → novelWriter-2.4rc1}/setup/debian/py3dist-overrides +0 -0
  381. {novelWriter-2.3.1 → novelWriter-2.4rc1}/setup/debian/rules +0 -0
  382. {novelWriter-2.3.1 → novelWriter-2.4rc1}/setup/debian/source/format +0 -0
  383. {novelWriter-2.3.1 → novelWriter-2.4rc1}/setup/description_pypi.md +0 -0
  384. {novelWriter-2.3.1 → novelWriter-2.4rc1}/setup/description_short.txt +0 -0
  385. {novelWriter-2.3.1 → novelWriter-2.4rc1}/setup/icons/novelwriter.ico +0 -0
  386. {novelWriter-2.3.1 → novelWriter-2.4rc1}/setup/icons/novelwriter.svg +0 -0
  387. {novelWriter-2.3.1 → novelWriter-2.4rc1}/setup/icons/x-novelwriter-project.ico +0 -0
  388. {novelWriter-2.3.1 → novelWriter-2.4rc1}/setup/icons/x-novelwriter-project.svg +0 -0
  389. {novelWriter-2.3.1 → novelWriter-2.4rc1}/setup/iss_license.txt +0 -0
  390. {novelWriter-2.3.1 → novelWriter-2.4rc1}/setup/macos/App.entitlements +0 -0
  391. {novelWriter-2.3.1 → novelWriter-2.4rc1}/setup/macos/Info.plist.template +0 -0
  392. {novelWriter-2.3.1 → novelWriter-2.4rc1}/setup/macos/build.sh +0 -0
  393. {novelWriter-2.3.1 → novelWriter-2.4rc1}/setup/macos/novelwriter.iconset/icon_128x128.png +0 -0
  394. {novelWriter-2.3.1 → novelWriter-2.4rc1}/setup/macos/novelwriter.iconset/icon_128x128@2x.png +0 -0
  395. {novelWriter-2.3.1 → novelWriter-2.4rc1}/setup/macos/novelwriter.iconset/icon_16x16.png +0 -0
  396. {novelWriter-2.3.1 → novelWriter-2.4rc1}/setup/macos/novelwriter.iconset/icon_16x16@2x.png +0 -0
  397. {novelWriter-2.3.1 → novelWriter-2.4rc1}/setup/macos/novelwriter.iconset/icon_256x256.png +0 -0
  398. {novelWriter-2.3.1 → novelWriter-2.4rc1}/setup/macos/novelwriter.iconset/icon_256x256@2x.png +0 -0
  399. {novelWriter-2.3.1 → novelWriter-2.4rc1}/setup/macos/novelwriter.iconset/icon_32x32.png +0 -0
  400. {novelWriter-2.3.1 → novelWriter-2.4rc1}/setup/macos/novelwriter.iconset/icon_32x32@2x.png +0 -0
  401. {novelWriter-2.3.1 → novelWriter-2.4rc1}/setup/macos/novelwriter.iconset/icon_512x512.png +0 -0
  402. {novelWriter-2.3.1 → novelWriter-2.4rc1}/setup/macos/novelwriter.iconset/icon_512x512@2x.png +0 -0
  403. {novelWriter-2.3.1 → novelWriter-2.4rc1}/setup/make_clean.sh +0 -0
  404. {novelWriter-2.3.1 → novelWriter-2.4rc1}/setup/make_pip.sh +0 -0
  405. {novelWriter-2.3.1 → novelWriter-2.4rc1}/setup/make_release.sh +0 -0
  406. {novelWriter-2.3.1 → novelWriter-2.4rc1}/setup/novelwriter.appdata.xml +0 -0
  407. {novelWriter-2.3.1 → novelWriter-2.4rc1}/setup/novelwriter_readme.png +0 -0
  408. {novelWriter-2.3.1 → novelWriter-2.4rc1}/setup/novelwriter_text.png +0 -0
  409. {novelWriter-2.3.1 → novelWriter-2.4rc1}/setup/win_setup_embed.iss +0 -0
  410. {novelWriter-2.3.1 → novelWriter-2.4rc1}/setup/windows_install.bat +0 -0
  411. {novelWriter-2.3.1 → novelWriter-2.4rc1}/setup/windows_uninstall.bat +0 -0
@@ -1,5 +1,99 @@
1
1
  # novelWriter Changelog
2
2
 
3
+ ## Version 2.4 RC 1 [2024-04-06]
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 writing projects, and make frequent backups.
9
+
10
+ ### Detailed Changelog
11
+
12
+ **Bugfixes**
13
+
14
+ * A number of issues GUI icon scaling has been fixed. Icons and buttons are supposed to scale
15
+ relative to the GUI font size, but several of them were not. Issue #1787. PR #1788.
16
+ * The persistence of button state for the editor search box has been improved. The present state
17
+ was only saved when the search box was actively closed, and there were several scenarios where
18
+ this didn't happen. The button states are now tracked in the central config, and will always be
19
+ preserved. Issue #1794. PR #1795.
20
+
21
+ **Other Improvements**
22
+
23
+ * A placeholder icon has been added for cases where users have their own icon theme, and icons are
24
+ missing. Issue #1780. PR #1781.
25
+ * The project search now refreshes the search results for the currently open document when it's
26
+ being edited. PR #1782.
27
+ * When activating project search from the editor while text is selected, the search box is
28
+ populated with this text. Issue #1789. PR #1790.
29
+
30
+ **Packaging**
31
+
32
+ * The project has moved from using a `setup.cfg` to only using the `pyproject.toml` meta data file
33
+ for packaging. This is the preferred file format now. PR #1791.
34
+
35
+ **Code Improvements**
36
+
37
+ * The part of the code related to Qt widgets and flags has been updated and refactored in
38
+ preparation for the eventual move to the Qt6 framework. Part of issue #1142. PR #1792.
39
+ * The Open Document writer class has been refactored and improved. PR #1796.
40
+
41
+ ----
42
+
43
+ ## Version 2.4 Beta 1 [2024-03-26]
44
+
45
+ ### Release Notes
46
+
47
+ This is a beta release of the next release version, and is intended for testing purposes. Please be
48
+ careful when using this version on live writing projects, and make sure you take frequent backups.
49
+
50
+ ### Detailed Changelog
51
+
52
+ **Major Features**
53
+
54
+ * A global search feature has been added to the main sidebar. The search panel replaces the project
55
+ and novel tree when activated. PR #1775. Issue #894.
56
+ * A new shortcode to highlight text has been added. PR #1715. Issue #705.
57
+ * A new heading format for hard scene breaks has been added. It uses `###!` heading markup. The
58
+ only affect this has in the GUI is that these headings can be independently formatted in the
59
+ Manuscript tool. PR #1753. Issue #1050.
60
+ * The document editor and viewer now have a dropdown menu in the header listing all headings of the
61
+ current document for quick navigation. The list is capped at 30 entries. PR #1764. issue #1059.
62
+
63
+ **Build Tool Improvements**
64
+
65
+ * The Manuscript Build Tool now has a word stats section below the preview that shows a number of
66
+ word and character counts for the previewed text. PR #1717. Issues #1114 and #1116.
67
+ * The Manuscript Build Tool now shows an outline of the previewed document as a tab next to the
68
+ build settings list. PR #1768. Issue #1765.
69
+ * Tabs handling in HTML output now has a separate setting from the other format. PR #1723.
70
+ * Hard line breaks can now be excluded from Markdown builds. PR #1723. Issue #944.
71
+ * It is now possible to control the centring and page breaks of partition, chapter and scene
72
+ headings. PR #1723. Issues #1117 and #1661.
73
+ * Special titles (`#!`) can now be used in notes as well. PR #1723.
74
+ * Meta data categories can be filtered out from the manuscript. PR #1723. issue #1132.
75
+ * Any heading in a novel document can now be hidden in the manuscript. PR #1759. Issue #1756.
76
+ * First line of a paragraph can now be indented in the manuscript. PR #1761. Issue #906.
77
+ * Each meta data entry in HTML builds have a new class assigned to it that matches the tag used in
78
+ the text. PR #1767. Issue #1134.
79
+
80
+ **Other Improvements**
81
+
82
+ * The percentage progress counter in the editor document footer now counts progress per character
83
+ instead of per line. This is only noticeable on short documents. PR #1725.
84
+ * Some improvements have been made to terms on the GUI and some strings have been simplified in
85
+ order to be easier to understand and to translate. PR #1727. Issue #1726.
86
+ * Dates are now formatted according to the selected locale, if such a locale is available. If not,
87
+ it falls back to the local system locale. PR #1755. Issue #1739.
88
+
89
+ **Code Improvements**
90
+
91
+ * The tokenization of the novelWriter markup format has been refactored and improved. PR #1724.
92
+ * A way to read project documents fast has been added. It is useful many places in the code where
93
+ only the text is needed, not the meta data. PR #1777.
94
+
95
+ ----
96
+
3
97
  ## Version 2.3.1 [2024-03-17]
4
98
 
5
99
  ### Release Notes
@@ -58,9 +58,11 @@ Some of the assets bundled with novelWriter were adapted from the following sour
58
58
 
59
59
  ## Fonts
60
60
 
61
- The font used for the main novelWriter logo, mimetype and text banners is:
61
+ The font used for the main novelWriter logo, mimetype and text banners is Pridi. Other fonts are
62
+ used on buttons and icons.
62
63
 
63
64
  * Pridi by Cadson Demak (Open Font License, Version 1.1)
65
+ * Source Sans Pro by Paul D. Hunt (SIL Open Font License)
64
66
 
65
67
  ## Special Mentions
66
68
 
@@ -1,14 +1,13 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: novelWriter
3
- Version: 2.3.1
3
+ Version: 2.4rc1
4
4
  Summary: A markdown-like text editor for planning and writing novels
5
- Home-page: https://novelwriter.io
6
- Author: Veronica Berglyd Olsen
7
- Author-email: code@vkbo.net
5
+ Author-email: Veronica Berglyd Olsen <code@vkbo.net>
8
6
  License: GNU General Public License v3
9
- Project-URL: Bug Tracker, https://github.com/vkbo/novelWriter/issues
7
+ Project-URL: Homepage, https://novelwriter.io
10
8
  Project-URL: Documentation, https://docs.novelwriter.io
11
- Project-URL: Source Code, https://github.com/vkbo/novelWriter
9
+ Project-URL: Repository, https://github.com/vkbo/novelWriter
10
+ Project-URL: Issues, https://github.com/vkbo/novelWriter/issues
12
11
  Classifier: Programming Language :: Python :: 3 :: Only
13
12
  Classifier: Programming Language :: Python :: 3.8
14
13
  Classifier: Programming Language :: Python :: 3.9
@@ -1,14 +1,13 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: novelWriter
3
- Version: 2.3.1
3
+ Version: 2.4rc1
4
4
  Summary: A markdown-like text editor for planning and writing novels
5
- Home-page: https://novelwriter.io
6
- Author: Veronica Berglyd Olsen
7
- Author-email: code@vkbo.net
5
+ Author-email: Veronica Berglyd Olsen <code@vkbo.net>
8
6
  License: GNU General Public License v3
9
- Project-URL: Bug Tracker, https://github.com/vkbo/novelWriter/issues
7
+ Project-URL: Homepage, https://novelwriter.io
10
8
  Project-URL: Documentation, https://docs.novelwriter.io
11
- Project-URL: Source Code, https://github.com/vkbo/novelWriter
9
+ Project-URL: Repository, https://github.com/vkbo/novelWriter
10
+ Project-URL: Issues, https://github.com/vkbo/novelWriter/issues
12
11
  Classifier: Programming Language :: Python :: 3 :: Only
13
12
  Classifier: Programming Language :: Python :: 3.8
14
13
  Classifier: Programming Language :: Python :: 3.9
@@ -5,12 +5,10 @@ MANIFEST.in
5
5
  README.md
6
6
  pkgutils.py
7
7
  pyproject.toml
8
- setup.cfg
9
8
  novelWriter.egg-info/PKG-INFO
10
9
  novelWriter.egg-info/SOURCES.txt
11
10
  novelWriter.egg-info/dependency_links.txt
12
11
  novelWriter.egg-info/entry_points.txt
13
- novelWriter.egg-info/not-zip-safe
14
12
  novelWriter.egg-info/requires.txt
15
13
  novelWriter.egg-info/top_level.txt
16
14
  novelwriter/__init__.py
@@ -21,6 +19,7 @@ novelwriter/enum.py
21
19
  novelwriter/error.py
22
20
  novelwriter/guimain.py
23
21
  novelwriter/shared.py
22
+ novelwriter/types.py
24
23
  novelwriter/assets/manual.pdf
25
24
  novelwriter/assets/sample.zip
26
25
  novelwriter/assets/i18n/nw_de_DE.qm
@@ -46,6 +45,7 @@ novelwriter/assets/i18n/project_nn_NO.json
46
45
  novelwriter/assets/i18n/project_pt_BR.json
47
46
  novelwriter/assets/i18n/project_ru_RU.json
48
47
  novelwriter/assets/i18n/project_zh_CN.json
48
+ novelwriter/assets/icons/none.svg
49
49
  novelwriter/assets/icons/novelwriter.ico
50
50
  novelwriter/assets/icons/novelwriter.svg
51
51
  novelwriter/assets/icons/x-novelwriter-project.ico
@@ -83,6 +83,7 @@ novelwriter/assets/icons/typicons_dark/nw_tb-bold-md.svg
83
83
  novelwriter/assets/icons/typicons_dark/nw_tb-bold.svg
84
84
  novelwriter/assets/icons/typicons_dark/nw_tb-italic-md.svg
85
85
  novelwriter/assets/icons/typicons_dark/nw_tb-italic.svg
86
+ novelwriter/assets/icons/typicons_dark/nw_tb-mark.svg
86
87
  novelwriter/assets/icons/typicons_dark/nw_tb-strike-md.svg
87
88
  novelwriter/assets/icons/typicons_dark/nw_tb-strike.svg
88
89
  novelwriter/assets/icons/typicons_dark/nw_tb-subscript.svg
@@ -133,6 +134,7 @@ novelwriter/assets/icons/typicons_dark/typ_puzzle-outline.svg
133
134
  novelwriter/assets/icons/typicons_dark/typ_puzzle.svg
134
135
  novelwriter/assets/icons/typicons_dark/typ_refresh-flipped.svg
135
136
  novelwriter/assets/icons/typicons_dark/typ_refresh.svg
137
+ novelwriter/assets/icons/typicons_dark/typ_search-grey.svg
136
138
  novelwriter/assets/icons/typicons_dark/typ_search.svg
137
139
  novelwriter/assets/icons/typicons_dark/typ_star.svg
138
140
  novelwriter/assets/icons/typicons_dark/typ_stopwatch-grey.svg
@@ -142,6 +144,8 @@ novelwriter/assets/icons/typicons_dark/typ_th-list-grey.svg
142
144
  novelwriter/assets/icons/typicons_dark/typ_th-list.svg
143
145
  novelwriter/assets/icons/typicons_dark/typ_times.svg
144
146
  novelwriter/assets/icons/typicons_dark/typ_trash.svg
147
+ novelwriter/assets/icons/typicons_dark/typ_unfold-hidden.svg
148
+ novelwriter/assets/icons/typicons_dark/typ_unfold-visible.svg
145
149
  novelwriter/assets/icons/typicons_dark/typ_user.svg
146
150
  novelwriter/assets/icons/typicons_dark/typ_warning-full.svg
147
151
  novelwriter/assets/icons/typicons_light/README.md
@@ -177,6 +181,7 @@ novelwriter/assets/icons/typicons_light/nw_tb-bold-md.svg
177
181
  novelwriter/assets/icons/typicons_light/nw_tb-bold.svg
178
182
  novelwriter/assets/icons/typicons_light/nw_tb-italic-md.svg
179
183
  novelwriter/assets/icons/typicons_light/nw_tb-italic.svg
184
+ novelwriter/assets/icons/typicons_light/nw_tb-mark.svg
180
185
  novelwriter/assets/icons/typicons_light/nw_tb-strike-md.svg
181
186
  novelwriter/assets/icons/typicons_light/nw_tb-strike.svg
182
187
  novelwriter/assets/icons/typicons_light/nw_tb-subscript.svg
@@ -227,6 +232,7 @@ novelwriter/assets/icons/typicons_light/typ_puzzle-outline.svg
227
232
  novelwriter/assets/icons/typicons_light/typ_puzzle.svg
228
233
  novelwriter/assets/icons/typicons_light/typ_refresh-flipped.svg
229
234
  novelwriter/assets/icons/typicons_light/typ_refresh.svg
235
+ novelwriter/assets/icons/typicons_light/typ_search-grey.svg
230
236
  novelwriter/assets/icons/typicons_light/typ_search.svg
231
237
  novelwriter/assets/icons/typicons_light/typ_star.svg
232
238
  novelwriter/assets/icons/typicons_light/typ_stopwatch-grey.svg
@@ -236,6 +242,8 @@ novelwriter/assets/icons/typicons_light/typ_th-list-grey.svg
236
242
  novelwriter/assets/icons/typicons_light/typ_th-list.svg
237
243
  novelwriter/assets/icons/typicons_light/typ_times.svg
238
244
  novelwriter/assets/icons/typicons_light/typ_trash.svg
245
+ novelwriter/assets/icons/typicons_light/typ_unfold-hidden.svg
246
+ novelwriter/assets/icons/typicons_light/typ_unfold-visible.svg
239
247
  novelwriter/assets/icons/typicons_light/typ_user.svg
240
248
  novelwriter/assets/icons/typicons_light/typ_warning-full.svg
241
249
  novelwriter/assets/images/novelwriter-text-dark.svg
@@ -265,7 +273,6 @@ novelwriter/assets/themes/default_dark.conf
265
273
  novelwriter/assets/themes/default_light.conf
266
274
  novelwriter/assets/themes/solarized_dark.conf
267
275
  novelwriter/assets/themes/solarized_light.conf
268
- novelwriter/core/__init__.py
269
276
  novelwriter/core/buildsettings.py
270
277
  novelwriter/core/coretools.py
271
278
  novelwriter/core/docbuild.py
@@ -285,7 +292,6 @@ novelwriter/core/tokenizer.py
285
292
  novelwriter/core/tomd.py
286
293
  novelwriter/core/toodt.py
287
294
  novelwriter/core/tree.py
288
- novelwriter/dialogs/__init__.py
289
295
  novelwriter/dialogs/about.py
290
296
  novelwriter/dialogs/docmerge.py
291
297
  novelwriter/dialogs/docsplit.py
@@ -294,7 +300,6 @@ novelwriter/dialogs/preferences.py
294
300
  novelwriter/dialogs/projectsettings.py
295
301
  novelwriter/dialogs/quotes.py
296
302
  novelwriter/dialogs/wordlist.py
297
- novelwriter/extensions/__init__.py
298
303
  novelwriter/extensions/circularprogress.py
299
304
  novelwriter/extensions/configlayout.py
300
305
  novelwriter/extensions/eventfilters.py
@@ -306,7 +311,6 @@ novelwriter/extensions/statusled.py
306
311
  novelwriter/extensions/switch.py
307
312
  novelwriter/extensions/switchbox.py
308
313
  novelwriter/extensions/versioninfo.py
309
- novelwriter/gui/__init__.py
310
314
  novelwriter/gui/doceditor.py
311
315
  novelwriter/gui/dochighlight.py
312
316
  novelwriter/gui/docviewer.py
@@ -317,10 +321,11 @@ novelwriter/gui/mainmenu.py
317
321
  novelwriter/gui/noveltree.py
318
322
  novelwriter/gui/outline.py
319
323
  novelwriter/gui/projtree.py
324
+ novelwriter/gui/search.py
320
325
  novelwriter/gui/sidebar.py
321
326
  novelwriter/gui/statusbar.py
322
327
  novelwriter/gui/theme.py
323
- novelwriter/tools/__init__.py
328
+ novelwriter/text/counting.py
324
329
  novelwriter/tools/dictionaries.py
325
330
  novelwriter/tools/lipsum.py
326
331
  novelwriter/tools/manusbuild.py
@@ -42,9 +42,9 @@ __license__ = "GPLv3"
42
42
  __author__ = "Veronica Berglyd Olsen"
43
43
  __maintainer__ = "Veronica Berglyd Olsen"
44
44
  __email__ = "code@vkbo.net"
45
- __version__ = "2.3.1"
46
- __hexversion__ = "0x020301f0"
47
- __date__ = "2024-03-17"
45
+ __version__ = "2.4rc1"
46
+ __hexversion__ = "0x020400c1"
47
+ __date__ = "2024-04-06"
48
48
  __status__ = "Stable"
49
49
  __domain__ = "novelwriter.io"
50
50
 
@@ -187,7 +187,7 @@ def main(sysArgs: list | None = None):
187
187
  ))
188
188
  for errLine in errorData:
189
189
  logger.critical(errLine)
190
- errApp.exec_()
190
+ errApp.exec()
191
191
  sys.exit(errorCode)
192
192
 
193
193
  # Finish initialising config
@@ -195,7 +195,7 @@ def main(sysArgs: list | None = None):
195
195
 
196
196
  if CONFIG.osDarwin:
197
197
  try:
198
- from Foundation import NSBundle
198
+ from Foundation import NSBundle # type: ignore
199
199
  bundle = NSBundle.mainBundle()
200
200
  info = bundle.localizedInfoDictionary() or bundle.infoDictionary()
201
201
  info["CFBundleName"] = "novelWriter"
@@ -207,7 +207,7 @@ def main(sysArgs: list | None = None):
207
207
  try:
208
208
  import ctypes
209
209
  appID = f"io.novelwriter.{__version__}"
210
- ctypes.windll.shell32.SetCurrentProcessExplicitAppUserModelID(appID)
210
+ ctypes.windll.shell32.SetCurrentProcessExplicitAppUserModelID(appID) # type: ignore
211
211
  except Exception:
212
212
  logger.error("Failed to set application name")
213
213
  logException()
@@ -237,6 +237,6 @@ def main(sysArgs: list | None = None):
237
237
  nwGUI = GuiMain()
238
238
  nwGUI.postLaunchTasks(cmdOpen)
239
239
 
240
- sys.exit(nwApp.exec_())
240
+ sys.exit(nwApp.exec())
241
241
 
242
242
  # END Function main
@@ -0,0 +1,4 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
+ <path d="m0 0v4l8 8-8 8v4h4l8-8 8 8h4v-4l-8-8 8-8v-4h-4l-8 8-8-8h-4z" fill="#f00" stroke-width=".70711"/>
4
+ </svg>
@@ -53,6 +53,7 @@ fmt_bold = nw_tb-bold.svg
53
53
  fmt_bold-md = nw_tb-bold-md.svg
54
54
  fmt_italic = nw_tb-italic.svg
55
55
  fmt_italic-md = nw_tb-italic-md.svg
56
+ fmt_mark = nw_tb-mark.svg
56
57
  fmt_strike = nw_tb-strike.svg
57
58
  fmt_strike-md = nw_tb-strike-md.svg
58
59
  fmt_subscript = nw_tb-subscript.svg
@@ -99,12 +100,15 @@ status_time = typ_stopwatch-grey.svg
99
100
  sticky-off = typ_pin-outline.svg
100
101
  sticky-on = typ_pin.svg
101
102
  unchecked = mixed_input-unchecked.svg
103
+ unfold-hide = typ_unfold-hidden.svg
104
+ unfold-show = typ_unfold-visible.svg
102
105
  up = typ_chevron-up.svg
103
106
  view = typ_eye.svg
104
107
  view_build = typ_export-grey.svg
105
108
  view_editor = mixed_edit.svg
106
109
  view_novel = typ_book-grey.svg
107
110
  view_outline = typ_puzzle-outline.svg
111
+ view_search = typ_search-grey.svg
108
112
 
109
113
  deco_doc_h0 = nw_deco-h0.svg
110
114
  deco_doc_h0_n = nw_deco-h0.svg
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24" height="24" version="1.1" viewBox="0 0 6.35 6.35" xmlns="http://www.w3.org/2000/svg">
3
+ <rect x=".26458" y=".79375" width="5.8208" height="4.7625" fill="#ffff84" fill-opacity=".8" stroke-linecap="round" stroke-width=".1354"/>
4
+ <path d="m1.3229 5.2917v-4.2333h0.98087l0.6397 1.8829q0.060924 0.18829 0.11576 0.38957 0.054831 0.19479 0.11576 0.38957h0.024369q0.060924-0.19479 0.10966-0.38957 0.054831-0.20128 0.11576-0.38957l0.62752-1.8829h0.97478v4.2333h-0.81638v-1.5518q0-0.15583 0.012185-0.34412 0.012185-0.18829 0.030462-0.37658 0.018277-0.19479 0.036554-0.37658 0.018277-0.18829 0.036554-0.34412h-0.02437l-0.3229 1.0064-0.56659 1.6167h-0.49348l-0.56659-1.6167-0.3168-1.0064h-0.024369q0.018277 0.15583 0.036554 0.34412 0.018277 0.1818 0.036554 0.37658 0.018277 0.18829 0.030462 0.37658 0.012185 0.18829 0.012185 0.34412v1.5518z" fill="#808080" stroke-linecap="round" stroke-width=".11793"/>
5
+ <path d="m4.9555 5.5562v-0.43195h0.54619v-3.8986h-0.54619v-0.43195h1.1299v4.7624z" fill="#69c" stroke-width="1.1186"/>
6
+ <path d="m0.26458 5.5562v-4.7624h1.1299v0.43195h-0.54083v3.8986h0.54083v0.43195z" fill="#69c" stroke-width="1.1186"/>
7
+ </svg>
@@ -0,0 +1,4 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
+ <path d="m10.692 12.288h-7.692v-7.689c0.012-1.7022 1.0065-2.1116 2.2095-0.90734l1.731 1.7367c1.5225-1.1923 3.3855-1.8447 5.349-1.8447 2.325 0 4.5135 0.90583 6.156 2.5511 1.6485 1.6377 2.5545 3.8288 2.5545 6.1533 0 2.3291-0.906 4.5172-2.5515 6.1594-1.6455 1.6452-3.8325 2.5525-6.159 2.5525-2.325 0-4.5135-0.90734-6.159-2.554-0.444-0.44542-0.837-0.93132-1.17-1.4472-0.5205-0.81135-0.285-1.8897 0.525-2.4071 0.8085-0.51891 1.887-0.28344 2.406 0.5249 0.1995 0.31044 0.438 0.59988 0.702 0.86984 0.9885 0.98682 2.301 1.5297 3.696 1.5297 1.395 0 2.7075-0.5414 3.696-1.5297 0.9855-0.98682 1.53-2.2991 1.53-3.6969 0-1.3948-0.543-2.707-1.53-3.6908-0.9885-0.98682-2.301-1.5312-3.696-1.5312-1.032 0-2.019 0.30144-2.8635 0.85784l2.172 2.1761c1.2045 1.2027 0.795 2.1866-0.906 2.1866z" fill="#9c9" stroke-width="1.3332"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
+ <path d="m13.308 12.288h7.692v-7.689c-0.012-1.7022-1.0065-2.1116-2.2095-0.90734l-1.731 1.7367c-1.5225-1.1923-3.3855-1.8447-5.349-1.8447-2.325 0-4.5135 0.90583-6.156 2.5511-1.6485 1.6377-2.5545 3.8288-2.5545 6.1533 0 2.3291 0.906 4.5172 2.5515 6.1594 1.6455 1.6452 3.8325 2.5525 6.159 2.5525 2.325 0 4.5135-0.90734 6.159-2.554 0.444-0.44542 0.837-0.93132 1.17-1.4472 0.5205-0.81135 0.285-1.8897-0.525-2.4071-0.8085-0.51891-1.887-0.28344-2.406 0.5249-0.1995 0.31044-0.438 0.59988-0.702 0.86984-0.9885 0.98682-2.301 1.5297-3.696 1.5297-1.395 0-2.7075-0.5414-3.696-1.5297-0.9855-0.98682-1.53-2.2991-1.53-3.6969 0-1.3948 0.543-2.707 1.53-3.6908 0.9885-0.98682 2.301-1.5312 3.696-1.5312 1.032 0 2.019 0.30144 2.8635 0.85784l-2.172 2.1761c-1.2045 1.2027-0.795 2.1866 0.906 2.1866z" fill="#9c9" stroke-width="1.3332"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
+ <path d="m20.547 14.707-0.7017-0.703-0.98054-0.98185c0.29717-0.90068 0.46343-1.859 0.46343-2.8578 0-5.0519-4.112-9.1639-9.1639-9.1639s-9.1639 4.112-9.1639 9.1639c0 5.0519 4.112 9.1639 9.1639 9.1639 0.99887 0 1.9585-0.16626 2.8591-0.46343l0.98185 0.98054 1.9794 1.9768 0.07986 0.07986 0.08378 0.072c0.78679 0.66242 1.7647 1.0264 2.7544 1.0264 2.2596 0 4.0976-1.838 4.0976-4.0989 0-1.0997-0.4294-2.1313-1.2096-2.9037zm-16.93-4.5427c0-3.6093 2.9364-6.5457 6.5457-6.5457s6.5457 2.9364 6.5457 6.5457-2.9364 6.5457-6.5457 6.5457-6.5457-2.9364-6.5457-6.5457z" fill="#aeaeae" stroke-width="1.3091"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
+ <path d="m20.121 3.8786c-1.17-1.1715-3.072-1.1715-4.2421 0l-3.879 3.8791-3.879-3.8791c-1.17-1.1715-3.072-1.1715-4.2421 0-1.1715 1.1715-1.1715 3.0705 0 4.2421l3.8776 3.879-3.8776 3.879c-1.1715 1.1715-1.1715 3.0705 0 4.2421 0.58502 0.58652 1.353 0.87902 2.1211 0.87902 0.76801 0 1.5361-0.29251 2.1211-0.87902l3.879-3.879 3.879 3.879c0.58502 0.58652 1.353 0.87902 2.1211 0.87902 0.76801 0 1.5361-0.29251 2.1211-0.87902 1.1715-1.1715 1.1715-3.0705 0-4.2421l-3.8776-3.879 3.8776-3.879c1.1715-1.1715 1.1715-3.0705 0-4.2421z" fill="#d64848" stroke-width="1.5001"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
+ <path d="m9.8767 17.723 5.8157-5.723-5.8157-5.723c-0.18462-0.18462-0.46155-0.27693-0.64616-0.27693-0.18462 0-0.46155 0.092309-0.64616 0.27693-0.18462 0.18462-0.27693 0.36924-0.27693 0.64616v10.154c0 0.27693 0.092309 0.46154 0.27693 0.64616 0.18462 0.18462 0.46155 0.27693 0.64616 0.27693 0.18462 0 0.46155-0.09231 0.64616-0.27693z" fill="#aeaeae" stroke-width=".92309"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
+ <path d="m6.277 9.8767 5.723 5.8157 5.723-5.8157c0.18462-0.18462 0.27693-0.46155 0.27693-0.64616 0-0.18462-0.092309-0.46155-0.27693-0.64616-0.18462-0.18462-0.36924-0.27693-0.64616-0.27693h-10.154c-0.27693 0-0.46155 0.092309-0.64616 0.27693-0.18462 0.18462-0.27693 0.46155-0.27693 0.64616 0 0.18462 0.092309 0.46155 0.27693 0.64616z" fill="#aeaeae" stroke-width=".92309"/>
4
+ </svg>
@@ -53,6 +53,7 @@ fmt_bold = nw_tb-bold.svg
53
53
  fmt_bold-md = nw_tb-bold-md.svg
54
54
  fmt_italic = nw_tb-italic.svg
55
55
  fmt_italic-md = nw_tb-italic-md.svg
56
+ fmt_mark = nw_tb-mark.svg
56
57
  fmt_strike = nw_tb-strike.svg
57
58
  fmt_strike-md = nw_tb-strike-md.svg
58
59
  fmt_subscript = nw_tb-subscript.svg
@@ -99,12 +100,15 @@ status_time = typ_stopwatch-grey.svg
99
100
  sticky-off = typ_pin-outline.svg
100
101
  sticky-on = typ_pin.svg
101
102
  unchecked = mixed_input-unchecked.svg
103
+ unfold-hide = typ_unfold-hidden.svg
104
+ unfold-show = typ_unfold-visible.svg
102
105
  up = typ_chevron-up.svg
103
106
  view = typ_eye.svg
104
107
  view_build = typ_export-grey.svg
105
108
  view_editor = mixed_edit.svg
106
109
  view_novel = typ_book-grey.svg
107
110
  view_outline = typ_puzzle-outline.svg
111
+ view_search = typ_search-grey.svg
108
112
 
109
113
  deco_doc_h0 = nw_deco-h0.svg
110
114
  deco_doc_h0_n = nw_deco-h0.svg
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24" height="24" version="1.1" viewBox="0 0 6.35 6.35" xmlns="http://www.w3.org/2000/svg">
3
+ <rect x=".26458" y=".79375" width="5.8208" height="4.7625" fill="#ad8700" fill-opacity=".8" stroke-linecap="round" stroke-width=".1354"/>
4
+ <path d="m1.3229 5.2917v-4.2333h0.98087l0.6397 1.8829q0.060924 0.18829 0.11576 0.38957 0.054831 0.19479 0.11576 0.38957h0.024369q0.060924-0.19479 0.10966-0.38957 0.054831-0.20128 0.11576-0.38957l0.62752-1.8829h0.97478v4.2333h-0.81638v-1.5518q0-0.15583 0.012185-0.34412 0.012185-0.18829 0.030462-0.37658 0.018277-0.19479 0.036554-0.37658 0.018277-0.18829 0.036554-0.34412h-0.02437l-0.3229 1.0064-0.56659 1.6167h-0.49348l-0.56659-1.6167-0.3168-1.0064h-0.024369q0.018277 0.15583 0.036554 0.34412 0.018277 0.1818 0.036554 0.37658 0.018277 0.18829 0.030462 0.37658 0.012185 0.18829 0.012185 0.34412v1.5518z" fill-opacity=".78039" stroke-linecap="round" stroke-width=".11793"/>
5
+ <path d="m4.9555 5.5562v-0.43195h0.54619v-3.8986h-0.54619v-0.43195h1.1299v4.7624z" fill="#4271ae" stroke-width="1.1186"/>
6
+ <path d="m0.26458 5.5562v-4.7624h1.1299v0.43195h-0.54083v3.8986h0.54083v0.43195z" fill="#4271ae" stroke-width="1.1186"/>
7
+ </svg>
@@ -0,0 +1,4 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
+ <path d="m10.692 12.288h-7.692v-7.689c0.012-1.7022 1.0065-2.1116 2.2095-0.90734l1.731 1.7367c1.5225-1.1923 3.3855-1.8447 5.349-1.8447 2.325 0 4.5135 0.90583 6.156 2.5511 1.6485 1.6377 2.5545 3.8288 2.5545 6.1533 0 2.3291-0.906 4.5172-2.5515 6.1594-1.6455 1.6452-3.8325 2.5525-6.159 2.5525-2.325 0-4.5135-0.90734-6.159-2.554-0.444-0.44542-0.837-0.93132-1.17-1.4472-0.5205-0.81135-0.285-1.8897 0.525-2.4071 0.8085-0.51891 1.887-0.28344 2.406 0.5249 0.1995 0.31044 0.438 0.59988 0.702 0.86984 0.9885 0.98682 2.301 1.5297 3.696 1.5297 1.395 0 2.7075-0.5414 3.696-1.5297 0.9855-0.98682 1.53-2.2991 1.53-3.6969 0-1.3948-0.543-2.707-1.53-3.6908-0.9885-0.98682-2.301-1.5312-3.696-1.5312-1.032 0-2.019 0.30144-2.8635 0.85784l2.172 2.1761c1.2045 1.2027 0.795 2.1866-0.906 2.1866z" fill="#718c00" stroke-width="1.4998"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
+ <path d="m13.308 12.288h7.692v-7.689c-0.012001-1.7022-1.0065-2.1116-2.2095-0.90734l-1.731 1.7367c-1.5225-1.1923-3.3855-1.8447-5.349-1.8447-2.325 0-4.5135 0.90583-6.156 2.5511-1.6485 1.6377-2.5545 3.8288-2.5545 6.1533 0 2.3291 0.906 4.5172 2.5515 6.1594 1.6455 1.6452 3.8325 2.5525 6.159 2.5525 2.325 0 4.5135-0.90734 6.159-2.554 0.444-0.44542 0.837-0.93132 1.17-1.4472 0.5205-0.81135 0.285-1.8897-0.525-2.4071-0.8085-0.51891-1.887-0.28344-2.406 0.5249-0.1995 0.31044-0.438 0.59988-0.702 0.86984-0.9885 0.98682-2.301 1.5297-3.696 1.5297-1.395 0-2.7075-0.5414-3.696-1.5297-0.9855-0.98682-1.53-2.2991-1.53-3.6969 0-1.3948 0.543-2.707 1.53-3.6908 0.9885-0.98682 2.301-1.5312 3.696-1.5312 1.032 0 2.019 0.30144 2.8635 0.85784l-2.172 2.1761c-1.2045 1.2027-0.795 2.1866 0.906 2.1866z" fill="#718c00" stroke-width="1.4998"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
+ <path d="m20.547 14.707-0.7017-0.703-0.98054-0.98185c0.29717-0.90068 0.46343-1.859 0.46343-2.8578 0-5.0519-4.112-9.1639-9.1639-9.1639s-9.1639 4.112-9.1639 9.1639c0 5.0519 4.112 9.1639 9.1639 9.1639 0.99887 0 1.9585-0.16626 2.8591-0.46343l0.98185 0.98054 1.9794 1.9768 0.07986 0.07986 0.08378 0.072c0.78679 0.66242 1.7647 1.0264 2.7544 1.0264 2.2596 0 4.0976-1.838 4.0976-4.0989 0-1.0997-0.4294-2.1313-1.2096-2.9037zm-16.93-4.5427c0-3.6093 2.9364-6.5457 6.5457-6.5457s6.5457 2.9364 6.5457 6.5457-2.9364 6.5457-6.5457 6.5457-6.5457-2.9364-6.5457-6.5457z" fill-opacity=".78039" stroke-width="1.3091"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
+ <path d="m20.121 3.8786c-1.17-1.1715-3.072-1.1715-4.2421 0l-3.879 3.8791-3.879-3.8791c-1.17-1.1715-3.072-1.1715-4.2421 0-1.1715 1.1715-1.1715 3.0705 0 4.2421l3.8776 3.879-3.8776 3.879c-1.1715 1.1715-1.1715 3.0705 0 4.2421 0.58502 0.58652 1.353 0.87902 2.1211 0.87902 0.76801 0 1.5361-0.29251 2.1211-0.87902l3.879-3.879 3.879 3.879c0.58502 0.58652 1.353 0.87902 2.1211 0.87902 0.76801 0 1.5361-0.29251 2.1211-0.87902 1.1715-1.1715 1.1715-3.0705 0-4.2421l-3.8776-3.879 3.8776-3.879c1.1715-1.1715 1.1715-3.0705 0-4.2421z" fill="#c82829" stroke-width="1.5001"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
+ <path d="m9.8767 17.723 5.8157-5.723-5.8157-5.723c-0.18462-0.18462-0.46155-0.27693-0.64616-0.27693-0.18462 0-0.46155 0.092309-0.64616 0.27693-0.18462 0.18462-0.27693 0.36924-0.27693 0.64616v10.154c0 0.27693 0.092309 0.46154 0.27693 0.64616 0.18462 0.18462 0.46155 0.27693 0.64616 0.27693 0.18462 0 0.46155-0.09231 0.64616-0.27693z" fill-opacity=".78039" stroke-width="1.6923"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
+ <path d="m6.277 9.8767 5.723 5.8157 5.723-5.8157c0.18462-0.18462 0.27693-0.46155 0.27693-0.64616 0-0.18462-0.09231-0.46155-0.27693-0.64616-0.18462-0.18462-0.36924-0.27693-0.64616-0.27693h-10.154c-0.27693 0-0.46155 0.092309-0.64616 0.27693-0.18462 0.18462-0.27693 0.46155-0.27693 0.64616 0 0.18462 0.092309 0.46155 0.27693 0.64616z" fill-opacity=".78039" stroke-width="1.6923"/>
4
+ </svg>
@@ -25,3 +25,4 @@ spellcheckline = 200, 46, 0
25
25
  errorline = 46, 200, 0
26
26
  replacetag = 0, 184, 46
27
27
  modifier = 200, 120, 0
28
+ texthighlight = 136, 200, 0, 96
@@ -25,3 +25,4 @@ spellcheckline = 200, 0, 0
25
25
  errorline = 0, 150, 0
26
26
  replacetag = 0, 150, 0
27
27
  modifier = 150, 110, 30
28
+ texthighlight = 150, 150, 0, 96
@@ -25,3 +25,4 @@ spellcheckline = 200, 46, 0
25
25
  errorline = 46, 200, 0
26
26
  replacetag = 225, 225, 225
27
27
  modifier = 225, 225, 225
28
+ texthighlight = 255, 255, 255, 64
@@ -25,3 +25,4 @@ spellcheckline = 200, 0, 0
25
25
  errorline = 0, 150, 0
26
26
  replacetag = 0, 0, 0
27
27
  modifier = 0, 0, 0
28
+ texthighlight = 0, 0, 0, 64
@@ -45,3 +45,4 @@ spellcheckline = 222, 61, 58
45
45
  errorline = 8, 145, 106
46
46
  replacetag = 42, 162, 152
47
47
  modifier = 224, 175, 5
48
+ texthighlight = 218, 170, 1, 96
@@ -45,3 +45,4 @@ spellcheckline = 247, 140, 108
45
45
  errorline = 173, 219, 103
46
46
  replacetag = 127, 219, 202
47
47
  modifier = 236, 196, 141
48
+ texthighlight = 255, 235, 149, 96
@@ -25,3 +25,4 @@ spellcheckline = 203, 75, 22
25
25
  errorline = 220, 50, 47
26
26
  replacetag = 133, 153, 0
27
27
  modifier = 181, 137, 0
28
+ texthighlight = 181, 137, 0, 96
@@ -25,3 +25,4 @@ spellcheckline = 203, 75, 22
25
25
  errorline = 220, 50, 47
26
26
  replacetag = 133, 153, 0
27
27
  modifier = 181, 137, 0
28
+ texthighlight = 181, 137, 0, 96
@@ -45,3 +45,4 @@ spellcheckline = 240, 40, 41
45
45
  errorline = 113, 140, 0
46
46
  replacetag = 62, 153, 159
47
47
  modifier = 245, 135, 31
48
+ texthighlight = 234, 183, 0, 96
@@ -45,3 +45,4 @@ spellcheckline = 204, 102, 102
45
45
  errorline = 181, 189, 104
46
46
  replacetag = 138, 190, 183
47
47
  modifier = 222, 147, 95
48
+ texthighlight = 240, 198, 116, 96
@@ -45,3 +45,4 @@ spellcheckline = 255, 157, 164
45
45
  errorline = 209, 241, 169
46
46
  replacetag = 153, 255, 255
47
47
  modifier = 255, 197, 143
48
+ texthighlight = 255, 238, 173, 96
@@ -45,3 +45,4 @@ spellcheckline = 213, 78, 83
45
45
  errorline = 185, 202, 74
46
46
  replacetag = 112, 192, 177
47
47
  modifier = 231, 140, 69
48
+ texthighlight = 231, 197, 71, 128
@@ -45,3 +45,4 @@ spellcheckline = 242, 119, 122
45
45
  errorline = 153, 204, 153
46
46
  replacetag = 102, 204, 204
47
47
  modifier = 249, 145, 57
48
+ texthighlight = 255, 204, 102, 96