novelWriter 2.2b1__tar.gz → 2.2rc1__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 (380) hide show
  1. {novelWriter-2.2b1 → novelWriter-2.2rc1}/CHANGELOG.md +117 -49
  2. {novelWriter-2.2b1 → novelWriter-2.2rc1}/PKG-INFO +3 -3
  3. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelWriter.egg-info/PKG-INFO +3 -3
  4. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelWriter.egg-info/SOURCES.txt +14 -2
  5. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/__init__.py +3 -3
  6. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/i18n/project_en_GB.json +1 -0
  7. novelWriter-2.2rc1/novelwriter/assets/icons/novelwriter.ico +0 -0
  8. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/icons.conf +8 -1
  9. novelWriter-2.2rc1/novelwriter/assets/icons/typicons_dark/nw_deco-h2-narrow.svg +4 -0
  10. novelWriter-2.2rc1/novelwriter/assets/icons/typicons_dark/nw_deco-h3-narrow.svg +4 -0
  11. novelWriter-2.2rc1/novelwriter/assets/icons/typicons_dark/nw_deco-h4-narrow.svg +4 -0
  12. novelWriter-2.2rc1/novelwriter/assets/icons/typicons_dark/nw_deco-note.svg +4 -0
  13. novelWriter-2.2rc1/novelwriter/assets/icons/typicons_dark/nw_panel.svg +4 -0
  14. novelWriter-2.2rc1/novelwriter/assets/icons/typicons_dark/typ_eye.svg +4 -0
  15. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/icons.conf +8 -1
  16. novelWriter-2.2rc1/novelwriter/assets/icons/typicons_light/nw_deco-h2-narrow.svg +4 -0
  17. novelWriter-2.2rc1/novelwriter/assets/icons/typicons_light/nw_deco-h3-narrow.svg +4 -0
  18. novelWriter-2.2rc1/novelwriter/assets/icons/typicons_light/nw_deco-h4-narrow.svg +4 -0
  19. novelWriter-2.2rc1/novelwriter/assets/icons/typicons_light/nw_deco-note.svg +4 -0
  20. novelWriter-2.2rc1/novelwriter/assets/icons/typicons_light/nw_panel.svg +4 -0
  21. novelWriter-2.2rc1/novelwriter/assets/icons/typicons_light/typ_eye.svg +4 -0
  22. novelWriter-2.2rc1/novelwriter/assets/icons/x-novelwriter-project.ico +0 -0
  23. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/manual.pdf +0 -0
  24. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/sample.zip +0 -0
  25. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/text/release_notes.htm +4 -4
  26. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/common.py +22 -1
  27. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/config.py +12 -27
  28. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/constants.py +20 -3
  29. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/core/buildsettings.py +1 -1
  30. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/core/coretools.py +6 -1
  31. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/core/index.py +100 -34
  32. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/core/options.py +3 -0
  33. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/core/project.py +2 -2
  34. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/core/projectdata.py +1 -1
  35. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/core/tohtml.py +9 -3
  36. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/core/tokenizer.py +27 -20
  37. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/core/tomd.py +4 -0
  38. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/core/toodt.py +11 -4
  39. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/dialogs/preferences.py +80 -82
  40. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/dialogs/updates.py +25 -14
  41. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/enum.py +14 -4
  42. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/gui/doceditor.py +282 -177
  43. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/gui/dochighlight.py +7 -9
  44. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/gui/docviewer.py +142 -319
  45. novelWriter-2.2rc1/novelwriter/gui/docviewerpanel.py +457 -0
  46. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/gui/editordocument.py +1 -1
  47. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/gui/mainmenu.py +16 -7
  48. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/gui/outline.py +10 -6
  49. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/gui/projtree.py +461 -376
  50. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/gui/sidebar.py +3 -3
  51. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/gui/statusbar.py +1 -1
  52. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/gui/theme.py +21 -2
  53. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/guimain.py +86 -32
  54. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/shared.py +23 -1
  55. novelWriter-2.2rc1/novelwriter/tools/dictionaries.py +268 -0
  56. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/tools/manusbuild.py +17 -6
  57. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/tools/manuscript.py +1 -1
  58. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/tools/writingstats.py +1 -1
  59. {novelWriter-2.2b1 → novelWriter-2.2rc1}/setup/description_pypi.md +2 -2
  60. novelWriter-2.2rc1/setup/icons/novelwriter.ico +0 -0
  61. novelWriter-2.2rc1/setup/icons/x-novelwriter-project.ico +0 -0
  62. {novelWriter-2.2b1 → novelWriter-2.2rc1}/setup/make_release.sh +2 -2
  63. novelWriter-2.2b1/novelwriter/assets/icons/novelwriter.ico +0 -0
  64. novelWriter-2.2b1/novelwriter/assets/icons/typicons_dark/typ_at.svg +0 -4
  65. novelWriter-2.2b1/novelwriter/assets/icons/typicons_light/typ_at.svg +0 -4
  66. novelWriter-2.2b1/novelwriter/assets/icons/x-novelwriter-project.ico +0 -0
  67. novelWriter-2.2b1/setup/icons/novelwriter.ico +0 -0
  68. novelWriter-2.2b1/setup/icons/x-novelwriter-project.ico +0 -0
  69. {novelWriter-2.2b1 → novelWriter-2.2rc1}/CREDITS.md +0 -0
  70. {novelWriter-2.2b1 → novelWriter-2.2rc1}/LICENSE.md +0 -0
  71. {novelWriter-2.2b1 → novelWriter-2.2rc1}/MANIFEST.in +0 -0
  72. {novelWriter-2.2b1 → novelWriter-2.2rc1}/README.md +0 -0
  73. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelWriter.egg-info/dependency_links.txt +0 -0
  74. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelWriter.egg-info/entry_points.txt +0 -0
  75. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelWriter.egg-info/not-zip-safe +0 -0
  76. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelWriter.egg-info/requires.txt +0 -0
  77. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelWriter.egg-info/top_level.txt +0 -0
  78. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/i18n/nw_de_DE.qm +0 -0
  79. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/i18n/nw_en_US.qm +0 -0
  80. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/i18n/nw_es_419.qm +0 -0
  81. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/i18n/nw_fr_FR.qm +0 -0
  82. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/i18n/nw_it_IT.qm +0 -0
  83. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/i18n/nw_ja_JP.qm +0 -0
  84. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/i18n/nw_nb_NO.qm +0 -0
  85. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/i18n/nw_nl_NL.qm +0 -0
  86. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/i18n/nw_pt_BR.qm +0 -0
  87. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/i18n/nw_zh_CN.qm +0 -0
  88. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/i18n/project_de_DE.json +0 -0
  89. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/i18n/project_en_US.json +0 -0
  90. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/i18n/project_es_419.json +0 -0
  91. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/i18n/project_fr_FR.json +0 -0
  92. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/i18n/project_it_IT.json +0 -0
  93. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/i18n/project_ja_JP.json +0 -0
  94. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/i18n/project_nb_NO.json +0 -0
  95. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/i18n/project_nl_NL.json +0 -0
  96. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/i18n/project_nn_NO.json +0 -0
  97. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/i18n/project_pt_BR.json +0 -0
  98. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/i18n/project_ru_RU.json +0 -0
  99. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/i18n/project_zh_CN.json +0 -0
  100. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/novelwriter.svg +0 -0
  101. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/README.md +0 -0
  102. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/mixed_document-chapter.svg +0 -0
  103. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/mixed_document-note.svg +0 -0
  104. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/mixed_document-scene.svg +0 -0
  105. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/mixed_document-section.svg +0 -0
  106. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/mixed_document-title.svg +0 -0
  107. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/mixed_edit.svg +0 -0
  108. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/mixed_input-checked.svg +0 -0
  109. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/mixed_input-none.svg +0 -0
  110. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/mixed_input-unchecked.svg +0 -0
  111. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/mixed_search-replace.svg +0 -0
  112. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/nw_deco-h0.svg +0 -0
  113. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/nw_deco-h1.svg +0 -0
  114. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/nw_deco-h2.svg +0 -0
  115. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/nw_deco-h3.svg +0 -0
  116. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/nw_deco-h4.svg +0 -0
  117. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/nw_deco-noveltree-more.svg +0 -0
  118. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/nw_search-case.svg +0 -0
  119. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/nw_search-preserve.svg +0 -0
  120. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/nw_search-regex.svg +0 -0
  121. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/nw_search-word.svg +0 -0
  122. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/nw_tb-bold.svg +0 -0
  123. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/nw_tb-italic.svg +0 -0
  124. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/nw_tb-markdown.svg +0 -0
  125. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/nw_tb-shortcode.svg +0 -0
  126. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/nw_tb-strike.svg +0 -0
  127. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/nw_tb-subscript.svg +0 -0
  128. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/nw_tb-superscript.svg +0 -0
  129. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/nw_tb-underline.svg +0 -0
  130. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_arrow-down-thick-grey.svg +0 -0
  131. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_arrow-forward.svg +0 -0
  132. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_arrow-maximise.svg +0 -0
  133. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_arrow-minimise.svg +0 -0
  134. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_arrow-repeat-grey.svg +0 -0
  135. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_book-grey.svg +0 -0
  136. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_book.svg +0 -0
  137. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_bookmark.svg +0 -0
  138. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_calendar.svg +0 -0
  139. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_cancel-grey.svg +0 -0
  140. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_cancel.svg +0 -0
  141. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_chart-bar-grey.svg +0 -0
  142. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_chevron-down.svg +0 -0
  143. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_chevron-left.svg +0 -0
  144. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_chevron-right.svg +0 -0
  145. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_chevron-up.svg +0 -0
  146. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_cog.svg +0 -0
  147. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_delete-full.svg +0 -0
  148. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_delete.svg +0 -0
  149. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_directions-full.svg +0 -0
  150. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_document-text.svg +0 -0
  151. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_export-grey.svg +0 -0
  152. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_export.svg +0 -0
  153. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_flag.svg +0 -0
  154. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_folder-open.svg +0 -0
  155. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_folder.svg +0 -0
  156. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_globe-grey.svg +0 -0
  157. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_key.svg +0 -0
  158. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_lightbulb-full.svg +0 -0
  159. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_location.svg +0 -0
  160. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_media-pause-grey.svg +0 -0
  161. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_media-record-outline.svg +0 -0
  162. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_media-record.svg +0 -0
  163. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_minus.svg +0 -0
  164. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_pencil.svg +0 -0
  165. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_pin-outline.svg +0 -0
  166. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_pin.svg +0 -0
  167. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_plus.svg +0 -0
  168. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_puzzle-outline.svg +0 -0
  169. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_puzzle.svg +0 -0
  170. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_refresh-flipped.svg +0 -0
  171. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_refresh.svg +0 -0
  172. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_search.svg +0 -0
  173. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_star.svg +0 -0
  174. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_stopwatch-grey.svg +0 -0
  175. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_th-dot-menu.svg +0 -0
  176. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_th-list-grey.svg +0 -0
  177. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_times.svg +0 -0
  178. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_trash.svg +0 -0
  179. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_user.svg +0 -0
  180. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_warning-full.svg +0 -0
  181. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/README.md +0 -0
  182. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/mixed_document-chapter.svg +0 -0
  183. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/mixed_document-note.svg +0 -0
  184. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/mixed_document-scene.svg +0 -0
  185. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/mixed_document-section.svg +0 -0
  186. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/mixed_document-title.svg +0 -0
  187. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/mixed_edit.svg +0 -0
  188. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/mixed_input-checked.svg +0 -0
  189. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/mixed_input-none.svg +0 -0
  190. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/mixed_input-unchecked.svg +0 -0
  191. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/mixed_search-replace.svg +0 -0
  192. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/nw_deco-h0.svg +0 -0
  193. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/nw_deco-h1.svg +0 -0
  194. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/nw_deco-h2.svg +0 -0
  195. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/nw_deco-h3.svg +0 -0
  196. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/nw_deco-h4.svg +0 -0
  197. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/nw_deco-noveltree-more.svg +0 -0
  198. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/nw_search-case.svg +0 -0
  199. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/nw_search-preserve.svg +0 -0
  200. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/nw_search-regex.svg +0 -0
  201. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/nw_search-word.svg +0 -0
  202. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/nw_tb-bold.svg +0 -0
  203. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/nw_tb-italic.svg +0 -0
  204. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/nw_tb-markdown.svg +0 -0
  205. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/nw_tb-shortcode.svg +0 -0
  206. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/nw_tb-strike.svg +0 -0
  207. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/nw_tb-subscript.svg +0 -0
  208. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/nw_tb-superscript.svg +0 -0
  209. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/nw_tb-underline.svg +0 -0
  210. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_arrow-down-thick-grey.svg +0 -0
  211. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_arrow-forward.svg +0 -0
  212. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_arrow-maximise.svg +0 -0
  213. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_arrow-minimise.svg +0 -0
  214. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_arrow-repeat-grey.svg +0 -0
  215. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_book-grey.svg +0 -0
  216. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_book.svg +0 -0
  217. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_bookmark.svg +0 -0
  218. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_calendar.svg +0 -0
  219. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_cancel-grey.svg +0 -0
  220. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_cancel.svg +0 -0
  221. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_chart-bar-grey.svg +0 -0
  222. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_chevron-down.svg +0 -0
  223. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_chevron-left.svg +0 -0
  224. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_chevron-right.svg +0 -0
  225. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_chevron-up.svg +0 -0
  226. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_cog.svg +0 -0
  227. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_delete-full.svg +0 -0
  228. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_delete.svg +0 -0
  229. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_directions-full.svg +0 -0
  230. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_document-text.svg +0 -0
  231. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_export-grey.svg +0 -0
  232. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_export.svg +0 -0
  233. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_flag.svg +0 -0
  234. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_folder-open.svg +0 -0
  235. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_folder.svg +0 -0
  236. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_globe-grey.svg +0 -0
  237. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_key.svg +0 -0
  238. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_lightbulb-full.svg +0 -0
  239. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_location.svg +0 -0
  240. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_media-pause-grey.svg +0 -0
  241. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_media-record-outline.svg +0 -0
  242. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_media-record.svg +0 -0
  243. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_minus.svg +0 -0
  244. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_pencil.svg +0 -0
  245. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_pin-outline.svg +0 -0
  246. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_pin.svg +0 -0
  247. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_plus.svg +0 -0
  248. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_puzzle-outline.svg +0 -0
  249. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_puzzle.svg +0 -0
  250. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_refresh-flipped.svg +0 -0
  251. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_refresh.svg +0 -0
  252. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_search.svg +0 -0
  253. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_star.svg +0 -0
  254. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_stopwatch-grey.svg +0 -0
  255. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_th-dot-menu.svg +0 -0
  256. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_th-list-grey.svg +0 -0
  257. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_times.svg +0 -0
  258. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_trash.svg +0 -0
  259. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_user.svg +0 -0
  260. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_warning-full.svg +0 -0
  261. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/icons/x-novelwriter-project.svg +0 -0
  262. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/images/wizard-back.jpg +0 -0
  263. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/syntax/default_dark.conf +0 -0
  264. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/syntax/default_light.conf +0 -0
  265. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/syntax/grey_dark.conf +0 -0
  266. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/syntax/grey_light.conf +0 -0
  267. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/syntax/light_owl.conf +0 -0
  268. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/syntax/night_owl.conf +0 -0
  269. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/syntax/solarized_dark.conf +0 -0
  270. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/syntax/solarized_light.conf +0 -0
  271. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/syntax/tomorrow.conf +0 -0
  272. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/syntax/tomorrow_night.conf +0 -0
  273. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/syntax/tomorrow_night_blue.conf +0 -0
  274. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/syntax/tomorrow_night_bright.conf +0 -0
  275. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/syntax/tomorrow_night_eighties.conf +0 -0
  276. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/text/credits_en.htm +0 -0
  277. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/text/gplv3_en.htm +0 -0
  278. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/text/lipsum.txt +0 -0
  279. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/themes/default.conf +0 -0
  280. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/themes/default_dark.conf +0 -0
  281. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/themes/default_light.conf +0 -0
  282. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/themes/solarized_dark.conf +0 -0
  283. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/assets/themes/solarized_light.conf +0 -0
  284. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/core/__init__.py +0 -0
  285. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/core/docbuild.py +0 -0
  286. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/core/document.py +0 -0
  287. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/core/item.py +0 -0
  288. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/core/projectxml.py +0 -0
  289. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/core/sessions.py +0 -0
  290. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/core/spellcheck.py +0 -0
  291. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/core/status.py +0 -0
  292. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/core/storage.py +0 -0
  293. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/core/tree.py +0 -0
  294. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/dialogs/__init__.py +0 -0
  295. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/dialogs/about.py +0 -0
  296. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/dialogs/docmerge.py +0 -0
  297. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/dialogs/docsplit.py +0 -0
  298. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/dialogs/editlabel.py +0 -0
  299. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/dialogs/projdetails.py +0 -0
  300. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/dialogs/projload.py +0 -0
  301. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/dialogs/projsettings.py +0 -0
  302. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/dialogs/quotes.py +0 -0
  303. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/dialogs/wordlist.py +0 -0
  304. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/error.py +0 -0
  305. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/extensions/__init__.py +0 -0
  306. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/extensions/circularprogress.py +0 -0
  307. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/extensions/configlayout.py +0 -0
  308. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/extensions/novelselector.py +0 -0
  309. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/extensions/pageddialog.py +0 -0
  310. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/extensions/pagedsidebar.py +0 -0
  311. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/extensions/simpleprogress.py +0 -0
  312. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/extensions/statusled.py +0 -0
  313. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/extensions/switch.py +0 -0
  314. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/extensions/switchbox.py +0 -0
  315. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/extensions/wheeleventfilter.py +0 -0
  316. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/gui/__init__.py +0 -0
  317. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/gui/itemdetails.py +0 -0
  318. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/gui/noveltree.py +0 -0
  319. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/tools/__init__.py +0 -0
  320. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/tools/lipsum.py +0 -0
  321. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/tools/manussettings.py +0 -0
  322. {novelWriter-2.2b1 → novelWriter-2.2rc1}/novelwriter/tools/projwizard.py +0 -0
  323. {novelWriter-2.2b1 → novelWriter-2.2rc1}/pkgutils.py +0 -0
  324. {novelWriter-2.2b1 → novelWriter-2.2rc1}/pyproject.toml +0 -0
  325. {novelWriter-2.2b1 → novelWriter-2.2rc1}/setup/appimage_launcher.sh +0 -0
  326. {novelWriter-2.2b1 → novelWriter-2.2rc1}/setup/data/hicolor/128x128/apps/novelwriter.png +0 -0
  327. {novelWriter-2.2b1 → novelWriter-2.2rc1}/setup/data/hicolor/128x128/mimetypes/application-x-novelwriter-project.png +0 -0
  328. {novelWriter-2.2b1 → novelWriter-2.2rc1}/setup/data/hicolor/16x16/apps/novelwriter.png +0 -0
  329. {novelWriter-2.2b1 → novelWriter-2.2rc1}/setup/data/hicolor/16x16/mimetypes/application-x-novelwriter-project.png +0 -0
  330. {novelWriter-2.2b1 → novelWriter-2.2rc1}/setup/data/hicolor/24x24/apps/novelwriter.png +0 -0
  331. {novelWriter-2.2b1 → novelWriter-2.2rc1}/setup/data/hicolor/24x24/mimetypes/application-x-novelwriter-project.png +0 -0
  332. {novelWriter-2.2b1 → novelWriter-2.2rc1}/setup/data/hicolor/256x256/apps/novelwriter.png +0 -0
  333. {novelWriter-2.2b1 → novelWriter-2.2rc1}/setup/data/hicolor/256x256/mimetypes/application-x-novelwriter-project.png +0 -0
  334. {novelWriter-2.2b1 → novelWriter-2.2rc1}/setup/data/hicolor/32x32/apps/novelwriter.png +0 -0
  335. {novelWriter-2.2b1 → novelWriter-2.2rc1}/setup/data/hicolor/32x32/mimetypes/application-x-novelwriter-project.png +0 -0
  336. {novelWriter-2.2b1 → novelWriter-2.2rc1}/setup/data/hicolor/48x48/apps/novelwriter.png +0 -0
  337. {novelWriter-2.2b1 → novelWriter-2.2rc1}/setup/data/hicolor/48x48/mimetypes/application-x-novelwriter-project.png +0 -0
  338. {novelWriter-2.2b1 → novelWriter-2.2rc1}/setup/data/hicolor/512x512/apps/novelwriter.png +0 -0
  339. {novelWriter-2.2b1 → novelWriter-2.2rc1}/setup/data/hicolor/512x512/mimetypes/application-x-novelwriter-project.png +0 -0
  340. {novelWriter-2.2b1 → novelWriter-2.2rc1}/setup/data/hicolor/64x64/apps/novelwriter.png +0 -0
  341. {novelWriter-2.2b1 → novelWriter-2.2rc1}/setup/data/hicolor/64x64/mimetypes/application-x-novelwriter-project.png +0 -0
  342. {novelWriter-2.2b1 → novelWriter-2.2rc1}/setup/data/hicolor/scalable/apps/novelwriter.svg +0 -0
  343. {novelWriter-2.2b1 → novelWriter-2.2rc1}/setup/data/hicolor/scalable/mimetypes/application-x-novelwriter-project.svg +0 -0
  344. {novelWriter-2.2b1 → novelWriter-2.2rc1}/setup/data/novelwriter.desktop +0 -0
  345. {novelWriter-2.2b1 → novelWriter-2.2rc1}/setup/data/novelwriter.png +0 -0
  346. {novelWriter-2.2b1 → novelWriter-2.2rc1}/setup/data/x-novelwriter-project.xml +0 -0
  347. {novelWriter-2.2b1 → novelWriter-2.2rc1}/setup/debian/compat +0 -0
  348. {novelWriter-2.2b1 → novelWriter-2.2rc1}/setup/debian/control +0 -0
  349. {novelWriter-2.2b1 → novelWriter-2.2rc1}/setup/debian/copyright +0 -0
  350. {novelWriter-2.2b1 → novelWriter-2.2rc1}/setup/debian/install +0 -0
  351. {novelWriter-2.2b1 → novelWriter-2.2rc1}/setup/debian/py3dist-overrides +0 -0
  352. {novelWriter-2.2b1 → novelWriter-2.2rc1}/setup/debian/rules +0 -0
  353. {novelWriter-2.2b1 → novelWriter-2.2rc1}/setup/debian/source/format +0 -0
  354. {novelWriter-2.2b1 → novelWriter-2.2rc1}/setup/description_short.txt +0 -0
  355. {novelWriter-2.2b1 → novelWriter-2.2rc1}/setup/icons/novelwriter.svg +0 -0
  356. {novelWriter-2.2b1 → novelWriter-2.2rc1}/setup/icons/x-novelwriter-project.svg +0 -0
  357. {novelWriter-2.2b1 → novelWriter-2.2rc1}/setup/iss_license.txt +0 -0
  358. {novelWriter-2.2b1 → novelWriter-2.2rc1}/setup/macos/App.entitlements +0 -0
  359. {novelWriter-2.2b1 → novelWriter-2.2rc1}/setup/macos/Info.plist.template +0 -0
  360. {novelWriter-2.2b1 → novelWriter-2.2rc1}/setup/macos/build.sh +0 -0
  361. {novelWriter-2.2b1 → novelWriter-2.2rc1}/setup/macos/novelwriter.iconset/icon_128x128.png +0 -0
  362. {novelWriter-2.2b1 → novelWriter-2.2rc1}/setup/macos/novelwriter.iconset/icon_128x128@2x.png +0 -0
  363. {novelWriter-2.2b1 → novelWriter-2.2rc1}/setup/macos/novelwriter.iconset/icon_16x16.png +0 -0
  364. {novelWriter-2.2b1 → novelWriter-2.2rc1}/setup/macos/novelwriter.iconset/icon_16x16@2x.png +0 -0
  365. {novelWriter-2.2b1 → novelWriter-2.2rc1}/setup/macos/novelwriter.iconset/icon_256x256.png +0 -0
  366. {novelWriter-2.2b1 → novelWriter-2.2rc1}/setup/macos/novelwriter.iconset/icon_256x256@2x.png +0 -0
  367. {novelWriter-2.2b1 → novelWriter-2.2rc1}/setup/macos/novelwriter.iconset/icon_32x32.png +0 -0
  368. {novelWriter-2.2b1 → novelWriter-2.2rc1}/setup/macos/novelwriter.iconset/icon_32x32@2x.png +0 -0
  369. {novelWriter-2.2b1 → novelWriter-2.2rc1}/setup/macos/novelwriter.iconset/icon_512x512.png +0 -0
  370. {novelWriter-2.2b1 → novelWriter-2.2rc1}/setup/macos/novelwriter.iconset/icon_512x512@2x.png +0 -0
  371. {novelWriter-2.2b1 → novelWriter-2.2rc1}/setup/make_clean.sh +0 -0
  372. {novelWriter-2.2b1 → novelWriter-2.2rc1}/setup/make_pip.sh +0 -0
  373. {novelWriter-2.2b1 → novelWriter-2.2rc1}/setup/make_snapshot.sh +0 -0
  374. {novelWriter-2.2b1 → novelWriter-2.2rc1}/setup/novelwriter.appdata.xml +0 -0
  375. {novelWriter-2.2b1 → novelWriter-2.2rc1}/setup/novelwriter_readme.png +0 -0
  376. {novelWriter-2.2b1 → novelWriter-2.2rc1}/setup/novelwriter_text.png +0 -0
  377. {novelWriter-2.2b1 → novelWriter-2.2rc1}/setup/win_setup_embed.iss +0 -0
  378. {novelWriter-2.2b1 → novelWriter-2.2rc1}/setup/windows_install.bat +0 -0
  379. {novelWriter-2.2b1 → novelWriter-2.2rc1}/setup/windows_uninstall.bat +0 -0
  380. {novelWriter-2.2b1 → novelWriter-2.2rc1}/setup.cfg +0 -0
@@ -1,5 +1,73 @@
1
1
  # novelWriter Changelog
2
2
 
3
+ ## Version 2.2 RC 1 [2023-11-26]
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
+ Please check the changelog for an overview of changes. The full release notes will be added to the
12
+ final release.
13
+
14
+ ### Detailed Changelog
15
+
16
+ **Bugfixes**
17
+
18
+ * Revert the change of keyboard shortcut to delete a project tree item made in 2.2 Beta 1 as it
19
+ blocks certain features in the editor. This is a regression. PR 1616.
20
+
21
+ **Features**
22
+
23
+ * The old References panel under the Document Viewer has been replaced with a completely new widget
24
+ with a lot more features. The Back-references panel is still there, but is now a scrollable list
25
+ with a lot more information. In addition, tabs for each category of tags are available when there
26
+ are tags defined for them. These panels list all available tags, with a good deal of information
27
+ about them that may be useful to the writer, as well as buttons to open them in the viewer or
28
+ editor. Issues #925 and #998. PR #1606.
29
+ * Multi-select is now possible in the project tree, with some limitations. Drag and drop is only
30
+ permitted if the selected items have the same parent item. Any other drag and drop selection will
31
+ be cancelled and the user notified. A new context menu has been added for the case when multiple
32
+ items are selected, with a reduced set of options that can be collectively applied to them.
33
+ Issues #1549 and #1592. PR #1612.
34
+ * The "Scroll Past End" setting in Preferences has been added back in. It is slightly different
35
+ than the old one, as this one uses the Qt Plain Text Editor implementation, which has some side
36
+ effects some users may want to avoid. Issue #1602. PR #1605.
37
+ * For Windows users, there is now an "Add Dictionaries" tool in the Tools menu where new spell
38
+ check dictionaries can be added. Links are provided to sources for these dictionaries, and a file
39
+ selector tool to import the files into novelWriter. Issue #982. PR #1610.
40
+ * You can now update the name of a document by right-clicking on any heading inside the document
41
+ and select "Set as Document Name". This will open the Rename dialog with the text of the heading
42
+ pre-filled. Issue #1503. PR #1614.
43
+ * A new special comment, called "Short" can be added to Project Notes. They are identical to
44
+ Synopsis comments, and are in fact just an alias for them. The "Short Description" will be
45
+ displayed alongside the tags in the new panel under the Document Viewer. Issues #1617 and #1621.
46
+ PRs #1617, #1619 and #1622.
47
+
48
+ **Usability**
49
+
50
+ * The feature to auto select word under cursor no longer uses the default Qt implementation, and
51
+ has instead been implemented by iterating backward and forward in the text to find the nearest
52
+ word boundaries. It will stop on characters that aren't Unicode alphanumeric as per Python's
53
+ definition. Toggling markup will also move the cursor to after the markup if it was already at
54
+ the end of the word. Otherwise it remains within the word at the same position. The word is not
55
+ selected after formatting if it wasn't selected before. If no selection was made, and no word is
56
+ auto selected, the formatting tags are inserted in-place with the cursor in the middle.
57
+ Issues #1333 and #1598. PR #1600.
58
+ * The auto complete context menu is now only triggered on actual user input consisting of adding or
59
+ removing a single character. PR #1601.
60
+ * Various improvements to the visibility of the cursor when the dimensions of the editor changes
61
+ have been added. Like for instance keeping the cursor visible when opening or closing the Viewer
62
+ panel, or toggling Focus Mode. Issues #1302 and #1478. PR #1608.
63
+ * The Manuscript Build dialog now has a button to open the output folder. Issue #1554. PR #1613.
64
+
65
+ **Code Improvements**
66
+
67
+ * Improve test coverage. PR #1607.
68
+
69
+ ----
70
+
3
71
  ## Version 2.2 Beta 1 [2023-11-11]
4
72
 
5
73
  ### Release Notes
@@ -32,14 +100,14 @@ final release.
32
100
  that tag will appear in the menu. On selection, it will create a note in the first root folder of
33
101
  the correct kind, and set the title and tag to match the undefined reference, making it instantly
34
102
  defined. Issues #1580 and #823. PR #1582.
35
- * Shortcodes have been added to the Document Editor. Shorcodes are HTML-like syntax, but uses
103
+ * Shortcodes have been added to the Document Editor. Shortcodes are HTML-like syntax, but uses
36
104
  square brackets instead of angular brackets. So `[b]text[/b]` will make the word "text" appear as
37
- bold. Shortcodes currently support bold, italic, striketrough, underline, superscript and
105
+ bold. Shortcodes currently support bold, italic, strike trough, underline, superscript and
38
106
  subscript text. The first three are complimentary to the Markdown-like syntax that. The benefit
39
107
  of the shortcode emphasis syntax, however, is that it does not care about word boundaries, and
40
108
  can therefore be used any place in the text. Including in the middle of words. Issues #1337 and
41
109
  #1444. PRs #1540 and #1583.
42
- * A show/hide toolbar has been added to the editor where toolbuttons for formatting options are
110
+ * A show/hide toolbar has been added to the editor where tool buttons for formatting options are
43
111
  available. The toolbar is hidden by default, but can be activated from a three dots icon in the
44
112
  top left corner of the editor. Issue #1585. PR #1584.
45
113
  * Build Definitions in the Manuscript Build tool can now be re-ordered, and the order is preserved
@@ -48,26 +116,26 @@ final release.
48
116
  **Usability**
49
117
 
50
118
  * The Settings menu in the sidebar now always pops out to the right and upwards from the bottom of
51
- the icon. The previous behaviour was not guaranteed to stay in the vissible area of the screen.
119
+ the icon. The previous behaviour was not guaranteed to stay in the visible area of the screen.
52
120
  PR #1520.
53
121
  * The right click action on a misspelled word now uses the actual spell checker data for lookup.
54
122
  Previously, the spell checker would underline a word that was misspelled, but the right click
55
123
  action actually had no way of reading where the error line was, so it had to guess again what
56
124
  word the user was clicking. Since these two parts of the code used different logic, they
57
125
  sometimes produced different results. The spell checker now saves the location of each spell
58
- check error, and the right click action retrieves this data when genrating suggestions, which
126
+ check error, and the right click action retrieves this data when generating suggestions, which
59
127
  should eliminate the problem of picking the correct word boundaries. Issue #1532. PR #1525.
60
128
  * The language of a project is not set in the New Project Wizard and in Project Settings. It is no
61
129
  longer defined in the Build Settings panel. Issue #1588. PR #1589.
62
- * The way switching focus and view in the main GUi has changed. Pressing `Ctrl+T` will now switch
130
+ * The way switching focus and view in the main GUI has changed. Pressing `Ctrl+T` will now switch
63
131
  focus to the Project or Novel Tree if focus is elsewhere, or if either have focus already, it
64
132
  will switch view to the other tree. Pressing `Ctrl+E` will switch focus and view to the Document
65
- Editor. Pressing `Ctrl+Shift+T` will do the same for the Outline View. The old Alt-based shorcuts
66
- have been removed. Issues #1310 and #1291. PR #1590.
133
+ Editor. Pressing `Ctrl+Shift+T` will do the same for the Outline View. The old Alt-based
134
+ shortcuts have been removed. Issues #1310 and #1291. PR #1590.
67
135
 
68
136
  **User Interface**
69
137
 
70
- * The labels under the sidebar buttons have been removed. The tooltips have the necessary
138
+ * The labels under the sidebar buttons have been removed. The tool tips have the necessary
71
139
  information. PR #1520.
72
140
 
73
141
  **Other Improvements**
@@ -105,7 +173,7 @@ changes have been fixed as well. See the full changelog for more details.
105
173
  Qt 5.15.8. In particular, it is possible to drop items on the root level, and it's possible to
106
174
  move root items to other locations. Neither should be possible and will severely mess up the
107
175
  project if done. Issue #1569. PR #1570.
108
- * Add a custom autoscroll feature when dragging an item in the project tree to near the top or
176
+ * Add a custom auto-scroll feature when dragging an item in the project tree to near the top or
109
177
  bottom. This is actually a default feature of the tree widget in the Qt library, but this too is
110
178
  broken in some versions of Qt 5.15.x. The default feature has been permanently disabled and
111
179
  replaced by a custom written feature that behaves similarly. Issue #1561. PR #1571.
@@ -327,7 +395,7 @@ This is a patch release that fixes a few issues and adds a Japanese translation.
327
395
 
328
396
  The issues were mostly related to spell checking. In particular, issues with finding the word
329
397
  boundary when using underscore characters for italics markup. These issues should now be resolved.
330
- In addition, escaped markup characters are now renderred properly in HTML and ODT build formats.
398
+ In addition, escaped markup characters are now rendered properly in HTML and ODT build formats.
331
399
 
332
400
  A few usability improvements have also been made. The Add Item menu in the project tree no longer
333
401
  shows the options to create Novel Documents when an item in the tree is selected that cannot hold
@@ -487,7 +555,7 @@ This is a patch release that fixes a few bugs and usability issues. The editing
487
555
  importance labels in Project Settings should now be a bit more intuitive. Opening a document from
488
556
  the Outline View that is already open in the editor should now switch to the editor view. The
489
557
  convert folder to note or document feature in the project tree has also been fixed. Some icons have
490
- been updated and a renderring issue with one of them fixed. Chinese, Norwegian, US English, German
558
+ been updated and a rendering issue with one of them fixed. Chinese, Norwegian, US English, German
491
559
  and Spanish translations have been updated as well. A new credits tab has been added to the About
492
560
  dialog box, replacing the Credits section on the main About tab.
493
561
 
@@ -757,7 +825,7 @@ opened, a request to update the file format will show up.
757
825
  PR #1212.
758
826
  * The GUI theme now determines which icon theme is to be loaded. It is no longer a separate
759
827
  setting. The icon theme can also be reloaded without restart. Issue #1172. PR #1212.
760
- * The block formating features in the Format menu now also works on empty lines. Issue #1178.
828
+ * The block formatting features in the Format menu now also works on empty lines. Issue #1178.
761
829
  PR #1214.
762
830
  * There is now a Format menu entry and shortcut code for synopsis comments. Issue #1177. PR #1214.
763
831
  * The split document dialog now has the option to move teh source document to trash. Issue #1179.
@@ -794,7 +862,7 @@ opened, a request to update the file format will show up.
794
862
  correct type information. PR #1197.
795
863
  * Saving and loading of XML data is now handled by a separate set of reader and writer classes. The
796
864
  reader class is capable of reading all file formats that have been used thus far. The various
797
- data classes have been improved, and a new XML file formart version 1.5 added. Issue #1189.
865
+ data classes have been improved, and a new XML file format version 1.5 added. Issue #1189.
798
866
  PRs #1221 and #1232.
799
867
  * The index is now automatically rebuilt when the project file format is updated. Issue #1235.
800
868
  PR #1236.
@@ -987,8 +1055,8 @@ final release.
987
1055
  setting is preserved. Previously, the Importance setting would overwrite it during the
988
1056
  conversion. PR #1030.
989
1057
  * Item labels, Status labels, and other labels on the GUI are now run through a "simplify" function
990
- before being accepted. This functions strips out all whitespaces and consecutive whitespaces and
991
- replace them with single plain whitespaces. This is a safer format to store in XML, and also
1058
+ before being accepted. This functions strips out all white spaces and consecutive white spaces
1059
+ and replace them with single plain white spaces. This is a safer format to store in XML, and also
992
1060
  makes sure there aren't invisible characters floating around in the labels. PR #1038.
993
1061
  * Due to the changes to how drag and drop works, there are no longer any restrictions on folders
994
1062
  and documents. Only root folders remain restricted in terms of moving. Root folders can only be
@@ -1494,7 +1562,7 @@ checking enabled if there is something wrong with the spell check package.
1494
1562
  **Bugfixes**
1495
1563
 
1496
1564
  * When the HTML converter replaced grater than or smaller than symbols with the corresponding HTML
1497
- entities. the poisition of the formatting tags following in the text would be shifted, but the
1565
+ entities. the position of the formatting tags following in the text would be shifted, but the
1498
1566
  positions were not updated. This is now solved by updating these positions when such a symbol is
1499
1567
  encountered. This issue has been backported from 1.6 development. Issue #929.
1500
1568
  * If the pyenchant package is installed, but the underlying enchant library is broken in one way or
@@ -1659,7 +1727,7 @@ backups.
1659
1727
  the case. Having two alternative spell checkers complicated the code a great deal, and the
1660
1728
  internal spell checker also required full word lists to be distributed with novelWriter. PR #875.
1661
1729
  * Added a setting in Preferences to change how the word count on the status bar is calculated. The
1662
- new setting allows the project notes to be filetred out, leaving only the word count for novel
1730
+ new setting allows the project notes to be filtered out, leaving only the word count for novel
1663
1731
  files. Feature request #857. PR #882.
1664
1732
 
1665
1733
  **Installation and Packaging**
@@ -1678,7 +1746,7 @@ backups.
1678
1746
 
1679
1747
  **Internationalisation**
1680
1748
 
1681
- * The US English and Nowregian translation files have been updated. PR #884.
1749
+ * The US English and Norwegian translation files have been updated. PR #884.
1682
1750
 
1683
1751
  **Documentation**
1684
1752
 
@@ -1709,7 +1777,7 @@ careful when using this version on live writing projects, and make sure you take
1709
1777
 
1710
1778
  **Internationalisation**
1711
1779
 
1712
- * The US English and Nowregian translation files have been updated. PR #870.
1780
+ * The US English and Norwegian translation files have been updated. PR #870.
1713
1781
 
1714
1782
  **Documentation**
1715
1783
 
@@ -2297,7 +2365,7 @@ buttons were blocked when they shouldn't. This release resolves these issues.
2297
2365
  This release is mainly focused on the Build Novel Project tool. Completely new export classes have
2298
2366
  been written to support Open Document and Markdown exports. In addition, the way document layouts
2299
2367
  are handled have been automated a little to assist the user in keeping header levels and document
2300
- layout flags in sync. The third new additoion is the ability to record and log idle time during a
2368
+ layout flags in sync. The third new addition is the ability to record and log idle time during a
2301
2369
  writing session to improve the writing statistics information as requested by several users.
2302
2370
  Finally, it is now possible to directly edit the project dictionary via a new, simple GUI dialog.
2303
2371
 
@@ -2390,7 +2458,7 @@ _These Release Notes also include the changes from 1.2 Beta 1 and RC 1._
2390
2458
  the index on next load. For earlier versions of novelWriter before 1.1.1, it would also cause a
2391
2459
  crash. Invalid keywords are now rejected during indexing. Issue #688. PR #689.
2392
2460
  * The "Empty Trash" option was no longer working due to an earlier fix that added a requirement
2393
- that the project tree has focus to allow the emptying to procede. Since the Empty Trash feature
2461
+ that the project tree has focus to allow the emptying to proceed. Since the Empty Trash feature
2394
2462
  opens a dialog, the tree loses focus, and the deletions are therefore ignored. The focus check is
2395
2463
  no longer considered when emptying the trash. Issue #701. PR #702.
2396
2464
 
@@ -2450,7 +2518,7 @@ _The Release Notes have been moved and merged into the 1.2 RC 1 notes._
2450
2518
  * A full Markdown exporter has been written and added for the Build Novel Project tool. This too
2451
2519
  replaces a Qt feature that was used to save the content of the preview window into a markdown
2452
2520
  file. The exporter allows for both standard markdown and GitHub flavour markdown. The only
2453
- relevant difference being that the latter allows strikethrough text. Issue #617. PR #650.
2521
+ relevant difference being that the latter allows strike through text. Issue #617. PR #650.
2454
2522
  * The Build Novel Project tool now has a "Line height" property that is applied to the preview, and
2455
2523
  to the HTML5 and Open Document export formats. Discussion #653. Issue #654. PR #660.
2456
2524
  * The Build Novel Project tool now has an option to convert Unicode characters to HTML entities on
@@ -2531,7 +2599,7 @@ but is still lacking in functionality compared to Enchant.
2531
2599
  exclude negative word counts is active. Previously, the entries with negative counts were
2532
2600
  filtered out, but the change in count was still applied to the next line, altering the value.
2533
2601
  Now, the GUI will instead just drop the lines that are negative and keep the other lines
2534
- unchanged. This is more intutitive, but it also means that the total count now longer matches the
2602
+ unchanged. This is more intuitive, but it also means that the total count now longer matches the
2535
2603
  sum of the lines. PR #659.
2536
2604
  * The keyboard shortcut for deleting entries in the project tree has been changed from `Ctrl+Del`
2537
2605
  to `Ctrl+Shift+Del`. The `Ctrl+Del` shortcut is thus free to be used exclusively by the editor to
@@ -2544,7 +2612,7 @@ but is still lacking in functionality compared to Enchant.
2544
2612
  given a significant speed improvement by caching the imported dictionary as a Python `set`
2545
2613
  instead of a `list`. The `set` has a hashed key lookup algorithm that is significantly faster.
2546
2614
  PR #668.
2547
- * Sessions shortar than 5 minutes, and with no word count changes, are no longer recorded in the
2615
+ * Sessions shorter than 5 minutes, and with no word count changes, are no longer recorded in the
2548
2616
  session stats log file. PR #685.
2549
2617
 
2550
2618
  **Installation**
@@ -3009,7 +3077,7 @@ issues are discovered, the next release will be the final version 1.0 release.
3009
3077
 
3010
3078
  * The tests for the core classes of novelWriter have been completely rewritten. Every class or
3011
3079
  source file of the core functionality (everything handling the actual project data and documents,
3012
- as well as the meta data) is now covered by its own testmodule with a 100% coverage for each
3080
+ as well as the meta data) is now covered by its own test module with a 100% coverage for each
3013
3081
  module. PR #512.
3014
3082
  * Likewise, the base tests have been rewritten to cover the `Config` class, the `main` function
3015
3083
  that launches the app, and the error handling class. The structure matches the core tests from
@@ -3041,7 +3109,7 @@ The "Typewriter Mode" of the editor has been improved. Essentially, this feature
3041
3109
  scroll. It tries to keep the cursor stationary in the vertical direction, and will try to scroll
3042
3110
  the document up when the cursor skips to a new line while typing (or down in case of backspaces).
3043
3111
  This is similar to the way a typewriter scrolls the paper when hitting the return key. It improves
3044
- the writing experience as the current active line will stay at the same eye heightlevel on the
3112
+ the writing experience as the current active line will stay at the same eye height level on the
3045
3113
  screen.
3046
3114
 
3047
3115
  Previously, the feature would lock the cursor to a given vertical position defined by the user.
@@ -3089,7 +3157,7 @@ Switching main GUI theme still requires a restart.
3089
3157
  handled by the various tools, but they shouldn't even trigger when there is no project or
3090
3158
  document to perform the action on. PR #492.
3091
3159
  * Clarify the message of the Close Project and Exit novelWriter dialogs. Previously, it may have
3092
- seemed to some users that clicking "No" would allow the closing to procede without saving
3160
+ seemed to some users that clicking "No" would allow the closing to proceed without saving
3093
3161
  changes. This is not true as changes are saved automatically when editing a project. The dialog
3094
3162
  text should now make this clearer. Issue #494, PR #495.
3095
3163
 
@@ -3134,7 +3202,7 @@ Switching main GUI theme still requires a restart.
3134
3202
  **User Interface**
3135
3203
 
3136
3204
  * An option has been added in Preferences to hide horizontal or vertical scroll bars on the main
3137
- GUI. These optons will hide scroll bars on the Project Tree, Document Editor, Document Viewer,
3205
+ GUI. These options will hide scroll bars on the Project Tree, Document Editor, Document Viewer,
3138
3206
  Outline Tab and on the controls of the Build Novel Project tool. Scroll bars take up space, and
3139
3207
  as long as the project doesn't contain very long documents, scrolling with the mouse wheel is
3140
3208
  enough. The feature is of course entirely optional. PRs #468 and #469.
@@ -3154,7 +3222,7 @@ Switching main GUI theme still requires a restart.
3154
3222
  * When applying a format from the format menu to a selection of multiple paragraphs (or lines),
3155
3223
  only the first paragraph (or line) receives the formatting. The editor doesn't allow markdown
3156
3224
  formatting to span multiple lines. Issue #451, PR #475.
3157
- * The syntax highlighter no longer uses the same colour to highlight strikethrough text as for
3225
+ * The syntax highlighter no longer uses the same colour to highlight strike through text as for
3158
3226
  emphasised text. The colour is intended to stand out, which makes little sense for such text.
3159
3227
  Instead, the highlighter uses the same colour as for comments. PR #476.
3160
3228
 
@@ -3305,7 +3373,7 @@ Switching main GUI theme still requires a restart.
3305
3373
 
3306
3374
  **Code Improvements**
3307
3375
 
3308
- * Minor improvemenmts have been made to the core project classes to improve encapsulation and
3376
+ * Minor improvements have been made to the core project classes to improve encapsulation and
3309
3377
  better ensure consistency between the different data structures that store the novel project in
3310
3378
  memory. PR #447.
3311
3379
  * Some unused or redundant code has been removed, and in some places, functions have been merged to
@@ -3322,9 +3390,9 @@ Switching main GUI theme still requires a restart.
3322
3390
  **Bugfixes**
3323
3391
 
3324
3392
  * If the horizontal scroll bar appeared at the bottom of the document editor or viewer, for
3325
- instance if a long, un-wrapable line was entered, the scroll bar would sit on top of the document
3326
- footer. The footer bar now properly moves out of the way when the horizontal scroll bar appears.
3327
- Issue #433, PR #434.
3393
+ instance if a long, un-wrappable line was entered, the scroll bar would sit on top of the
3394
+ document footer. The footer bar now properly moves out of the way when the horizontal scroll bar
3395
+ appears. Issue #433, PR #434.
3328
3396
 
3329
3397
  **New Features**
3330
3398
 
@@ -3446,7 +3514,7 @@ Switching main GUI theme still requires a restart.
3446
3514
  leading line break. This was previously handled entirely by the Qt library, which does this for
3447
3515
  some reason. Issue #395, PR #405.
3448
3516
  * A chapter heading in a file with a different layout than `Unnumbered` can now also be flagged as
3449
- an unnumbered chapter heading by adding an asterisk to the begfinning of the title text. This
3517
+ an unnumbered chapter heading by adding an asterisk to the beginning of the title text. This
3450
3518
  only affects the number assignment and counter when running the Build Novel Project tool. The
3451
3519
  rest of the app ignores the asterisk. Issue #402, PR #406.
3452
3520
 
@@ -3461,7 +3529,7 @@ Switching main GUI theme still requires a restart.
3461
3529
  create a copy of the example project from the source code. Either from the `sample` folder in the
3462
3530
  source, or from a `sample.zip` file generated by the `setup.py` script and saved to the
3463
3531
  `nw/assets` folder. PR #366.
3464
- * When the user clicked cancel on the colour dialog in Project Settins, the icon would be reset to
3532
+ * When the user clicked cancel on the colour dialog in Project Settings, the icon would be reset to
3465
3533
  black. Instead, the colour should remain unchanged. A check that the user actually selected a
3466
3534
  colour has now been added. Issue #395, PR #403.
3467
3535
 
@@ -3537,7 +3605,7 @@ planned by GitHub. See their [notes](https://github.com/github/renaming) for mor
3537
3605
  [novelwriter.readthedocs.io](https://novelwriter.readthedocs.io/) has been rewritten. It was
3538
3606
  drifting out of sync with the development of the code. In addition, many improvements have been
3539
3607
  made to the reStructuredText formatting of the documentation source by providing better
3540
- cross-reference linking and highlightings. The main repository README file has been updated to
3608
+ cross-reference linking and highlighting. The main repository README file has been updated to
3541
3609
  match. PRs #375, #382, and #384.
3542
3610
  * The main `setup.py` script has been updated to also build documentation for the Qt Assistant when
3543
3611
  given a `qthelp` flag. The compiled help files are copied into the `nw/assets/help` folder, and
@@ -3635,7 +3703,7 @@ longer be read by an earlier version due to the change of how autoReplace settin
3635
3703
  has been removed from the main window status bar. PR #348.
3636
3704
  * The document editor footer can optionally be hidden in Distraction Free mode. PR #351.
3637
3705
  * The Italic and Bold menu entries have been renamed to Emphasis and Strong Emphasis, which is more
3638
- in line with what they represent in Markdown and HTML. They are still renderred as Italic and
3706
+ in line with what they represent in Markdown and HTML. They are still rendered as Italic and
3639
3707
  Bold in the document viewer, but the HTML export is using the `<em>` and `<strong>` tags.
3640
3708
  PR #350.
3641
3709
  * Due to several issues with the formatting of emphasised text using `*`, `**`, and `***` wrappers,
@@ -3648,9 +3716,9 @@ longer be read by an earlier version due to the change of how autoReplace settin
3648
3716
  for emphasis and strong is commonly recommended when writing Markdown anyway, so it is a sensible
3649
3717
  compromise between speed and flexibility. This PR partially reverses PR #310. Issue #353,
3650
3718
  PR #355.
3651
- * The syntax highlighter now properly highlights overlapping formattings, including emphasised text
3719
+ * The syntax highlighter now properly highlights overlapping formatting, including emphasised text
3652
3720
  inside of highlighted quotes. PR #355.
3653
- * The colour highlighting of emphasis, strong and strikethrough, can now be switch off in
3721
+ * The colour highlighting of emphasis, strong and strike through, can now be switch off in
3654
3722
  Preferences. The syntax highlighter will still apply the italic, bold and strike effects.
3655
3723
  PR #357.
3656
3724
  * The project path in the Details tab of Project Settings can now be selected and copied to
@@ -3681,7 +3749,7 @@ longer be read by an earlier version due to the change of how autoReplace settin
3681
3749
  visible in the tree. It is called when you for instance click the header of an open document. It
3682
3750
  was also activated when opening a document from the tree view with either double-click by mouse,
3683
3751
  or by using the Enter key. This meant that the tree view would often move, which made it hard to
3684
- mouse click on items after eachother since you ended up chasing a moving target. This feature is
3752
+ mouse click on items after each other since you ended up chasing a moving target. This feature is
3685
3753
  now disabled for document open. In addition, the scroll into view feature has been added to the
3686
3754
  search/replace call to move into the next document when reaching the end of the current document.
3687
3755
  This was requested in Issue #332. PR #334.
@@ -3692,7 +3760,7 @@ longer be read by an earlier version due to the change of how autoReplace settin
3692
3760
  **Documentation**
3693
3761
 
3694
3762
  * The documentation has been updated to clarify the correct formatting for italic, bold and
3695
- strikethrough formatting tags. Issue #220, PR #338.
3763
+ strike through formatting tags. Issue #220, PR #338.
3696
3764
 
3697
3765
  ----
3698
3766
 
@@ -3711,11 +3779,11 @@ longer be read by an earlier version due to the change of how autoReplace settin
3711
3779
 
3712
3780
  * Underline text formatting has been removed. It is not standard HTML5, nor Markdown, and was
3713
3781
  previously implemented using the double underscore notation that in standard Markdown is
3714
- renderred as bold text. Instead, novelWriter now renders a single `*` or `_` wrapping a piece of
3782
+ rendered as bold text. Instead, novelWriter now renders a single `*` or `_` wrapping a piece of
3715
3783
  text _within_ a paragraphs as italicised text, and a double `**` or `__` as bold text. The
3716
3784
  keyboard shortcuts and automatic features _only_ support the `*` notation. A triple set of `***`
3717
3785
  are treated as both bold and italicised. PR #310.
3718
- * Strikethrough formatting has been added back into novelWriter using the standard Markdown `~~`
3786
+ * Strike through formatting has been added back into novelWriter using the standard Markdown `~~`
3719
3787
  wrapping. PR #310.
3720
3788
  * Added support for thin spaces and non-breaking thin spaces. PR #319.
3721
3789
  * The `Ctrl+Z` key sequence (undo) would not go through the wrapper function for document action
@@ -3732,7 +3800,7 @@ longer be read by an earlier version due to the change of how autoReplace settin
3732
3800
  PR #309.
3733
3801
  * The text emphasis functions, either selected from the menu or via keyboard shortcuts, will now
3734
3802
  try to respond to the command in a more meaningful way. That is, the text editor will try to
3735
- toggle the bold or italics features independently of eachother on the selected text. A menu entry
3803
+ toggle the bold or italics features independently of each other on the selected text. A menu entry
3736
3804
  to apply both at the same time has also been added. PR #310.
3737
3805
  * The document editor search tool has been completely rewritten. It now appears as a search box at
3738
3806
  the top of the document, and has a number of toggle switches added to it. You can modify the
@@ -4102,7 +4170,7 @@ that I can spend more time using it than creating it.
4102
4170
  **Additional thanks** to @countjocular for PRs #173 and #174, and to @johnblommers for all the
4103
4171
  helpful feedback and issue reports for the new features added in this, and previous releases.
4104
4172
 
4105
- ### Noteable Changes
4173
+ ### Notable Changes
4106
4174
 
4107
4175
  * The Timeline View dialog is now gone. Instead, the main window area has been split into two tabs.
4108
4176
  The first, the "Editor", contains the Document Editor and Viewer panels. The second, the
@@ -4253,7 +4321,7 @@ helpful feedback and issue reports for the new features added in this, and previ
4253
4321
  **Bug Fixes**
4254
4322
 
4255
4323
  * Fixed an issue when closing the import file dialog without selecting a file, the import would
4256
- procede, but fail on file not found. The import is now cancelled when there is no file selected.
4324
+ proceed, but fail on file not found. The import is now cancelled when there is no file selected.
4257
4325
  PR #149.
4258
4326
  * Fixed an issue with markdown export where it did not take into account hard line breaks. Issue
4259
4327
  #151, PR #152.
@@ -4663,7 +4731,7 @@ This is the initial release of a working version of novelWriter, but with very l
4663
4731
  capabilities. So far, the following has been implemented:
4664
4732
 
4665
4733
  * A document tree with a set of pre-defined root folders of a given set of classes for different
4666
- purposes for novel writing. That is, a root item for the novel itself, one for charcaters, plot
4734
+ purposes for novel writing. That is, a root item for the novel itself, one for characters, plot
4667
4735
  elements, timeline, locations, objects, and a custom one.
4668
4736
  * A plain text editor with a simplified markdown format that allows for four levels of titles, and
4669
4737
  bold, italics and underline text.
@@ -4671,7 +4739,7 @@ capabilities. So far, the following has been implemented:
4671
4739
  * It also allows for keyword/value sets staring with the character `@`. These will later be used
4672
4740
  to link documents together as tags point to other documents. For instance, a scene file can
4673
4741
  point the keyword `@POV:name` to a character file with the keyword `@THIS:name`.
4674
- * The text editor has a set of autoreplace features:
4742
+ * The text editor has a set of auto replace features:
4675
4743
  * Dashes are made by combining two or three hyphens.
4676
4744
  * Three dots are replaced with the ellipsis.
4677
4745
  * Straight quotes with your quote format of choice.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: novelWriter
3
- Version: 2.2b1
3
+ Version: 2.2rc1
4
4
  Summary: A markdown-like text editor for planning and writing novels
5
5
  Home-page: https://novelwriter.io
6
6
  Author: Veronica Berglyd Olsen
@@ -40,9 +40,9 @@ synchronisation tools. All text is saved as plain text files with a meta data he
40
40
  project structure is stored in a single project XML file, and other meta data is primarily saved as
41
41
  JSON files.
42
42
 
43
- The application is written with Python 3 (3.8+) using Qt5 and PyQt5 (5.3+). It is developed on
43
+ The application is written with Python 3 (3.8+) using Qt5 and PyQt5 (5.10+). It is developed on
44
44
  Linux, but should in principle work fine on other operating systems as well as long as dependencies
45
- are met. It is regularly tested on Debian and Ubuntu Linux, Windows, and macOS.
45
+ are met. It is regularly tested on Debian and Ubuntu Linux, Windows, and MacOS.
46
46
 
47
47
  novelWriter is developed and maintained by [Veronica Berglyd Olsen](https://github.com/vkbo).
48
48
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: novelWriter
3
- Version: 2.2b1
3
+ Version: 2.2rc1
4
4
  Summary: A markdown-like text editor for planning and writing novels
5
5
  Home-page: https://novelwriter.io
6
6
  Author: Veronica Berglyd Olsen
@@ -40,9 +40,9 @@ synchronisation tools. All text is saved as plain text files with a meta data he
40
40
  project structure is stored in a single project XML file, and other meta data is primarily saved as
41
41
  JSON files.
42
42
 
43
- The application is written with Python 3 (3.8+) using Qt5 and PyQt5 (5.3+). It is developed on
43
+ The application is written with Python 3 (3.8+) using Qt5 and PyQt5 (5.10+). It is developed on
44
44
  Linux, but should in principle work fine on other operating systems as well as long as dependencies
45
- are met. It is regularly tested on Debian and Ubuntu Linux, Windows, and macOS.
45
+ are met. It is regularly tested on Debian and Ubuntu Linux, Windows, and MacOS.
46
46
 
47
47
  novelWriter is developed and maintained by [Veronica Berglyd Olsen](https://github.com/vkbo).
48
48
 
@@ -64,10 +64,15 @@ novelwriter/assets/icons/typicons_dark/mixed_input-unchecked.svg
64
64
  novelwriter/assets/icons/typicons_dark/mixed_search-replace.svg
65
65
  novelwriter/assets/icons/typicons_dark/nw_deco-h0.svg
66
66
  novelwriter/assets/icons/typicons_dark/nw_deco-h1.svg
67
+ novelwriter/assets/icons/typicons_dark/nw_deco-h2-narrow.svg
67
68
  novelwriter/assets/icons/typicons_dark/nw_deco-h2.svg
69
+ novelwriter/assets/icons/typicons_dark/nw_deco-h3-narrow.svg
68
70
  novelwriter/assets/icons/typicons_dark/nw_deco-h3.svg
71
+ novelwriter/assets/icons/typicons_dark/nw_deco-h4-narrow.svg
69
72
  novelwriter/assets/icons/typicons_dark/nw_deco-h4.svg
73
+ novelwriter/assets/icons/typicons_dark/nw_deco-note.svg
70
74
  novelwriter/assets/icons/typicons_dark/nw_deco-noveltree-more.svg
75
+ novelwriter/assets/icons/typicons_dark/nw_panel.svg
71
76
  novelwriter/assets/icons/typicons_dark/nw_search-case.svg
72
77
  novelwriter/assets/icons/typicons_dark/nw_search-preserve.svg
73
78
  novelwriter/assets/icons/typicons_dark/nw_search-regex.svg
@@ -85,7 +90,6 @@ novelwriter/assets/icons/typicons_dark/typ_arrow-forward.svg
85
90
  novelwriter/assets/icons/typicons_dark/typ_arrow-maximise.svg
86
91
  novelwriter/assets/icons/typicons_dark/typ_arrow-minimise.svg
87
92
  novelwriter/assets/icons/typicons_dark/typ_arrow-repeat-grey.svg
88
- novelwriter/assets/icons/typicons_dark/typ_at.svg
89
93
  novelwriter/assets/icons/typicons_dark/typ_book-grey.svg
90
94
  novelwriter/assets/icons/typicons_dark/typ_book.svg
91
95
  novelwriter/assets/icons/typicons_dark/typ_bookmark.svg
@@ -104,6 +108,7 @@ novelwriter/assets/icons/typicons_dark/typ_directions-full.svg
104
108
  novelwriter/assets/icons/typicons_dark/typ_document-text.svg
105
109
  novelwriter/assets/icons/typicons_dark/typ_export-grey.svg
106
110
  novelwriter/assets/icons/typicons_dark/typ_export.svg
111
+ novelwriter/assets/icons/typicons_dark/typ_eye.svg
107
112
  novelwriter/assets/icons/typicons_dark/typ_flag.svg
108
113
  novelwriter/assets/icons/typicons_dark/typ_folder-open.svg
109
114
  novelwriter/assets/icons/typicons_dark/typ_folder.svg
@@ -146,10 +151,15 @@ novelwriter/assets/icons/typicons_light/mixed_input-unchecked.svg
146
151
  novelwriter/assets/icons/typicons_light/mixed_search-replace.svg
147
152
  novelwriter/assets/icons/typicons_light/nw_deco-h0.svg
148
153
  novelwriter/assets/icons/typicons_light/nw_deco-h1.svg
154
+ novelwriter/assets/icons/typicons_light/nw_deco-h2-narrow.svg
149
155
  novelwriter/assets/icons/typicons_light/nw_deco-h2.svg
156
+ novelwriter/assets/icons/typicons_light/nw_deco-h3-narrow.svg
150
157
  novelwriter/assets/icons/typicons_light/nw_deco-h3.svg
158
+ novelwriter/assets/icons/typicons_light/nw_deco-h4-narrow.svg
151
159
  novelwriter/assets/icons/typicons_light/nw_deco-h4.svg
160
+ novelwriter/assets/icons/typicons_light/nw_deco-note.svg
152
161
  novelwriter/assets/icons/typicons_light/nw_deco-noveltree-more.svg
162
+ novelwriter/assets/icons/typicons_light/nw_panel.svg
153
163
  novelwriter/assets/icons/typicons_light/nw_search-case.svg
154
164
  novelwriter/assets/icons/typicons_light/nw_search-preserve.svg
155
165
  novelwriter/assets/icons/typicons_light/nw_search-regex.svg
@@ -167,7 +177,6 @@ novelwriter/assets/icons/typicons_light/typ_arrow-forward.svg
167
177
  novelwriter/assets/icons/typicons_light/typ_arrow-maximise.svg
168
178
  novelwriter/assets/icons/typicons_light/typ_arrow-minimise.svg
169
179
  novelwriter/assets/icons/typicons_light/typ_arrow-repeat-grey.svg
170
- novelwriter/assets/icons/typicons_light/typ_at.svg
171
180
  novelwriter/assets/icons/typicons_light/typ_book-grey.svg
172
181
  novelwriter/assets/icons/typicons_light/typ_book.svg
173
182
  novelwriter/assets/icons/typicons_light/typ_bookmark.svg
@@ -186,6 +195,7 @@ novelwriter/assets/icons/typicons_light/typ_directions-full.svg
186
195
  novelwriter/assets/icons/typicons_light/typ_document-text.svg
187
196
  novelwriter/assets/icons/typicons_light/typ_export-grey.svg
188
197
  novelwriter/assets/icons/typicons_light/typ_export.svg
198
+ novelwriter/assets/icons/typicons_light/typ_eye.svg
189
199
  novelwriter/assets/icons/typicons_light/typ_flag.svg
190
200
  novelwriter/assets/icons/typicons_light/typ_folder-open.svg
191
201
  novelwriter/assets/icons/typicons_light/typ_folder.svg
@@ -284,6 +294,7 @@ novelwriter/gui/__init__.py
284
294
  novelwriter/gui/doceditor.py
285
295
  novelwriter/gui/dochighlight.py
286
296
  novelwriter/gui/docviewer.py
297
+ novelwriter/gui/docviewerpanel.py
287
298
  novelwriter/gui/editordocument.py
288
299
  novelwriter/gui/itemdetails.py
289
300
  novelwriter/gui/mainmenu.py
@@ -294,6 +305,7 @@ novelwriter/gui/sidebar.py
294
305
  novelwriter/gui/statusbar.py
295
306
  novelwriter/gui/theme.py
296
307
  novelwriter/tools/__init__.py
308
+ novelwriter/tools/dictionaries.py
297
309
  novelwriter/tools/lipsum.py
298
310
  novelwriter/tools/manusbuild.py
299
311
  novelwriter/tools/manuscript.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.2-beta1"
46
- __hexversion__ = "0x020200b1"
47
- __date__ = "2023-11-12"
45
+ __version__ = "2.2-rc1"
46
+ __hexversion__ = "0x020200c1"
47
+ __date__ = "2023-11-26"
48
48
  __status__ = "Stable"
49
49
  __domain__ = "novelwriter.io"
50
50
 
@@ -1,5 +1,6 @@
1
1
  {
2
2
  "Synopsis": "Synopsis",
3
+ "Short Description": "Short Description",
3
4
  "Comment": "Comment",
4
5
  "Notes": "Notes",
5
6
  "Tag": "Tag",
@@ -59,6 +59,7 @@ maximise = typ_arrow-maximise.svg
59
59
  menu = typ_th-dot-menu.svg
60
60
  minimise = typ_arrow-minimise.svg
61
61
  noncheckable = mixed_input-none.svg
62
+ panel = nw_panel.svg
62
63
  proj_chapter = mixed_document-chapter.svg
63
64
  proj_details = typ_th-list-grey.svg
64
65
  proj_document = typ_document-text.svg
@@ -68,7 +69,6 @@ proj_scene = mixed_document-scene.svg
68
69
  proj_section = mixed_document-section.svg
69
70
  proj_stats = typ_chart-bar-grey.svg
70
71
  proj_title = mixed_document-title.svg
71
- reference = typ_at.svg
72
72
  refresh = typ_refresh.svg
73
73
  remove = typ_minus.svg
74
74
  revert = typ_refresh-flipped.svg
@@ -91,14 +91,21 @@ sticky-off = typ_pin-outline.svg
91
91
  sticky-on = typ_pin.svg
92
92
  unchecked = mixed_input-unchecked.svg
93
93
  up = typ_chevron-up.svg
94
+ view = typ_eye.svg
94
95
  view_build = typ_export-grey.svg
95
96
  view_editor = mixed_edit.svg
96
97
  view_novel = typ_book-grey.svg
97
98
  view_outline = typ_puzzle-outline.svg
98
99
 
99
100
  deco_doc_h0 = nw_deco-h0.svg
101
+ deco_doc_h0_n = nw_deco-h0.svg
100
102
  deco_doc_h1 = nw_deco-h1.svg
103
+ deco_doc_h1_n = nw_deco-h1.svg
101
104
  deco_doc_h2 = nw_deco-h2.svg
105
+ deco_doc_h2_n = nw_deco-h2-narrow.svg
102
106
  deco_doc_h3 = nw_deco-h3.svg
107
+ deco_doc_h3_n = nw_deco-h3-narrow.svg
103
108
  deco_doc_h4 = nw_deco-h4.svg
109
+ deco_doc_h4_n = nw_deco-h4-narrow.svg
104
110
  deco_doc_more = nw_deco-noveltree-more.svg
111
+ deco_doc_nt_n = nw_deco-note.svg
@@ -0,0 +1,4 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="4" height="24" version="1.2" viewBox="0 0 4 24" xmlns="http://www.w3.org/2000/svg">
3
+ <rect y="1" width="4" height="22" rx="2" ry="2" fill="#d64848" stroke-width="0"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="4" height="24" version="1.2" viewBox="0 0 4 24" xmlns="http://www.w3.org/2000/svg">
3
+ <rect y="1" width="4" height="22" rx="2" ry="2" fill="#69c" stroke-width="0"/>
4
+ </svg>