novelWriter 2.1.1__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.
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/CHANGELOG.md +185 -40
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/CREDITS.md +6 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/PKG-INFO +3 -3
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/README.md +4 -5
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelWriter.egg-info/PKG-INFO +3 -3
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelWriter.egg-info/SOURCES.txt +46 -7
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/__init__.py +6 -24
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/i18n/project_de_DE.json +10 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/i18n/project_en_GB.json +11 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/i18n/project_en_US.json +10 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/i18n/project_ja_JP.json +11 -1
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/i18n/project_nb_NO.json +10 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/i18n/project_nn_NO.json +10 -0
- novelWriter-2.2rc1/novelwriter/assets/icons/novelwriter.ico +0 -0
- novelWriter-2.2rc1/novelwriter/assets/icons/novelwriter.svg +9 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/icons.conf +17 -2
- novelWriter-2.2rc1/novelwriter/assets/icons/typicons_dark/nw_deco-h2-narrow.svg +4 -0
- novelWriter-2.2rc1/novelwriter/assets/icons/typicons_dark/nw_deco-h3-narrow.svg +4 -0
- novelWriter-2.2rc1/novelwriter/assets/icons/typicons_dark/nw_deco-h4-narrow.svg +4 -0
- novelWriter-2.2rc1/novelwriter/assets/icons/typicons_dark/nw_deco-note.svg +4 -0
- novelWriter-2.2rc1/novelwriter/assets/icons/typicons_dark/nw_panel.svg +4 -0
- novelWriter-2.2rc1/novelwriter/assets/icons/typicons_dark/nw_tb-bold.svg +4 -0
- novelWriter-2.2rc1/novelwriter/assets/icons/typicons_dark/nw_tb-italic.svg +4 -0
- novelWriter-2.2rc1/novelwriter/assets/icons/typicons_dark/nw_tb-markdown.svg +8 -0
- novelWriter-2.2rc1/novelwriter/assets/icons/typicons_dark/nw_tb-shortcode.svg +8 -0
- novelWriter-2.2rc1/novelwriter/assets/icons/typicons_dark/nw_tb-strike.svg +4 -0
- novelWriter-2.2rc1/novelwriter/assets/icons/typicons_dark/nw_tb-subscript.svg +5 -0
- novelWriter-2.2rc1/novelwriter/assets/icons/typicons_dark/nw_tb-superscript.svg +5 -0
- novelWriter-2.2rc1/novelwriter/assets/icons/typicons_dark/nw_tb-underline.svg +5 -0
- novelWriter-2.2rc1/novelwriter/assets/icons/typicons_dark/typ_eye.svg +4 -0
- novelWriter-2.2rc1/novelwriter/assets/icons/typicons_dark/typ_th-dot-menu.svg +4 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/icons.conf +17 -2
- novelWriter-2.2rc1/novelwriter/assets/icons/typicons_light/nw_deco-h2-narrow.svg +4 -0
- novelWriter-2.2rc1/novelwriter/assets/icons/typicons_light/nw_deco-h3-narrow.svg +4 -0
- novelWriter-2.2rc1/novelwriter/assets/icons/typicons_light/nw_deco-h4-narrow.svg +4 -0
- novelWriter-2.2rc1/novelwriter/assets/icons/typicons_light/nw_deco-note.svg +4 -0
- novelWriter-2.2rc1/novelwriter/assets/icons/typicons_light/nw_panel.svg +4 -0
- novelWriter-2.2rc1/novelwriter/assets/icons/typicons_light/nw_tb-bold.svg +4 -0
- novelWriter-2.2rc1/novelwriter/assets/icons/typicons_light/nw_tb-italic.svg +4 -0
- novelWriter-2.2rc1/novelwriter/assets/icons/typicons_light/nw_tb-markdown.svg +8 -0
- novelWriter-2.2rc1/novelwriter/assets/icons/typicons_light/nw_tb-shortcode.svg +8 -0
- novelWriter-2.2rc1/novelwriter/assets/icons/typicons_light/nw_tb-strike.svg +4 -0
- novelWriter-2.2rc1/novelwriter/assets/icons/typicons_light/nw_tb-subscript.svg +5 -0
- novelWriter-2.2rc1/novelwriter/assets/icons/typicons_light/nw_tb-superscript.svg +5 -0
- novelWriter-2.2rc1/novelwriter/assets/icons/typicons_light/nw_tb-underline.svg +5 -0
- novelWriter-2.2rc1/novelwriter/assets/icons/typicons_light/typ_eye.svg +4 -0
- novelWriter-2.2rc1/novelwriter/assets/icons/typicons_light/typ_th-dot-menu.svg +4 -0
- novelWriter-2.2rc1/novelwriter/assets/icons/x-novelwriter-project.ico +0 -0
- novelWriter-2.2rc1/novelwriter/assets/icons/x-novelwriter-project.svg +8 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/manual.pdf +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/sample.zip +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/syntax/default_dark.conf +1 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/syntax/default_light.conf +1 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/syntax/grey_dark.conf +1 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/syntax/grey_light.conf +1 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/syntax/light_owl.conf +1 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/syntax/night_owl.conf +1 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/syntax/solarized_dark.conf +1 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/syntax/solarized_light.conf +1 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/syntax/tomorrow.conf +1 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/syntax/tomorrow_night.conf +1 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/syntax/tomorrow_night_blue.conf +1 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/syntax/tomorrow_night_bright.conf +1 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/syntax/tomorrow_night_eighties.conf +1 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/text/credits_en.htm +7 -0
- novelWriter-2.2rc1/novelwriter/assets/text/release_notes.htm +17 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/common.py +22 -1
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/config.py +27 -42
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/constants.py +45 -7
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/core/buildsettings.py +40 -24
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/core/coretools.py +8 -1
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/core/docbuild.py +2 -6
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/core/index.py +264 -175
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/core/options.py +8 -3
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/core/project.py +2 -2
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/core/projectdata.py +3 -3
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/core/tohtml.py +60 -59
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/core/tokenizer.py +110 -70
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/core/tomd.py +51 -38
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/core/toodt.py +184 -147
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/dialogs/preferences.py +75 -106
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/dialogs/projsettings.py +101 -110
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/dialogs/updates.py +25 -14
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/enum.py +28 -3
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/extensions/novelselector.py +1 -1
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/gui/doceditor.py +1345 -1235
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/gui/dochighlight.py +98 -62
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/gui/docviewer.py +151 -340
- novelWriter-2.2rc1/novelwriter/gui/docviewerpanel.py +457 -0
- novelWriter-2.2rc1/novelwriter/gui/editordocument.py +126 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/gui/mainmenu.py +350 -300
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/gui/noveltree.py +101 -125
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/gui/outline.py +154 -171
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/gui/projtree.py +480 -380
- novelWriter-2.2rc1/novelwriter/gui/sidebar.py +174 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/gui/statusbar.py +1 -1
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/gui/theme.py +114 -75
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/guimain.py +353 -254
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/shared.py +36 -3
- novelWriter-2.2rc1/novelwriter/tools/dictionaries.py +268 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/tools/manusbuild.py +17 -6
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/tools/manuscript.py +11 -3
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/tools/manussettings.py +0 -14
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/tools/projwizard.py +16 -2
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/tools/writingstats.py +1 -1
- novelWriter-2.2rc1/setup/data/hicolor/128x128/apps/novelwriter.png +0 -0
- novelWriter-2.2rc1/setup/data/hicolor/128x128/mimetypes/application-x-novelwriter-project.png +0 -0
- novelWriter-2.2rc1/setup/data/hicolor/16x16/apps/novelwriter.png +0 -0
- novelWriter-2.2rc1/setup/data/hicolor/16x16/mimetypes/application-x-novelwriter-project.png +0 -0
- novelWriter-2.2rc1/setup/data/hicolor/24x24/apps/novelwriter.png +0 -0
- novelWriter-2.2rc1/setup/data/hicolor/24x24/mimetypes/application-x-novelwriter-project.png +0 -0
- novelWriter-2.2rc1/setup/data/hicolor/256x256/apps/novelwriter.png +0 -0
- novelWriter-2.2rc1/setup/data/hicolor/256x256/mimetypes/application-x-novelwriter-project.png +0 -0
- novelWriter-2.2rc1/setup/data/hicolor/32x32/apps/novelwriter.png +0 -0
- novelWriter-2.2rc1/setup/data/hicolor/32x32/mimetypes/application-x-novelwriter-project.png +0 -0
- novelWriter-2.2rc1/setup/data/hicolor/48x48/apps/novelwriter.png +0 -0
- novelWriter-2.2rc1/setup/data/hicolor/48x48/mimetypes/application-x-novelwriter-project.png +0 -0
- novelWriter-2.2rc1/setup/data/hicolor/512x512/apps/novelwriter.png +0 -0
- novelWriter-2.2rc1/setup/data/hicolor/512x512/mimetypes/application-x-novelwriter-project.png +0 -0
- novelWriter-2.2rc1/setup/data/hicolor/64x64/apps/novelwriter.png +0 -0
- novelWriter-2.2rc1/setup/data/hicolor/64x64/mimetypes/application-x-novelwriter-project.png +0 -0
- novelWriter-2.2rc1/setup/data/hicolor/scalable/apps/novelwriter.svg +9 -0
- novelWriter-2.2rc1/setup/data/hicolor/scalable/mimetypes/application-x-novelwriter-project.svg +8 -0
- novelWriter-2.2rc1/setup/data/novelwriter.png +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/setup/description_pypi.md +2 -2
- novelWriter-2.2rc1/setup/icons/novelwriter.ico +0 -0
- novelWriter-2.2rc1/setup/icons/novelwriter.svg +9 -0
- novelWriter-2.2rc1/setup/icons/x-novelwriter-project.ico +0 -0
- novelWriter-2.2rc1/setup/icons/x-novelwriter-project.svg +8 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/setup/macos/build.sh +8 -0
- novelWriter-2.2rc1/setup/macos/novelwriter.iconset/icon_128x128.png +0 -0
- novelWriter-2.2rc1/setup/macos/novelwriter.iconset/icon_128x128@2x.png +0 -0
- novelWriter-2.2rc1/setup/macos/novelwriter.iconset/icon_16x16.png +0 -0
- novelWriter-2.2rc1/setup/macos/novelwriter.iconset/icon_16x16@2x.png +0 -0
- novelWriter-2.2rc1/setup/macos/novelwriter.iconset/icon_256x256.png +0 -0
- novelWriter-2.2rc1/setup/macos/novelwriter.iconset/icon_256x256@2x.png +0 -0
- novelWriter-2.2rc1/setup/macos/novelwriter.iconset/icon_32x32.png +0 -0
- novelWriter-2.2rc1/setup/macos/novelwriter.iconset/icon_32x32@2x.png +0 -0
- novelWriter-2.2rc1/setup/macos/novelwriter.iconset/icon_512x512.png +0 -0
- novelWriter-2.2rc1/setup/macos/novelwriter.iconset/icon_512x512@2x.png +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/setup/make_release.sh +2 -2
- novelWriter-2.2rc1/setup/novelwriter_readme.png +0 -0
- novelWriter-2.2rc1/setup/novelwriter_text.png +0 -0
- novelWriter-2.1.1/novelwriter/assets/icons/novelwriter.ico +0 -0
- novelWriter-2.1.1/novelwriter/assets/icons/novelwriter.svg +0 -184
- novelWriter-2.1.1/novelwriter/assets/icons/typicons_dark/typ_at.svg +0 -4
- novelWriter-2.1.1/novelwriter/assets/icons/typicons_dark/typ_th-menu.svg +0 -4
- novelWriter-2.1.1/novelwriter/assets/icons/typicons_light/typ_at.svg +0 -4
- novelWriter-2.1.1/novelwriter/assets/icons/typicons_light/typ_th-menu.svg +0 -4
- novelWriter-2.1.1/novelwriter/assets/icons/x-novelwriter-project.ico +0 -0
- novelWriter-2.1.1/novelwriter/assets/icons/x-novelwriter-project.svg +0 -207
- novelWriter-2.1.1/novelwriter/assets/text/release_notes.htm +0 -47
- novelWriter-2.1.1/novelwriter/gui/sidebar.py +0 -143
- novelWriter-2.1.1/setup/data/hicolor/128x128/apps/novelwriter.png +0 -0
- novelWriter-2.1.1/setup/data/hicolor/128x128/mimetypes/application-x-novelwriter-project.png +0 -0
- novelWriter-2.1.1/setup/data/hicolor/16x16/apps/novelwriter.png +0 -0
- novelWriter-2.1.1/setup/data/hicolor/16x16/mimetypes/application-x-novelwriter-project.png +0 -0
- novelWriter-2.1.1/setup/data/hicolor/24x24/apps/novelwriter.png +0 -0
- novelWriter-2.1.1/setup/data/hicolor/24x24/mimetypes/application-x-novelwriter-project.png +0 -0
- novelWriter-2.1.1/setup/data/hicolor/256x256/apps/novelwriter.png +0 -0
- novelWriter-2.1.1/setup/data/hicolor/256x256/mimetypes/application-x-novelwriter-project.png +0 -0
- novelWriter-2.1.1/setup/data/hicolor/32x32/apps/novelwriter.png +0 -0
- novelWriter-2.1.1/setup/data/hicolor/32x32/mimetypes/application-x-novelwriter-project.png +0 -0
- novelWriter-2.1.1/setup/data/hicolor/48x48/apps/novelwriter.png +0 -0
- novelWriter-2.1.1/setup/data/hicolor/48x48/mimetypes/application-x-novelwriter-project.png +0 -0
- novelWriter-2.1.1/setup/data/hicolor/64x64/apps/novelwriter.png +0 -0
- novelWriter-2.1.1/setup/data/hicolor/64x64/mimetypes/application-x-novelwriter-project.png +0 -0
- novelWriter-2.1.1/setup/data/hicolor/scalable/apps/novelwriter.svg +0 -184
- novelWriter-2.1.1/setup/data/hicolor/scalable/mimetypes/application-x-novelwriter-project.svg +0 -207
- novelWriter-2.1.1/setup/data/novelwriter.png +0 -0
- novelWriter-2.1.1/setup/icons/novelwriter.ico +0 -0
- novelWriter-2.1.1/setup/icons/novelwriter.svg +0 -184
- novelWriter-2.1.1/setup/icons/x-novelwriter-project.ico +0 -0
- novelWriter-2.1.1/setup/icons/x-novelwriter-project.svg +0 -207
- novelWriter-2.1.1/setup/macos/generate_icns.sh +0 -70
- novelWriter-2.1.1/setup/macos/novelwriter.icns +0 -0
- novelWriter-2.1.1/setup/novelwriter.png +0 -0
- novelWriter-2.1.1/setup/novelwriter_text.png +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/LICENSE.md +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/MANIFEST.in +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelWriter.egg-info/dependency_links.txt +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelWriter.egg-info/entry_points.txt +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelWriter.egg-info/not-zip-safe +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelWriter.egg-info/requires.txt +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelWriter.egg-info/top_level.txt +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/i18n/nw_de_DE.qm +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/i18n/nw_en_US.qm +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/i18n/nw_es_419.qm +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/i18n/nw_fr_FR.qm +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/i18n/nw_it_IT.qm +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/i18n/nw_ja_JP.qm +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/i18n/nw_nb_NO.qm +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/i18n/nw_nl_NL.qm +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/i18n/nw_pt_BR.qm +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/i18n/nw_zh_CN.qm +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/i18n/project_es_419.json +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/i18n/project_fr_FR.json +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/i18n/project_it_IT.json +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/i18n/project_nl_NL.json +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/i18n/project_pt_BR.json +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/i18n/project_ru_RU.json +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/i18n/project_zh_CN.json +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/README.md +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/mixed_document-chapter.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/mixed_document-note.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/mixed_document-scene.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/mixed_document-section.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/mixed_document-title.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/mixed_edit.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/mixed_input-checked.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/mixed_input-none.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/mixed_input-unchecked.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/mixed_search-replace.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/nw_deco-h0.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/nw_deco-h1.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/nw_deco-h2.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/nw_deco-h3.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/nw_deco-h4.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/nw_deco-noveltree-more.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/nw_search-case.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/nw_search-preserve.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/nw_search-regex.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/nw_search-word.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_arrow-down-thick-grey.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_arrow-forward.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_arrow-maximise.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_arrow-minimise.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_arrow-repeat-grey.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_book-grey.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_book.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_bookmark.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_calendar.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_cancel-grey.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_cancel.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_chart-bar-grey.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_chevron-down.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_chevron-left.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_chevron-right.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_chevron-up.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_cog.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_delete-full.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_delete.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_directions-full.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_document-text.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_export-grey.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_export.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_flag.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_folder-open.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_folder.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_globe-grey.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_key.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_lightbulb-full.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_location.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_media-pause-grey.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_media-record-outline.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_media-record.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_minus.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_pencil.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_pin-outline.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_pin.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_plus.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_puzzle-outline.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_puzzle.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_refresh-flipped.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_refresh.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_search.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_star.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_stopwatch-grey.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_th-list-grey.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_times.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_trash.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_user.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_dark/typ_warning-full.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/README.md +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/mixed_document-chapter.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/mixed_document-note.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/mixed_document-scene.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/mixed_document-section.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/mixed_document-title.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/mixed_edit.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/mixed_input-checked.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/mixed_input-none.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/mixed_input-unchecked.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/mixed_search-replace.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/nw_deco-h0.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/nw_deco-h1.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/nw_deco-h2.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/nw_deco-h3.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/nw_deco-h4.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/nw_deco-noveltree-more.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/nw_search-case.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/nw_search-preserve.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/nw_search-regex.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/nw_search-word.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_arrow-down-thick-grey.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_arrow-forward.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_arrow-maximise.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_arrow-minimise.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_arrow-repeat-grey.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_book-grey.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_book.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_bookmark.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_calendar.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_cancel-grey.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_cancel.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_chart-bar-grey.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_chevron-down.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_chevron-left.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_chevron-right.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_chevron-up.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_cog.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_delete-full.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_delete.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_directions-full.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_document-text.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_export-grey.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_export.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_flag.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_folder-open.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_folder.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_globe-grey.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_key.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_lightbulb-full.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_location.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_media-pause-grey.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_media-record-outline.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_media-record.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_minus.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_pencil.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_pin-outline.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_pin.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_plus.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_puzzle-outline.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_puzzle.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_refresh-flipped.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_refresh.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_search.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_star.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_stopwatch-grey.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_th-list-grey.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_times.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_trash.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_user.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/icons/typicons_light/typ_warning-full.svg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/images/wizard-back.jpg +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/text/gplv3_en.htm +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/text/lipsum.txt +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/themes/default.conf +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/themes/default_dark.conf +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/themes/default_light.conf +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/themes/solarized_dark.conf +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/assets/themes/solarized_light.conf +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/core/__init__.py +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/core/document.py +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/core/item.py +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/core/projectxml.py +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/core/sessions.py +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/core/spellcheck.py +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/core/status.py +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/core/storage.py +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/core/tree.py +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/dialogs/__init__.py +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/dialogs/about.py +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/dialogs/docmerge.py +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/dialogs/docsplit.py +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/dialogs/editlabel.py +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/dialogs/projdetails.py +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/dialogs/projload.py +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/dialogs/quotes.py +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/dialogs/wordlist.py +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/error.py +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/extensions/__init__.py +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/extensions/circularprogress.py +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/extensions/configlayout.py +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/extensions/pageddialog.py +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/extensions/pagedsidebar.py +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/extensions/simpleprogress.py +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/extensions/statusled.py +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/extensions/switch.py +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/extensions/switchbox.py +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/extensions/wheeleventfilter.py +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/gui/__init__.py +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/gui/itemdetails.py +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/tools/__init__.py +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/novelwriter/tools/lipsum.py +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/pkgutils.py +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/pyproject.toml +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/setup/appimage_launcher.sh +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/setup/data/novelwriter.desktop +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/setup/data/x-novelwriter-project.xml +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/setup/debian/compat +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/setup/debian/control +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/setup/debian/copyright +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/setup/debian/install +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/setup/debian/py3dist-overrides +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/setup/debian/rules +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/setup/debian/source/format +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/setup/description_short.txt +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/setup/iss_license.txt +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/setup/macos/App.entitlements +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/setup/macos/Info.plist.template +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/setup/make_clean.sh +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/setup/make_pip.sh +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/setup/make_snapshot.sh +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/setup/novelwriter.appdata.xml +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/setup/win_setup_embed.iss +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/setup/windows_install.bat +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/setup/windows_uninstall.bat +0 -0
- {novelWriter-2.1.1 → novelWriter-2.2rc1}/setup.cfg +0 -0
@@ -1,5 +1,150 @@
|
|
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
|
+
|
71
|
+
## Version 2.2 Beta 1 [2023-11-11]
|
72
|
+
|
73
|
+
### Release Notes
|
74
|
+
|
75
|
+
This is a beta release of the next release version, and is intended for testing purposes. Please be
|
76
|
+
careful when using this version on live writing projects, and make sure you take frequent backups.
|
77
|
+
|
78
|
+
Please check the changelog for an overview of changes. The full release notes will be added to the
|
79
|
+
final release.
|
80
|
+
|
81
|
+
### Detailed Changelog
|
82
|
+
|
83
|
+
**Features**
|
84
|
+
|
85
|
+
* novelWriter has a new logo and icon. PR #1593.
|
86
|
+
* The Document Editor is now a true plain text editor. This has a number of benefits and a couple
|
87
|
+
of drawbacks. The most important benefits is that the editor responds a lot faster, and can hold
|
88
|
+
much larger text documents. The big document limit has therefore been removed. It mostly affected
|
89
|
+
automatic spell checking. The syntax highlighter and spell checker are also more efficient, which
|
90
|
+
allows for needed improvements to these. The drawbacks are mainly that the editor now scrolls one
|
91
|
+
line at a time, instead of scrolling pixel by pixel like before. PRs #1521 and #1525.
|
92
|
+
* Tags and References are now case insensitive. Their display name on the user interface remains
|
93
|
+
the same as the value set for the `@tag` entry. Issue #1313. PRs #1522 and #1578.
|
94
|
+
* Keywords for Tags and References, and the References themselves, now have an auto-complete menu
|
95
|
+
that pops up in the editor on lines starting with the `@` character. It will first suggest what
|
96
|
+
keyword you want to use, and when it has been added, use that keyword to look up suggestions for
|
97
|
+
references to add. The suggestions improve as you type by looking for the characters you've
|
98
|
+
already typed in the tags you've previously defined. Issue #823. PR #1581.
|
99
|
+
* You can now right-click an undefined tag, and a context menu option to create a Project Note for
|
100
|
+
that tag will appear in the menu. On selection, it will create a note in the first root folder of
|
101
|
+
the correct kind, and set the title and tag to match the undefined reference, making it instantly
|
102
|
+
defined. Issues #1580 and #823. PR #1582.
|
103
|
+
* Shortcodes have been added to the Document Editor. Shortcodes are HTML-like syntax, but uses
|
104
|
+
square brackets instead of angular brackets. So `[b]text[/b]` will make the word "text" appear as
|
105
|
+
bold. Shortcodes currently support bold, italic, strike trough, underline, superscript and
|
106
|
+
subscript text. The first three are complimentary to the Markdown-like syntax that. The benefit
|
107
|
+
of the shortcode emphasis syntax, however, is that it does not care about word boundaries, and
|
108
|
+
can therefore be used any place in the text. Including in the middle of words. Issues #1337 and
|
109
|
+
#1444. PRs #1540 and #1583.
|
110
|
+
* A show/hide toolbar has been added to the editor where tool buttons for formatting options are
|
111
|
+
available. The toolbar is hidden by default, but can be activated from a three dots icon in the
|
112
|
+
top left corner of the editor. Issue #1585. PR #1584.
|
113
|
+
* Build Definitions in the Manuscript Build tool can now be re-ordered, and the order is preserved
|
114
|
+
when the tool is closed and re-opened. Issue #1542. PR #1591.
|
115
|
+
|
116
|
+
**Usability**
|
117
|
+
|
118
|
+
* The Settings menu in the sidebar now always pops out to the right and upwards from the bottom of
|
119
|
+
the icon. The previous behaviour was not guaranteed to stay in the visible area of the screen.
|
120
|
+
PR #1520.
|
121
|
+
* The right click action on a misspelled word now uses the actual spell checker data for lookup.
|
122
|
+
Previously, the spell checker would underline a word that was misspelled, but the right click
|
123
|
+
action actually had no way of reading where the error line was, so it had to guess again what
|
124
|
+
word the user was clicking. Since these two parts of the code used different logic, they
|
125
|
+
sometimes produced different results. The spell checker now saves the location of each spell
|
126
|
+
check error, and the right click action retrieves this data when generating suggestions, which
|
127
|
+
should eliminate the problem of picking the correct word boundaries. Issue #1532. PR #1525.
|
128
|
+
* The language of a project is not set in the New Project Wizard and in Project Settings. It is no
|
129
|
+
longer defined in the Build Settings panel. Issue #1588. PR #1589.
|
130
|
+
* The way switching focus and view in the main GUI has changed. Pressing `Ctrl+T` will now switch
|
131
|
+
focus to the Project or Novel Tree if focus is elsewhere, or if either have focus already, it
|
132
|
+
will switch view to the other tree. Pressing `Ctrl+E` will switch focus and view to the Document
|
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.
|
135
|
+
|
136
|
+
**User Interface**
|
137
|
+
|
138
|
+
* The labels under the sidebar buttons have been removed. The tool tips have the necessary
|
139
|
+
information. PR #1520.
|
140
|
+
|
141
|
+
**Other Improvements**
|
142
|
+
|
143
|
+
* Also the Tags and References keywords are now translated into the project language when these are
|
144
|
+
included in Manuscript builds. As long as the phrases have been translated. PR #1586.
|
145
|
+
|
146
|
+
----
|
147
|
+
|
3
148
|
## Version 2.1.1 [2023-11-05]
|
4
149
|
|
5
150
|
### Release Notes
|
@@ -28,7 +173,7 @@ changes have been fixed as well. See the full changelog for more details.
|
|
28
173
|
Qt 5.15.8. In particular, it is possible to drop items on the root level, and it's possible to
|
29
174
|
move root items to other locations. Neither should be possible and will severely mess up the
|
30
175
|
project if done. Issue #1569. PR #1570.
|
31
|
-
* Add a custom
|
176
|
+
* Add a custom auto-scroll feature when dragging an item in the project tree to near the top or
|
32
177
|
bottom. This is actually a default feature of the tree widget in the Qt library, but this too is
|
33
178
|
broken in some versions of Qt 5.15.x. The default feature has been permanently disabled and
|
34
179
|
replaced by a custom written feature that behaves similarly. Issue #1561. PR #1571.
|
@@ -250,7 +395,7 @@ This is a patch release that fixes a few issues and adds a Japanese translation.
|
|
250
395
|
|
251
396
|
The issues were mostly related to spell checking. In particular, issues with finding the word
|
252
397
|
boundary when using underscore characters for italics markup. These issues should now be resolved.
|
253
|
-
In addition, escaped markup characters are now
|
398
|
+
In addition, escaped markup characters are now rendered properly in HTML and ODT build formats.
|
254
399
|
|
255
400
|
A few usability improvements have also been made. The Add Item menu in the project tree no longer
|
256
401
|
shows the options to create Novel Documents when an item in the tree is selected that cannot hold
|
@@ -410,7 +555,7 @@ This is a patch release that fixes a few bugs and usability issues. The editing
|
|
410
555
|
importance labels in Project Settings should now be a bit more intuitive. Opening a document from
|
411
556
|
the Outline View that is already open in the editor should now switch to the editor view. The
|
412
557
|
convert folder to note or document feature in the project tree has also been fixed. Some icons have
|
413
|
-
been updated and a
|
558
|
+
been updated and a rendering issue with one of them fixed. Chinese, Norwegian, US English, German
|
414
559
|
and Spanish translations have been updated as well. A new credits tab has been added to the About
|
415
560
|
dialog box, replacing the Credits section on the main About tab.
|
416
561
|
|
@@ -680,7 +825,7 @@ opened, a request to update the file format will show up.
|
|
680
825
|
PR #1212.
|
681
826
|
* The GUI theme now determines which icon theme is to be loaded. It is no longer a separate
|
682
827
|
setting. The icon theme can also be reloaded without restart. Issue #1172. PR #1212.
|
683
|
-
* The block
|
828
|
+
* The block formatting features in the Format menu now also works on empty lines. Issue #1178.
|
684
829
|
PR #1214.
|
685
830
|
* There is now a Format menu entry and shortcut code for synopsis comments. Issue #1177. PR #1214.
|
686
831
|
* The split document dialog now has the option to move teh source document to trash. Issue #1179.
|
@@ -717,7 +862,7 @@ opened, a request to update the file format will show up.
|
|
717
862
|
correct type information. PR #1197.
|
718
863
|
* Saving and loading of XML data is now handled by a separate set of reader and writer classes. The
|
719
864
|
reader class is capable of reading all file formats that have been used thus far. The various
|
720
|
-
data classes have been improved, and a new XML file
|
865
|
+
data classes have been improved, and a new XML file format version 1.5 added. Issue #1189.
|
721
866
|
PRs #1221 and #1232.
|
722
867
|
* The index is now automatically rebuilt when the project file format is updated. Issue #1235.
|
723
868
|
PR #1236.
|
@@ -910,8 +1055,8 @@ final release.
|
|
910
1055
|
setting is preserved. Previously, the Importance setting would overwrite it during the
|
911
1056
|
conversion. PR #1030.
|
912
1057
|
* Item labels, Status labels, and other labels on the GUI are now run through a "simplify" function
|
913
|
-
before being accepted. This functions strips out all
|
914
|
-
replace them with single plain
|
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
|
915
1060
|
makes sure there aren't invisible characters floating around in the labels. PR #1038.
|
916
1061
|
* Due to the changes to how drag and drop works, there are no longer any restrictions on folders
|
917
1062
|
and documents. Only root folders remain restricted in terms of moving. Root folders can only be
|
@@ -1417,7 +1562,7 @@ checking enabled if there is something wrong with the spell check package.
|
|
1417
1562
|
**Bugfixes**
|
1418
1563
|
|
1419
1564
|
* When the HTML converter replaced grater than or smaller than symbols with the corresponding HTML
|
1420
|
-
entities. the
|
1565
|
+
entities. the position of the formatting tags following in the text would be shifted, but the
|
1421
1566
|
positions were not updated. This is now solved by updating these positions when such a symbol is
|
1422
1567
|
encountered. This issue has been backported from 1.6 development. Issue #929.
|
1423
1568
|
* If the pyenchant package is installed, but the underlying enchant library is broken in one way or
|
@@ -1582,7 +1727,7 @@ backups.
|
|
1582
1727
|
the case. Having two alternative spell checkers complicated the code a great deal, and the
|
1583
1728
|
internal spell checker also required full word lists to be distributed with novelWriter. PR #875.
|
1584
1729
|
* Added a setting in Preferences to change how the word count on the status bar is calculated. The
|
1585
|
-
new setting allows the project notes to be
|
1730
|
+
new setting allows the project notes to be filtered out, leaving only the word count for novel
|
1586
1731
|
files. Feature request #857. PR #882.
|
1587
1732
|
|
1588
1733
|
**Installation and Packaging**
|
@@ -1601,7 +1746,7 @@ backups.
|
|
1601
1746
|
|
1602
1747
|
**Internationalisation**
|
1603
1748
|
|
1604
|
-
* The US English and
|
1749
|
+
* The US English and Norwegian translation files have been updated. PR #884.
|
1605
1750
|
|
1606
1751
|
**Documentation**
|
1607
1752
|
|
@@ -1632,7 +1777,7 @@ careful when using this version on live writing projects, and make sure you take
|
|
1632
1777
|
|
1633
1778
|
**Internationalisation**
|
1634
1779
|
|
1635
|
-
* The US English and
|
1780
|
+
* The US English and Norwegian translation files have been updated. PR #870.
|
1636
1781
|
|
1637
1782
|
**Documentation**
|
1638
1783
|
|
@@ -2220,7 +2365,7 @@ buttons were blocked when they shouldn't. This release resolves these issues.
|
|
2220
2365
|
This release is mainly focused on the Build Novel Project tool. Completely new export classes have
|
2221
2366
|
been written to support Open Document and Markdown exports. In addition, the way document layouts
|
2222
2367
|
are handled have been automated a little to assist the user in keeping header levels and document
|
2223
|
-
layout flags in sync. The third new
|
2368
|
+
layout flags in sync. The third new addition is the ability to record and log idle time during a
|
2224
2369
|
writing session to improve the writing statistics information as requested by several users.
|
2225
2370
|
Finally, it is now possible to directly edit the project dictionary via a new, simple GUI dialog.
|
2226
2371
|
|
@@ -2313,7 +2458,7 @@ _These Release Notes also include the changes from 1.2 Beta 1 and RC 1._
|
|
2313
2458
|
the index on next load. For earlier versions of novelWriter before 1.1.1, it would also cause a
|
2314
2459
|
crash. Invalid keywords are now rejected during indexing. Issue #688. PR #689.
|
2315
2460
|
* The "Empty Trash" option was no longer working due to an earlier fix that added a requirement
|
2316
|
-
that the project tree has focus to allow the emptying to
|
2461
|
+
that the project tree has focus to allow the emptying to proceed. Since the Empty Trash feature
|
2317
2462
|
opens a dialog, the tree loses focus, and the deletions are therefore ignored. The focus check is
|
2318
2463
|
no longer considered when emptying the trash. Issue #701. PR #702.
|
2319
2464
|
|
@@ -2373,7 +2518,7 @@ _The Release Notes have been moved and merged into the 1.2 RC 1 notes._
|
|
2373
2518
|
* A full Markdown exporter has been written and added for the Build Novel Project tool. This too
|
2374
2519
|
replaces a Qt feature that was used to save the content of the preview window into a markdown
|
2375
2520
|
file. The exporter allows for both standard markdown and GitHub flavour markdown. The only
|
2376
|
-
relevant difference being that the latter allows
|
2521
|
+
relevant difference being that the latter allows strike through text. Issue #617. PR #650.
|
2377
2522
|
* The Build Novel Project tool now has a "Line height" property that is applied to the preview, and
|
2378
2523
|
to the HTML5 and Open Document export formats. Discussion #653. Issue #654. PR #660.
|
2379
2524
|
* The Build Novel Project tool now has an option to convert Unicode characters to HTML entities on
|
@@ -2454,7 +2599,7 @@ but is still lacking in functionality compared to Enchant.
|
|
2454
2599
|
exclude negative word counts is active. Previously, the entries with negative counts were
|
2455
2600
|
filtered out, but the change in count was still applied to the next line, altering the value.
|
2456
2601
|
Now, the GUI will instead just drop the lines that are negative and keep the other lines
|
2457
|
-
unchanged. This is more
|
2602
|
+
unchanged. This is more intuitive, but it also means that the total count now longer matches the
|
2458
2603
|
sum of the lines. PR #659.
|
2459
2604
|
* The keyboard shortcut for deleting entries in the project tree has been changed from `Ctrl+Del`
|
2460
2605
|
to `Ctrl+Shift+Del`. The `Ctrl+Del` shortcut is thus free to be used exclusively by the editor to
|
@@ -2467,7 +2612,7 @@ but is still lacking in functionality compared to Enchant.
|
|
2467
2612
|
given a significant speed improvement by caching the imported dictionary as a Python `set`
|
2468
2613
|
instead of a `list`. The `set` has a hashed key lookup algorithm that is significantly faster.
|
2469
2614
|
PR #668.
|
2470
|
-
* Sessions
|
2615
|
+
* Sessions shorter than 5 minutes, and with no word count changes, are no longer recorded in the
|
2471
2616
|
session stats log file. PR #685.
|
2472
2617
|
|
2473
2618
|
**Installation**
|
@@ -2932,7 +3077,7 @@ issues are discovered, the next release will be the final version 1.0 release.
|
|
2932
3077
|
|
2933
3078
|
* The tests for the core classes of novelWriter have been completely rewritten. Every class or
|
2934
3079
|
source file of the core functionality (everything handling the actual project data and documents,
|
2935
|
-
as well as the meta data) is now covered by its own
|
3080
|
+
as well as the meta data) is now covered by its own test module with a 100% coverage for each
|
2936
3081
|
module. PR #512.
|
2937
3082
|
* Likewise, the base tests have been rewritten to cover the `Config` class, the `main` function
|
2938
3083
|
that launches the app, and the error handling class. The structure matches the core tests from
|
@@ -2964,7 +3109,7 @@ The "Typewriter Mode" of the editor has been improved. Essentially, this feature
|
|
2964
3109
|
scroll. It tries to keep the cursor stationary in the vertical direction, and will try to scroll
|
2965
3110
|
the document up when the cursor skips to a new line while typing (or down in case of backspaces).
|
2966
3111
|
This is similar to the way a typewriter scrolls the paper when hitting the return key. It improves
|
2967
|
-
the writing experience as the current active line will stay at the same eye
|
3112
|
+
the writing experience as the current active line will stay at the same eye height level on the
|
2968
3113
|
screen.
|
2969
3114
|
|
2970
3115
|
Previously, the feature would lock the cursor to a given vertical position defined by the user.
|
@@ -3012,7 +3157,7 @@ Switching main GUI theme still requires a restart.
|
|
3012
3157
|
handled by the various tools, but they shouldn't even trigger when there is no project or
|
3013
3158
|
document to perform the action on. PR #492.
|
3014
3159
|
* Clarify the message of the Close Project and Exit novelWriter dialogs. Previously, it may have
|
3015
|
-
seemed to some users that clicking "No" would allow the closing to
|
3160
|
+
seemed to some users that clicking "No" would allow the closing to proceed without saving
|
3016
3161
|
changes. This is not true as changes are saved automatically when editing a project. The dialog
|
3017
3162
|
text should now make this clearer. Issue #494, PR #495.
|
3018
3163
|
|
@@ -3057,7 +3202,7 @@ Switching main GUI theme still requires a restart.
|
|
3057
3202
|
**User Interface**
|
3058
3203
|
|
3059
3204
|
* An option has been added in Preferences to hide horizontal or vertical scroll bars on the main
|
3060
|
-
GUI. These
|
3205
|
+
GUI. These options will hide scroll bars on the Project Tree, Document Editor, Document Viewer,
|
3061
3206
|
Outline Tab and on the controls of the Build Novel Project tool. Scroll bars take up space, and
|
3062
3207
|
as long as the project doesn't contain very long documents, scrolling with the mouse wheel is
|
3063
3208
|
enough. The feature is of course entirely optional. PRs #468 and #469.
|
@@ -3077,7 +3222,7 @@ Switching main GUI theme still requires a restart.
|
|
3077
3222
|
* When applying a format from the format menu to a selection of multiple paragraphs (or lines),
|
3078
3223
|
only the first paragraph (or line) receives the formatting. The editor doesn't allow markdown
|
3079
3224
|
formatting to span multiple lines. Issue #451, PR #475.
|
3080
|
-
* The syntax highlighter no longer uses the same colour to highlight
|
3225
|
+
* The syntax highlighter no longer uses the same colour to highlight strike through text as for
|
3081
3226
|
emphasised text. The colour is intended to stand out, which makes little sense for such text.
|
3082
3227
|
Instead, the highlighter uses the same colour as for comments. PR #476.
|
3083
3228
|
|
@@ -3228,7 +3373,7 @@ Switching main GUI theme still requires a restart.
|
|
3228
3373
|
|
3229
3374
|
**Code Improvements**
|
3230
3375
|
|
3231
|
-
* Minor
|
3376
|
+
* Minor improvements have been made to the core project classes to improve encapsulation and
|
3232
3377
|
better ensure consistency between the different data structures that store the novel project in
|
3233
3378
|
memory. PR #447.
|
3234
3379
|
* Some unused or redundant code has been removed, and in some places, functions have been merged to
|
@@ -3245,9 +3390,9 @@ Switching main GUI theme still requires a restart.
|
|
3245
3390
|
**Bugfixes**
|
3246
3391
|
|
3247
3392
|
* If the horizontal scroll bar appeared at the bottom of the document editor or viewer, for
|
3248
|
-
instance if a long, un-
|
3249
|
-
footer. The footer bar now properly moves out of the way when the horizontal scroll bar
|
3250
|
-
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.
|
3251
3396
|
|
3252
3397
|
**New Features**
|
3253
3398
|
|
@@ -3369,7 +3514,7 @@ Switching main GUI theme still requires a restart.
|
|
3369
3514
|
leading line break. This was previously handled entirely by the Qt library, which does this for
|
3370
3515
|
some reason. Issue #395, PR #405.
|
3371
3516
|
* A chapter heading in a file with a different layout than `Unnumbered` can now also be flagged as
|
3372
|
-
an unnumbered chapter heading by adding an asterisk to the
|
3517
|
+
an unnumbered chapter heading by adding an asterisk to the beginning of the title text. This
|
3373
3518
|
only affects the number assignment and counter when running the Build Novel Project tool. The
|
3374
3519
|
rest of the app ignores the asterisk. Issue #402, PR #406.
|
3375
3520
|
|
@@ -3384,7 +3529,7 @@ Switching main GUI theme still requires a restart.
|
|
3384
3529
|
create a copy of the example project from the source code. Either from the `sample` folder in the
|
3385
3530
|
source, or from a `sample.zip` file generated by the `setup.py` script and saved to the
|
3386
3531
|
`nw/assets` folder. PR #366.
|
3387
|
-
* When the user clicked cancel on the colour dialog in Project
|
3532
|
+
* When the user clicked cancel on the colour dialog in Project Settings, the icon would be reset to
|
3388
3533
|
black. Instead, the colour should remain unchanged. A check that the user actually selected a
|
3389
3534
|
colour has now been added. Issue #395, PR #403.
|
3390
3535
|
|
@@ -3460,7 +3605,7 @@ planned by GitHub. See their [notes](https://github.com/github/renaming) for mor
|
|
3460
3605
|
[novelwriter.readthedocs.io](https://novelwriter.readthedocs.io/) has been rewritten. It was
|
3461
3606
|
drifting out of sync with the development of the code. In addition, many improvements have been
|
3462
3607
|
made to the reStructuredText formatting of the documentation source by providing better
|
3463
|
-
cross-reference linking and
|
3608
|
+
cross-reference linking and highlighting. The main repository README file has been updated to
|
3464
3609
|
match. PRs #375, #382, and #384.
|
3465
3610
|
* The main `setup.py` script has been updated to also build documentation for the Qt Assistant when
|
3466
3611
|
given a `qthelp` flag. The compiled help files are copied into the `nw/assets/help` folder, and
|
@@ -3558,7 +3703,7 @@ longer be read by an earlier version due to the change of how autoReplace settin
|
|
3558
3703
|
has been removed from the main window status bar. PR #348.
|
3559
3704
|
* The document editor footer can optionally be hidden in Distraction Free mode. PR #351.
|
3560
3705
|
* The Italic and Bold menu entries have been renamed to Emphasis and Strong Emphasis, which is more
|
3561
|
-
in line with what they represent in Markdown and HTML. They are still
|
3706
|
+
in line with what they represent in Markdown and HTML. They are still rendered as Italic and
|
3562
3707
|
Bold in the document viewer, but the HTML export is using the `<em>` and `<strong>` tags.
|
3563
3708
|
PR #350.
|
3564
3709
|
* Due to several issues with the formatting of emphasised text using `*`, `**`, and `***` wrappers,
|
@@ -3571,9 +3716,9 @@ longer be read by an earlier version due to the change of how autoReplace settin
|
|
3571
3716
|
for emphasis and strong is commonly recommended when writing Markdown anyway, so it is a sensible
|
3572
3717
|
compromise between speed and flexibility. This PR partially reverses PR #310. Issue #353,
|
3573
3718
|
PR #355.
|
3574
|
-
* The syntax highlighter now properly highlights overlapping
|
3719
|
+
* The syntax highlighter now properly highlights overlapping formatting, including emphasised text
|
3575
3720
|
inside of highlighted quotes. PR #355.
|
3576
|
-
* The colour highlighting of emphasis, strong and
|
3721
|
+
* The colour highlighting of emphasis, strong and strike through, can now be switch off in
|
3577
3722
|
Preferences. The syntax highlighter will still apply the italic, bold and strike effects.
|
3578
3723
|
PR #357.
|
3579
3724
|
* The project path in the Details tab of Project Settings can now be selected and copied to
|
@@ -3604,7 +3749,7 @@ longer be read by an earlier version due to the change of how autoReplace settin
|
|
3604
3749
|
visible in the tree. It is called when you for instance click the header of an open document. It
|
3605
3750
|
was also activated when opening a document from the tree view with either double-click by mouse,
|
3606
3751
|
or by using the Enter key. This meant that the tree view would often move, which made it hard to
|
3607
|
-
mouse click on items after
|
3752
|
+
mouse click on items after each other since you ended up chasing a moving target. This feature is
|
3608
3753
|
now disabled for document open. In addition, the scroll into view feature has been added to the
|
3609
3754
|
search/replace call to move into the next document when reaching the end of the current document.
|
3610
3755
|
This was requested in Issue #332. PR #334.
|
@@ -3615,7 +3760,7 @@ longer be read by an earlier version due to the change of how autoReplace settin
|
|
3615
3760
|
**Documentation**
|
3616
3761
|
|
3617
3762
|
* The documentation has been updated to clarify the correct formatting for italic, bold and
|
3618
|
-
|
3763
|
+
strike through formatting tags. Issue #220, PR #338.
|
3619
3764
|
|
3620
3765
|
----
|
3621
3766
|
|
@@ -3634,11 +3779,11 @@ longer be read by an earlier version due to the change of how autoReplace settin
|
|
3634
3779
|
|
3635
3780
|
* Underline text formatting has been removed. It is not standard HTML5, nor Markdown, and was
|
3636
3781
|
previously implemented using the double underscore notation that in standard Markdown is
|
3637
|
-
|
3782
|
+
rendered as bold text. Instead, novelWriter now renders a single `*` or `_` wrapping a piece of
|
3638
3783
|
text _within_ a paragraphs as italicised text, and a double `**` or `__` as bold text. The
|
3639
3784
|
keyboard shortcuts and automatic features _only_ support the `*` notation. A triple set of `***`
|
3640
3785
|
are treated as both bold and italicised. PR #310.
|
3641
|
-
*
|
3786
|
+
* Strike through formatting has been added back into novelWriter using the standard Markdown `~~`
|
3642
3787
|
wrapping. PR #310.
|
3643
3788
|
* Added support for thin spaces and non-breaking thin spaces. PR #319.
|
3644
3789
|
* The `Ctrl+Z` key sequence (undo) would not go through the wrapper function for document action
|
@@ -3655,7 +3800,7 @@ longer be read by an earlier version due to the change of how autoReplace settin
|
|
3655
3800
|
PR #309.
|
3656
3801
|
* The text emphasis functions, either selected from the menu or via keyboard shortcuts, will now
|
3657
3802
|
try to respond to the command in a more meaningful way. That is, the text editor will try to
|
3658
|
-
toggle the bold or italics features independently of
|
3803
|
+
toggle the bold or italics features independently of each other on the selected text. A menu entry
|
3659
3804
|
to apply both at the same time has also been added. PR #310.
|
3660
3805
|
* The document editor search tool has been completely rewritten. It now appears as a search box at
|
3661
3806
|
the top of the document, and has a number of toggle switches added to it. You can modify the
|
@@ -4025,7 +4170,7 @@ that I can spend more time using it than creating it.
|
|
4025
4170
|
**Additional thanks** to @countjocular for PRs #173 and #174, and to @johnblommers for all the
|
4026
4171
|
helpful feedback and issue reports for the new features added in this, and previous releases.
|
4027
4172
|
|
4028
|
-
###
|
4173
|
+
### Notable Changes
|
4029
4174
|
|
4030
4175
|
* The Timeline View dialog is now gone. Instead, the main window area has been split into two tabs.
|
4031
4176
|
The first, the "Editor", contains the Document Editor and Viewer panels. The second, the
|
@@ -4176,7 +4321,7 @@ helpful feedback and issue reports for the new features added in this, and previ
|
|
4176
4321
|
**Bug Fixes**
|
4177
4322
|
|
4178
4323
|
* Fixed an issue when closing the import file dialog without selecting a file, the import would
|
4179
|
-
|
4324
|
+
proceed, but fail on file not found. The import is now cancelled when there is no file selected.
|
4180
4325
|
PR #149.
|
4181
4326
|
* Fixed an issue with markdown export where it did not take into account hard line breaks. Issue
|
4182
4327
|
#151, PR #152.
|
@@ -4586,7 +4731,7 @@ This is the initial release of a working version of novelWriter, but with very l
|
|
4586
4731
|
capabilities. So far, the following has been implemented:
|
4587
4732
|
|
4588
4733
|
* A document tree with a set of pre-defined root folders of a given set of classes for different
|
4589
|
-
purposes for novel writing. That is, a root item for the novel itself, one for
|
4734
|
+
purposes for novel writing. That is, a root item for the novel itself, one for characters, plot
|
4590
4735
|
elements, timeline, locations, objects, and a custom one.
|
4591
4736
|
* A plain text editor with a simplified markdown format that allows for four levels of titles, and
|
4592
4737
|
bold, italics and underline text.
|
@@ -4594,7 +4739,7 @@ capabilities. So far, the following has been implemented:
|
|
4594
4739
|
* It also allows for keyword/value sets staring with the character `@`. These will later be used
|
4595
4740
|
to link documents together as tags point to other documents. For instance, a scene file can
|
4596
4741
|
point the keyword `@POV:name` to a character file with the keyword `@THIS:name`.
|
4597
|
-
* The text editor has a set of
|
4742
|
+
* The text editor has a set of auto replace features:
|
4598
4743
|
* Dashes are made by combining two or three hyphens.
|
4599
4744
|
* Three dots are replaced with the ellipsis.
|
4600
4745
|
* Straight quotes with your quote format of choice.
|
@@ -52,6 +52,12 @@ Some of the assets bundled with novelWriter were adapted from the following sour
|
|
52
52
|
* [Owl](https://github.com/sdras/night-owl-vscode-theme) syntax themes by Sarah Drasner (MIT License)
|
53
53
|
* [Solarized](https://github.com/altercation/solarized) themes by Ethan Schoonover (MIT License)
|
54
54
|
|
55
|
+
## Fonts
|
56
|
+
|
57
|
+
The font used for the main novelWriter logo, mimetype and text banners is:
|
58
|
+
|
59
|
+
* Pridi by Cadson Demak (Open Font License, Version 1.1)
|
60
|
+
|
55
61
|
## Special Mentions
|
56
62
|
|
57
63
|
Additional thanks to @johnblommers who was an early user and who has provided a lot of very useful
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: novelWriter
|
3
|
-
Version: 2.
|
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.
|
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
|
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,13 +1,12 @@
|
|
1
1
|
# novelWriter
|
2
2
|
|
3
|
-
[](https://github.com/vkbo/novelWriter/releases)
|
4
3
|
[](https://github.com/vkbo/novelWriter/actions/workflows/test_linux.yml)
|
5
4
|
[](https://github.com/vkbo/novelWriter/actions/workflows/test_win.yml)
|
6
|
-
[](https://github.com/vkbo/novelWriter/actions/workflows/test_mac.yml)
|
6
|
+
[](https://github.com/vkbo/novelWriter/actions)
|
7
|
+
[](https://codecov.io/gh/vkbo/novelWriter)
|
9
8
|
|
10
|
-
<img align="left" style="margin: 0
|
9
|
+
<img align="left" style="margin: 0 0 4px 0;" src="https://raw.githubusercontent.com/vkbo/novelWriter/main/setup/novelwriter_readme.png">
|
11
10
|
|
12
11
|
novelWriter is a plain text editor designed for writing novels assembled from many smaller text
|
13
12
|
documents. It uses a minimal formatting syntax inspired by Markdown, and adds a meta data syntax
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: novelWriter
|
3
|
-
Version: 2.
|
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.
|
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
|
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
|
|