novelWriter 2.6b2__tar.gz → 2.6rc1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/CHANGELOG.md +40 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/PKG-INFO +2 -2
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelWriter.egg-info/PKG-INFO +2 -2
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/__init__.py +4 -4
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/i18n/nw_de_DE.qm +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/i18n/nw_en_US.qm +0 -0
- novelwriter-2.6rc1/novelwriter/assets/i18n/nw_es_419.qm +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/i18n/nw_fr_FR.qm +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/i18n/nw_it_IT.qm +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/i18n/nw_ja_JP.qm +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/i18n/nw_nb_NO.qm +0 -0
- novelwriter-2.6rc1/novelwriter/assets/i18n/nw_nl_NL.qm +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/i18n/nw_pl_PL.qm +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/i18n/nw_pt_BR.qm +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/i18n/nw_ru_RU.qm +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/i18n/nw_zh_CN.qm +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/manual.pdf +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/sample.zip +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/common.py +1 -1
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/config.py +4 -1
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/constants.py +36 -36
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/core/buildsettings.py +1 -1
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/core/coretools.py +1 -1
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/core/docbuild.py +1 -1
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/core/document.py +1 -1
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/core/index.py +1 -1
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/core/item.py +1 -1
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/core/itemmodel.py +1 -1
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/core/options.py +1 -1
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/core/project.py +1 -1
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/core/projectdata.py +8 -2
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/core/projectxml.py +1 -1
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/core/sessions.py +1 -1
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/core/spellcheck.py +1 -1
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/core/status.py +17 -3
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/core/storage.py +1 -1
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/core/tree.py +1 -1
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/dialogs/about.py +1 -1
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/dialogs/docmerge.py +1 -1
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/dialogs/docsplit.py +1 -1
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/dialogs/editlabel.py +1 -1
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/dialogs/preferences.py +2 -2
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/dialogs/projectsettings.py +146 -96
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/dialogs/quotes.py +1 -1
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/dialogs/wordlist.py +11 -10
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/enum.py +1 -1
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/error.py +2 -2
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/extensions/configlayout.py +1 -1
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/extensions/eventfilters.py +1 -1
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/extensions/modified.py +17 -5
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/extensions/novelselector.py +1 -1
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/extensions/pagedsidebar.py +4 -4
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/extensions/progressbars.py +4 -4
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/extensions/statusled.py +3 -3
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/extensions/switch.py +3 -3
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/extensions/switchbox.py +1 -1
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/extensions/versioninfo.py +1 -1
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/formats/shared.py +1 -1
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/formats/todocx.py +1 -1
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/formats/tohtml.py +1 -1
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/formats/tokenizer.py +5 -5
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/formats/tomarkdown.py +1 -1
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/formats/toodt.py +1 -1
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/formats/toqdoc.py +1 -1
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/formats/toraw.py +1 -1
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/gui/doceditor.py +4 -2
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/gui/dochighlight.py +1 -1
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/gui/docviewer.py +1 -1
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/gui/docviewerpanel.py +1 -1
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/gui/editordocument.py +1 -1
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/gui/itemdetails.py +3 -3
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/gui/mainmenu.py +1 -1
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/gui/noveltree.py +1 -1
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/gui/outline.py +8 -9
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/gui/projtree.py +5 -7
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/gui/search.py +2 -9
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/gui/sidebar.py +1 -1
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/gui/statusbar.py +20 -3
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/gui/theme.py +1 -1
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/guimain.py +1 -5
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/shared.py +1 -1
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/text/counting.py +1 -1
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/text/patterns.py +1 -1
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/tools/dictionaries.py +1 -1
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/tools/lipsum.py +1 -1
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/tools/manusbuild.py +1 -1
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/tools/manuscript.py +7 -7
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/tools/manussettings.py +1 -1
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/tools/noveldetails.py +1 -1
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/tools/welcome.py +1 -1
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/tools/writingstats.py +1 -1
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/types.py +2 -2
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/pkgutils.py +1 -1
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/debian/copyright +1 -1
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/iss_license.txt +1 -1
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/macos/build.sh +1 -0
- novelwriter-2.6b2/novelwriter/assets/i18n/nw_es_419.qm +0 -0
- novelwriter-2.6b2/novelwriter/assets/i18n/nw_nl_NL.qm +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/CREDITS.md +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/LICENSE.md +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/MANIFEST.in +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/README.md +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelWriter.egg-info/SOURCES.txt +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelWriter.egg-info/dependency_links.txt +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelWriter.egg-info/entry_points.txt +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelWriter.egg-info/requires.txt +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelWriter.egg-info/top_level.txt +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/i18n/project_de_DE.json +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/i18n/project_en_GB.json +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/i18n/project_en_US.json +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/i18n/project_es_419.json +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/i18n/project_fr_FR.json +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/i18n/project_it_IT.json +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/i18n/project_ja_JP.json +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/i18n/project_nb_NO.json +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/i18n/project_nl_NL.json +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/i18n/project_nn_NO.json +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/i18n/project_pl_PL.json +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/i18n/project_pt_BR.json +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/i18n/project_ru_RU.json +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/i18n/project_zh_CN.json +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/none.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/novelwriter.ico +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/novelwriter.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/README.md +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/icons.conf +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/mixed_copy.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/mixed_document-chapter.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/mixed_document-new.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/mixed_document-note.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/mixed_document-scene.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/mixed_document-section.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/mixed_document-title.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/mixed_edit.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/mixed_import.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/mixed_input-checked.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/mixed_input-none.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/mixed_input-unchecked.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/mixed_margin-bottom.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/mixed_margin-left.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/mixed_margin-right.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/mixed_margin-top.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/mixed_search-replace.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/mixed_size-height.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/mixed_size-width.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/nw_deco-h0.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/nw_deco-h1.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/nw_deco-h2-narrow.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/nw_deco-h2.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/nw_deco-h3-narrow.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/nw_deco-h3.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/nw_deco-h4-narrow.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/nw_deco-h4.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/nw_deco-note.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/nw_deco-noveltree-more.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/nw_font.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/nw_panel.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/nw_quote.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/nw_search-case.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/nw_search-preserve.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/nw_search-regex.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/nw_search-word.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/nw_tb-bold-md.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/nw_tb-bold.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/nw_tb-italic-md.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/nw_tb-italic.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/nw_tb-mark.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/nw_tb-strike-md.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/nw_tb-strike.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/nw_tb-subscript.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/nw_tb-superscript.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/nw_tb-underline.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/nw_toolbar.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_arrow-down-thick-grey.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_arrow-forward.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_arrow-maximise.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_arrow-minimise.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_arrow-repeat-grey.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_book-grey.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_book.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_bookmark.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_calendar.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_cancel-grey.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_cancel.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_chart-bar-grey.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_chevron-down.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_chevron-left.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_chevron-right.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_chevron-up.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_cog.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_delete-full.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_delete.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_directions-full.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_document-add.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_document-text.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_document.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_export-grey.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_export.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_eye.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_flag.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_folder-open.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_folder.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_globe-grey.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_key.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_lightbulb-full.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_location.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_media-pause-grey.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_media-record-outline.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_media-record.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_minus.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_pencil.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_pin-outline.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_pin.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_plus.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_puzzle-outline.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_puzzle.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_refresh-flipped.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_refresh.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_search-grey.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_search.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_star.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_stopwatch-grey.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_th-dot-menu.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_th-dot-more.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_th-list-grey.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_th-list.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_times.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_trash.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_unfold-hidden.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_unfold-visible.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_user.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_dark/typ_warning-full.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/README.md +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/icons.conf +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/mixed_copy.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/mixed_document-chapter.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/mixed_document-new.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/mixed_document-note.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/mixed_document-scene.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/mixed_document-section.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/mixed_document-title.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/mixed_edit.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/mixed_import.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/mixed_input-checked.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/mixed_input-none.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/mixed_input-unchecked.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/mixed_margin-bottom.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/mixed_margin-left.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/mixed_margin-right.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/mixed_margin-top.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/mixed_search-replace.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/mixed_size-height.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/mixed_size-width.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/nw_deco-h0.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/nw_deco-h1.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/nw_deco-h2-narrow.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/nw_deco-h2.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/nw_deco-h3-narrow.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/nw_deco-h3.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/nw_deco-h4-narrow.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/nw_deco-h4.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/nw_deco-note.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/nw_deco-noveltree-more.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/nw_font.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/nw_panel.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/nw_quote.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/nw_search-case.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/nw_search-preserve.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/nw_search-regex.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/nw_search-word.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/nw_tb-bold-md.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/nw_tb-bold.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/nw_tb-italic-md.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/nw_tb-italic.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/nw_tb-mark.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/nw_tb-strike-md.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/nw_tb-strike.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/nw_tb-subscript.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/nw_tb-superscript.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/nw_tb-underline.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/nw_toolbar.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_arrow-down-thick-grey.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_arrow-forward.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_arrow-maximise.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_arrow-minimise.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_arrow-repeat-grey.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_book-grey.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_book.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_bookmark.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_calendar.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_cancel-grey.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_cancel.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_chart-bar-grey.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_chevron-down.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_chevron-left.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_chevron-right.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_chevron-up.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_cog.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_delete-full.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_delete.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_directions-full.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_document-add.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_document-text.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_document.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_export-grey.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_export.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_eye.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_flag.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_folder-open.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_folder.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_globe-grey.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_key.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_lightbulb-full.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_location.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_media-pause-grey.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_media-record-outline.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_media-record.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_minus.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_pencil.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_pin-outline.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_pin.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_plus.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_puzzle-outline.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_puzzle.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_refresh-flipped.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_refresh.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_search-grey.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_search.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_star.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_stopwatch-grey.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_th-dot-menu.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_th-dot-more.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_th-list-grey.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_th-list.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_times.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_trash.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_unfold-hidden.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_unfold-visible.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_user.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/typicons_light/typ_warning-full.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/x-novelwriter-project.ico +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/icons/x-novelwriter-project.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/images/novelwriter-text-dark.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/images/novelwriter-text-light.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/images/welcome-dark.jpg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/images/welcome-light.jpg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/syntax/cyberpunk_night.conf +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/syntax/default_dark.conf +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/syntax/default_light.conf +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/syntax/dracula.conf +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/syntax/grey_dark.conf +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/syntax/grey_light.conf +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/syntax/light_owl.conf +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/syntax/night_owl.conf +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/syntax/snazzy.conf +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/syntax/solarized_dark.conf +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/syntax/solarized_light.conf +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/syntax/tango.conf +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/syntax/tomorrow.conf +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/syntax/tomorrow_night.conf +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/syntax/tomorrow_night_blue.conf +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/syntax/tomorrow_night_bright.conf +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/syntax/tomorrow_night_eighties.conf +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/text/credits_en.htm +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/text/lipsum.txt +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/themes/cyberpunk_night.conf +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/themes/default.conf +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/themes/default_dark.conf +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/themes/default_light.conf +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/themes/dracula.conf +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/themes/solarized_dark.conf +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/novelwriter/assets/themes/solarized_light.conf +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/pyproject.toml +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/appimage_launcher.sh +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/data/hicolor/128x128/apps/novelwriter.png +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/data/hicolor/128x128/mimetypes/application-x-novelwriter-project.png +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/data/hicolor/16x16/apps/novelwriter.png +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/data/hicolor/16x16/mimetypes/application-x-novelwriter-project.png +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/data/hicolor/24x24/apps/novelwriter.png +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/data/hicolor/24x24/mimetypes/application-x-novelwriter-project.png +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/data/hicolor/256x256/apps/novelwriter.png +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/data/hicolor/256x256/mimetypes/application-x-novelwriter-project.png +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/data/hicolor/32x32/apps/novelwriter.png +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/data/hicolor/32x32/mimetypes/application-x-novelwriter-project.png +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/data/hicolor/48x48/apps/novelwriter.png +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/data/hicolor/48x48/mimetypes/application-x-novelwriter-project.png +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/data/hicolor/512x512/apps/novelwriter.png +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/data/hicolor/512x512/mimetypes/application-x-novelwriter-project.png +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/data/hicolor/64x64/apps/novelwriter.png +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/data/hicolor/64x64/mimetypes/application-x-novelwriter-project.png +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/data/hicolor/scalable/apps/novelwriter.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/data/hicolor/scalable/mimetypes/application-x-novelwriter-project.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/data/novelwriter.desktop +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/data/novelwriter.png +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/data/x-novelwriter-project.xml +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/debian/compat +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/debian/control +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/debian/install +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/debian/py3dist-overrides +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/debian/rules +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/debian/source/format +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/description_pypi.md +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/description_short.txt +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/icons/novelwriter.ico +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/icons/novelwriter.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/icons/x-novelwriter-project.ico +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/icons/x-novelwriter-project.svg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/launchpad_setup.cfg +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/macos/App.entitlements +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/macos/Info.plist.template +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/macos/novelwriter.iconset/icon_128x128.png +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/macos/novelwriter.iconset/icon_128x128@2x.png +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/macos/novelwriter.iconset/icon_16x16.png +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/macos/novelwriter.iconset/icon_16x16@2x.png +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/macos/novelwriter.iconset/icon_256x256.png +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/macos/novelwriter.iconset/icon_256x256@2x.png +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/macos/novelwriter.iconset/icon_32x32.png +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/macos/novelwriter.iconset/icon_32x32@2x.png +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/macos/novelwriter.iconset/icon_512x512.png +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/macos/novelwriter.iconset/icon_512x512@2x.png +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/make_clean.sh +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/make_pip.sh +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/make_release.sh +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/novelwriter.appdata.xml +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/novelwriter_readme.png +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/novelwriter_text.png +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/signpath_logo.png +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup/win_setup_embed.iss +0 -0
- {novelwriter-2.6b2 → novelwriter-2.6rc1}/setup.cfg +0 -0
@@ -1,5 +1,45 @@
|
|
1
1
|
# novelWriter Changelog
|
2
2
|
|
3
|
+
## Version 2.6 RC 1 [2025-01-09]
|
4
|
+
|
5
|
+
### Release Notes
|
6
|
+
|
7
|
+
This is a release candidate of the next release version, and is intended for testing purposes.
|
8
|
+
Please be careful when using this version on live writing projects, and make sure you take frequent
|
9
|
+
backups.
|
10
|
+
|
11
|
+
### Detailed Changelog
|
12
|
+
|
13
|
+
**New Features**
|
14
|
+
|
15
|
+
* The session timer in the status bar can now be hidden by clicking on it. Issue #1029. PR #2149.
|
16
|
+
* Status and importance labels can now be exported and imported. Issue #1847. PRs #2152 and #2153.
|
17
|
+
|
18
|
+
**Bugfixes**
|
19
|
+
|
20
|
+
* Fix a beta release bug where it was not possible to change the status or importance flag on
|
21
|
+
folders in the project tree. Issue #2145. PR #2147.
|
22
|
+
* Fix an issue where the word counter would override the selection counter in the editor. This was
|
23
|
+
caused by the selection counter being on a much shorter timer than the word counter, so in some
|
24
|
+
cases the latter result came in after the former even if the user actions where the other way
|
25
|
+
around. The selection counter now takes precedence, always. Issue #2155. PRs #2156 and #2157.
|
26
|
+
* Fix a minor issue where the search panel header background would not update colour when the theme
|
27
|
+
was changed. Issue #2162. PR #2167.
|
28
|
+
|
29
|
+
**Improvements**
|
30
|
+
|
31
|
+
* It is no longer necessary to click the "Apply" button when making changes to status and
|
32
|
+
importance labels, or auto-replace settings, in Project Settings. The changes are applied
|
33
|
+
directly to the listed items. They are not applied to the project until the Project Settings are
|
34
|
+
accepted. This is a more intuitive approach. Issue #2150. PR #2151.
|
35
|
+
|
36
|
+
**Packaging and Installation**
|
37
|
+
|
38
|
+
* MacOS packages are now built on the latest MacOS image available on GitHub. The x86_64 build was
|
39
|
+
previously locked to MacOS 12, which is no loner available. PR #2141.
|
40
|
+
|
41
|
+
----
|
42
|
+
|
3
43
|
## Version 2.6 Beta 2 [2024-12-23]
|
4
44
|
|
5
45
|
### Release Notes
|
@@ -1,6 +1,6 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.2
|
2
2
|
Name: novelWriter
|
3
|
-
Version: 2.
|
3
|
+
Version: 2.6rc1
|
4
4
|
Summary: A markdown-like text editor for planning and writing novels
|
5
5
|
Author-email: Veronica Berglyd Olsen <code@vkbo.net>
|
6
6
|
License: GNU General Public License v3
|
@@ -1,6 +1,6 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.2
|
2
2
|
Name: novelWriter
|
3
|
-
Version: 2.
|
3
|
+
Version: 2.6rc1
|
4
4
|
Summary: A markdown-like text editor for planning and writing novels
|
5
5
|
Author-email: Veronica Berglyd Olsen <code@vkbo.net>
|
6
6
|
License: GNU General Public License v3
|
@@ -6,7 +6,7 @@ File History:
|
|
6
6
|
Created: 2018-09-22 [0.0.1] main
|
7
7
|
|
8
8
|
This file is a part of novelWriter
|
9
|
-
Copyright 2018
|
9
|
+
Copyright (C) 2018 Veronica Berglyd Olsen and novelWriter contributors
|
10
10
|
|
11
11
|
This program is free software: you can redistribute it and/or modify
|
12
12
|
it under the terms of the GNU General Public License as published by
|
@@ -47,9 +47,9 @@ __license__ = "GPLv3"
|
|
47
47
|
__author__ = "Veronica Berglyd Olsen"
|
48
48
|
__maintainer__ = "Veronica Berglyd Olsen"
|
49
49
|
__email__ = "code@vkbo.net"
|
50
|
-
__version__ = "2.
|
51
|
-
__hexversion__ = "
|
52
|
-
__date__ = "
|
50
|
+
__version__ = "2.6rc1"
|
51
|
+
__hexversion__ = "0x020600c1"
|
52
|
+
__date__ = "2025-01-09"
|
53
53
|
__status__ = "Stable"
|
54
54
|
__domain__ = "novelwriter.io"
|
55
55
|
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -6,7 +6,7 @@ File History:
|
|
6
6
|
Created: 2019-05-12 [0.1.0]
|
7
7
|
|
8
8
|
This file is a part of novelWriter
|
9
|
-
Copyright
|
9
|
+
Copyright (C) 2019 Veronica Berglyd Olsen and novelWriter contributors
|
10
10
|
|
11
11
|
This program is free software: you can redistribute it and/or modify
|
12
12
|
it under the terms of the GNU General Public License as published by
|
@@ -8,7 +8,7 @@ Created: 2022-11-09 [2.0rc2] RecentProjects
|
|
8
8
|
Created: 2024-06-16 [2.5rc1] RecentPaths
|
9
9
|
|
10
10
|
This file is a part of novelWriter
|
11
|
-
Copyright 2018
|
11
|
+
Copyright (C) 2018 Veronica Berglyd Olsen and novelWriter contributors
|
12
12
|
|
13
13
|
This program is free software: you can redistribute it and/or modify
|
14
14
|
it under the terms of the GNU General Public License as published by
|
@@ -194,6 +194,7 @@ class Config:
|
|
194
194
|
# State
|
195
195
|
self.showViewerPanel = True # The panel for the viewer is visible
|
196
196
|
self.showEditToolBar = False # The document editor toolbar visibility
|
197
|
+
self.showSessionTime = True # Show the session time in the status bar
|
197
198
|
self.viewComments = True # Comments are shown in the viewer
|
198
199
|
self.viewSynopsis = True # Synopsis is shown in the viewer
|
199
200
|
|
@@ -674,6 +675,7 @@ class Config:
|
|
674
675
|
sec = "State"
|
675
676
|
self.showViewerPanel = conf.rdBool(sec, "showviewerpanel", self.showViewerPanel)
|
676
677
|
self.showEditToolBar = conf.rdBool(sec, "showedittoolbar", self.showEditToolBar)
|
678
|
+
self.showSessionTime = conf.rdBool(sec, "showsessiontime", self.showSessionTime)
|
677
679
|
self.viewComments = conf.rdBool(sec, "viewcomments", self.viewComments)
|
678
680
|
self.viewSynopsis = conf.rdBool(sec, "viewsynopsis", self.viewSynopsis)
|
679
681
|
self.searchCase = conf.rdBool(sec, "searchcase", self.searchCase)
|
@@ -784,6 +786,7 @@ class Config:
|
|
784
786
|
conf["State"] = {
|
785
787
|
"showviewerpanel": str(self.showViewerPanel),
|
786
788
|
"showedittoolbar": str(self.showEditToolBar),
|
789
|
+
"showsessiontime": str(self.showSessionTime),
|
787
790
|
"viewcomments": str(self.viewComments),
|
788
791
|
"viewsynopsis": str(self.viewSynopsis),
|
789
792
|
"searchcase": str(self.searchCase),
|
@@ -6,7 +6,7 @@ File History:
|
|
6
6
|
Created: 2019-04-28 [0.0.1]
|
7
7
|
|
8
8
|
This file is a part of novelWriter
|
9
|
-
Copyright
|
9
|
+
Copyright (C) 2019 Veronica Berglyd Olsen and novelWriter contributors
|
10
10
|
|
11
11
|
This program is free software: you can redistribute it and/or modify
|
12
12
|
it under the terms of the GNU General Public License as published by
|
@@ -207,7 +207,7 @@ class nwLists:
|
|
207
207
|
|
208
208
|
class nwStats:
|
209
209
|
|
210
|
-
|
210
|
+
CHARS = "allChars"
|
211
211
|
CHARS_TEXT = "textChars"
|
212
212
|
CHARS_TITLE = "titleChars"
|
213
213
|
PARAGRAPHS = "paragraphCount"
|
@@ -215,14 +215,14 @@ class nwStats:
|
|
215
215
|
WCHARS_ALL = "allWordChars"
|
216
216
|
WCHARS_TEXT = "textWordChars"
|
217
217
|
WCHARS_TITLE = "titleWordChars"
|
218
|
-
|
218
|
+
WORDS = "allWords"
|
219
219
|
WORDS_TEXT = "textWords"
|
220
220
|
WORDS_TITLE = "titleWords"
|
221
221
|
|
222
222
|
# Note: The order here affects the order of menu entries
|
223
223
|
ALL_FIELDS = [
|
224
|
-
|
225
|
-
|
224
|
+
WORDS, WORDS_TEXT, WORDS_TITLE,
|
225
|
+
CHARS, CHARS_TEXT, CHARS_TITLE,
|
226
226
|
WCHARS_ALL, WCHARS_TEXT, WCHARS_TITLE,
|
227
227
|
PARAGRAPHS, TITLES,
|
228
228
|
]
|
@@ -329,17 +329,17 @@ class nwLabels:
|
|
329
329
|
nwOutline.SYNOP: QT_TRANSLATE_NOOP("Constant", "Synopsis"),
|
330
330
|
}
|
331
331
|
STATS_NAME = {
|
332
|
-
nwStats.
|
333
|
-
nwStats.CHARS_TEXT: QT_TRANSLATE_NOOP("
|
334
|
-
nwStats.CHARS_TITLE: QT_TRANSLATE_NOOP("
|
335
|
-
nwStats.PARAGRAPHS: QT_TRANSLATE_NOOP("
|
336
|
-
nwStats.TITLES: QT_TRANSLATE_NOOP("
|
337
|
-
nwStats.WCHARS_ALL: QT_TRANSLATE_NOOP("
|
338
|
-
nwStats.WCHARS_TEXT: QT_TRANSLATE_NOOP("
|
339
|
-
nwStats.WCHARS_TITLE: QT_TRANSLATE_NOOP("
|
340
|
-
nwStats.
|
341
|
-
nwStats.WORDS_TEXT: QT_TRANSLATE_NOOP("
|
342
|
-
nwStats.WORDS_TITLE: QT_TRANSLATE_NOOP("
|
332
|
+
nwStats.CHARS: QT_TRANSLATE_NOOP("Stats", "Characters"),
|
333
|
+
nwStats.CHARS_TEXT: QT_TRANSLATE_NOOP("Stats", "Characters in Text"),
|
334
|
+
nwStats.CHARS_TITLE: QT_TRANSLATE_NOOP("Stats", "Characters in Headings"),
|
335
|
+
nwStats.PARAGRAPHS: QT_TRANSLATE_NOOP("Stats", "Paragraphs"),
|
336
|
+
nwStats.TITLES: QT_TRANSLATE_NOOP("Stats", "Headings"),
|
337
|
+
nwStats.WCHARS_ALL: QT_TRANSLATE_NOOP("Stats", "Characters, No Spaces"),
|
338
|
+
nwStats.WCHARS_TEXT: QT_TRANSLATE_NOOP("Stats", "Characters in Text, No Spaces"),
|
339
|
+
nwStats.WCHARS_TITLE: QT_TRANSLATE_NOOP("Stats", "Characters in Headings, No Spaces"),
|
340
|
+
nwStats.WORDS: QT_TRANSLATE_NOOP("Stats", "Words"),
|
341
|
+
nwStats.WORDS_TEXT: QT_TRANSLATE_NOOP("Stats", "Words in Text"),
|
342
|
+
nwStats.WORDS_TITLE: QT_TRANSLATE_NOOP("Stats", "Words in Headings"),
|
343
343
|
}
|
344
344
|
BUILD_FMT = {
|
345
345
|
nwBuildFmt.ODT: QT_TRANSLATE_NOOP("Constant", "Open Document (.odt)"),
|
@@ -366,32 +366,32 @@ class nwLabels:
|
|
366
366
|
nwBuildFmt.J_NWD: ".json",
|
367
367
|
}
|
368
368
|
SHAPES_PLAIN = {
|
369
|
-
nwStatusShape.SQUARE: QT_TRANSLATE_NOOP("
|
370
|
-
nwStatusShape.TRIANGLE: QT_TRANSLATE_NOOP("
|
371
|
-
nwStatusShape.NABLA: QT_TRANSLATE_NOOP("
|
372
|
-
nwStatusShape.DIAMOND: QT_TRANSLATE_NOOP("
|
373
|
-
nwStatusShape.PENTAGON: QT_TRANSLATE_NOOP("
|
374
|
-
nwStatusShape.HEXAGON: QT_TRANSLATE_NOOP("
|
375
|
-
nwStatusShape.STAR: QT_TRANSLATE_NOOP("
|
376
|
-
nwStatusShape.PACMAN: QT_TRANSLATE_NOOP("
|
369
|
+
nwStatusShape.SQUARE: QT_TRANSLATE_NOOP("Shape", "Square"),
|
370
|
+
nwStatusShape.TRIANGLE: QT_TRANSLATE_NOOP("Shape", "Triangle"),
|
371
|
+
nwStatusShape.NABLA: QT_TRANSLATE_NOOP("Shape", "Nabla"),
|
372
|
+
nwStatusShape.DIAMOND: QT_TRANSLATE_NOOP("Shape", "Diamond"),
|
373
|
+
nwStatusShape.PENTAGON: QT_TRANSLATE_NOOP("Shape", "Pentagon"),
|
374
|
+
nwStatusShape.HEXAGON: QT_TRANSLATE_NOOP("Shape", "Hexagon"),
|
375
|
+
nwStatusShape.STAR: QT_TRANSLATE_NOOP("Shape", "Star"),
|
376
|
+
nwStatusShape.PACMAN: QT_TRANSLATE_NOOP("Shape", "Pacman"),
|
377
377
|
}
|
378
378
|
SHAPES_CIRCLE = {
|
379
|
-
nwStatusShape.CIRCLE_Q: QT_TRANSLATE_NOOP("
|
380
|
-
nwStatusShape.CIRCLE_H: QT_TRANSLATE_NOOP("
|
381
|
-
nwStatusShape.CIRCLE_T: QT_TRANSLATE_NOOP("
|
382
|
-
nwStatusShape.CIRCLE: QT_TRANSLATE_NOOP("
|
379
|
+
nwStatusShape.CIRCLE_Q: QT_TRANSLATE_NOOP("Shape", "1/4 Circle"),
|
380
|
+
nwStatusShape.CIRCLE_H: QT_TRANSLATE_NOOP("Shape", "Half Circle"),
|
381
|
+
nwStatusShape.CIRCLE_T: QT_TRANSLATE_NOOP("Shape", "3/4 Circle"),
|
382
|
+
nwStatusShape.CIRCLE: QT_TRANSLATE_NOOP("Shape", "Full Circle"),
|
383
383
|
}
|
384
384
|
SHAPES_BARS = {
|
385
|
-
nwStatusShape.BARS_1: QT_TRANSLATE_NOOP("
|
386
|
-
nwStatusShape.BARS_2: QT_TRANSLATE_NOOP("
|
387
|
-
nwStatusShape.BARS_3: QT_TRANSLATE_NOOP("
|
388
|
-
nwStatusShape.BARS_4: QT_TRANSLATE_NOOP("
|
385
|
+
nwStatusShape.BARS_1: QT_TRANSLATE_NOOP("Shape", "1 Bar"),
|
386
|
+
nwStatusShape.BARS_2: QT_TRANSLATE_NOOP("Shape", "2 Bars"),
|
387
|
+
nwStatusShape.BARS_3: QT_TRANSLATE_NOOP("Shape", "3 Bars"),
|
388
|
+
nwStatusShape.BARS_4: QT_TRANSLATE_NOOP("Shape", "4 Bars"),
|
389
389
|
}
|
390
390
|
SHAPES_BLOCKS = {
|
391
|
-
nwStatusShape.BLOCK_1: QT_TRANSLATE_NOOP("
|
392
|
-
nwStatusShape.BLOCK_2: QT_TRANSLATE_NOOP("
|
393
|
-
nwStatusShape.BLOCK_3: QT_TRANSLATE_NOOP("
|
394
|
-
nwStatusShape.BLOCK_4: QT_TRANSLATE_NOOP("
|
391
|
+
nwStatusShape.BLOCK_1: QT_TRANSLATE_NOOP("Shape", "1 Block"),
|
392
|
+
nwStatusShape.BLOCK_2: QT_TRANSLATE_NOOP("Shape", "2 Blocks"),
|
393
|
+
nwStatusShape.BLOCK_3: QT_TRANSLATE_NOOP("Shape", "3 Blocks"),
|
394
|
+
nwStatusShape.BLOCK_4: QT_TRANSLATE_NOOP("Shape", "4 Blocks"),
|
395
395
|
}
|
396
396
|
FILE_FILTERS = {
|
397
397
|
"*.txt": QT_TRANSLATE_NOOP("Constant", "Text files"),
|
@@ -7,7 +7,7 @@ Created: 2023-02-14 [2.1b1] BuildSettings
|
|
7
7
|
Created: 2023-05-22 [2.1b1] BuildCollection
|
8
8
|
|
9
9
|
This file is a part of novelWriter
|
10
|
-
Copyright
|
10
|
+
Copyright (C) 2023 Veronica Berglyd Olsen and novelWriter contributors
|
11
11
|
|
12
12
|
This program is free software: you can redistribute it and/or modify
|
13
13
|
it under the terms of the GNU General Public License as published by
|
@@ -9,7 +9,7 @@ Created: 2022-11-03 [2.0rc2] ProjectBuilder
|
|
9
9
|
Created: 2023-07-20 [2.1b1] DocDuplicator
|
10
10
|
|
11
11
|
This file is a part of novelWriter
|
12
|
-
Copyright
|
12
|
+
Copyright (C) 2022 Veronica Berglyd Olsen and novelWriter contributors
|
13
13
|
|
14
14
|
This program is free software: you can redistribute it and/or modify
|
15
15
|
it under the terms of the GNU General Public License as published by
|
@@ -6,7 +6,7 @@ File History:
|
|
6
6
|
Created: 2022-12-01 [2.1b1] NWBuildDocument
|
7
7
|
|
8
8
|
This file is a part of novelWriter
|
9
|
-
Copyright
|
9
|
+
Copyright (C) 2022 Veronica Berglyd Olsen and novelWriter contributors
|
10
10
|
|
11
11
|
This program is free software: you can redistribute it and/or modify
|
12
12
|
it under the terms of the GNU General Public License as published by
|
@@ -6,7 +6,7 @@ File History:
|
|
6
6
|
Created: 2018-09-29 [0.0.1]
|
7
7
|
|
8
8
|
This file is a part of novelWriter
|
9
|
-
Copyright 2018
|
9
|
+
Copyright (C) 2018 Veronica Berglyd Olsen and novelWriter contributors
|
10
10
|
|
11
11
|
This program is free software: you can redistribute it and/or modify
|
12
12
|
it under the terms of the GNU General Public License as published by
|
@@ -10,7 +10,7 @@ Created: 2022-05-29 [2.0rc1] TagsIndex
|
|
10
10
|
Created: 2022-05-29 [2.0rc1] ItemIndex
|
11
11
|
|
12
12
|
This file is a part of novelWriter
|
13
|
-
Copyright
|
13
|
+
Copyright (C) 2019 Veronica Berglyd Olsen and novelWriter contributors
|
14
14
|
|
15
15
|
This program is free software: you can redistribute it and/or modify
|
16
16
|
it under the terms of the GNU General Public License as published by
|
@@ -6,7 +6,7 @@ File History:
|
|
6
6
|
Created: 2018-10-27 [0.0.1] NWItem
|
7
7
|
|
8
8
|
This file is a part of novelWriter
|
9
|
-
Copyright 2018
|
9
|
+
Copyright (C) 2018 Veronica Berglyd Olsen and novelWriter contributors
|
10
10
|
|
11
11
|
This program is free software: you can redistribute it and/or modify
|
12
12
|
it under the terms of the GNU General Public License as published by
|
@@ -7,7 +7,7 @@ Created: 2024-11-16 [2.6b2] ProjectNode
|
|
7
7
|
Created: 2024-11-16 [2.6b2] ProjectModel
|
8
8
|
|
9
9
|
This file is a part of novelWriter
|
10
|
-
Copyright
|
10
|
+
Copyright (C) 2024 Veronica Berglyd Olsen and novelWriter contributors
|
11
11
|
|
12
12
|
This program is free software: you can redistribute it and/or modify
|
13
13
|
it under the terms of the GNU General Public License as published by
|
@@ -7,7 +7,7 @@ Created: 2019-10-21 [0.3.1] OptionState
|
|
7
7
|
Rewritten: 2020-02-19 [0.4.5] OptionState
|
8
8
|
|
9
9
|
This file is a part of novelWriter
|
10
|
-
Copyright
|
10
|
+
Copyright (C) 2019 Veronica Berglyd Olsen and novelWriter contributors
|
11
11
|
|
12
12
|
This program is free software: you can redistribute it and/or modify
|
13
13
|
it under the terms of the GNU General Public License as published by
|
@@ -6,7 +6,7 @@ File History:
|
|
6
6
|
Created: 2018-09-29 [0.0.1] NWProject
|
7
7
|
|
8
8
|
This file is a part of novelWriter
|
9
|
-
Copyright 2018
|
9
|
+
Copyright (C) 2018 Veronica Berglyd Olsen and novelWriter contributors
|
10
10
|
|
11
11
|
This program is free software: you can redistribute it and/or modify
|
12
12
|
it under the terms of the GNU General Public License as published by
|
@@ -6,7 +6,7 @@ File History:
|
|
6
6
|
Created: 2022-10-30 [2.0rc2] NWProjectData
|
7
7
|
|
8
8
|
This file is a part of novelWriter
|
9
|
-
Copyright
|
9
|
+
Copyright (C) 2022 Veronica Berglyd Olsen and novelWriter contributors
|
10
10
|
|
11
11
|
This program is free software: you can redistribute it and/or modify
|
12
12
|
it under the terms of the GNU General Public License as published by
|
@@ -29,7 +29,8 @@ import uuid
|
|
29
29
|
from typing import TYPE_CHECKING, Any
|
30
30
|
|
31
31
|
from novelwriter.common import (
|
32
|
-
checkBool, checkInt, checkStringNone, checkUuid, isHandle,
|
32
|
+
checkBool, checkInt, checkStringNone, checkUuid, isHandle,
|
33
|
+
makeFileNameSafe, simplified
|
33
34
|
)
|
34
35
|
from novelwriter.core.status import NWStatus
|
35
36
|
|
@@ -101,6 +102,11 @@ class NWProjectData:
|
|
101
102
|
"""Return the project name."""
|
102
103
|
return self._name
|
103
104
|
|
105
|
+
@property
|
106
|
+
def fileSafeName(self) -> str:
|
107
|
+
"""Return the project name in a file name safe format."""
|
108
|
+
return makeFileNameSafe(self._name)
|
109
|
+
|
104
110
|
@property
|
105
111
|
def author(self) -> str:
|
106
112
|
"""Return the project author."""
|
@@ -8,7 +8,7 @@ Created: 2022-09-28 [2.0rc2] ProjectXMLReader
|
|
8
8
|
Created: 2022-10-31 [2.0rc2] ProjectXMLWriter
|
9
9
|
|
10
10
|
This file is a part of novelWriter
|
11
|
-
Copyright
|
11
|
+
Copyright (C) 2022 Veronica Berglyd Olsen and novelWriter contributors
|
12
12
|
|
13
13
|
This program is free software: you can redistribute it and/or modify
|
14
14
|
it under the terms of the GNU General Public License as published by
|
@@ -6,7 +6,7 @@ File History:
|
|
6
6
|
Created: 2023-06-11 [2.1b1] NWSessionLog
|
7
7
|
|
8
8
|
This file is a part of novelWriter
|
9
|
-
Copyright
|
9
|
+
Copyright (C) 2023 Veronica Berglyd Olsen and novelWriter contributors
|
10
10
|
|
11
11
|
This program is free software: you can redistribute it and/or modify
|
12
12
|
it under the terms of the GNU General Public License as published by
|
@@ -7,7 +7,7 @@ Created: 2019-06-11 [0.1.5] NWSpellEnchant
|
|
7
7
|
Created: 2023-06-13 [2.1b1] UserDictionary
|
8
8
|
|
9
9
|
This file is a part of novelWriter
|
10
|
-
Copyright
|
10
|
+
Copyright (C) 2019 Veronica Berglyd Olsen and novelWriter contributors
|
11
11
|
|
12
12
|
This program is free software: you can redistribute it and/or modify
|
13
13
|
it under the terms of the GNU General Public License as published by
|
@@ -7,7 +7,7 @@ Created: 2019-05-19 [0.1.3] NWStatus
|
|
7
7
|
Rewritten: 2022-04-05 [2.0b1] NWStatus
|
8
8
|
|
9
9
|
This file is a part of novelWriter
|
10
|
-
Copyright
|
10
|
+
Copyright (C) 2019 Veronica Berglyd Olsen and novelWriter contributors
|
11
11
|
|
12
12
|
This program is free software: you can redistribute it and/or modify
|
13
13
|
it under the terms of the GNU General Public License as published by
|
@@ -37,7 +37,7 @@ from PyQt5.QtGui import QColor, QIcon, QPainter, QPainterPath, QPixmap, QPolygon
|
|
37
37
|
from novelwriter import SHARED
|
38
38
|
from novelwriter.common import simplified
|
39
39
|
from novelwriter.enum import nwStatusShape
|
40
|
-
from novelwriter.types import
|
40
|
+
from novelwriter.types import QtPaintAntiAlias, QtTransparent
|
41
41
|
|
42
42
|
if TYPE_CHECKING: # pragma: no cover
|
43
43
|
from typing import TypeGuard # Requires Python 3.10
|
@@ -174,6 +174,20 @@ class NWStatus:
|
|
174
174
|
"""Yield entries from the status icons."""
|
175
175
|
yield from self._store.items()
|
176
176
|
|
177
|
+
def fromRaw(self, data: list[str]) -> StatusEntry | None:
|
178
|
+
"""Create a StatusEntry from a list of three strings consisting
|
179
|
+
of shape, colour, and name. This entry is not automatically
|
180
|
+
added to the list of entries.
|
181
|
+
"""
|
182
|
+
try:
|
183
|
+
shape = nwStatusShape[str(data[0])]
|
184
|
+
color = QColor(str(data[1]))
|
185
|
+
icon = NWStatus.createIcon(self._height, color, shape)
|
186
|
+
return StatusEntry(simplified(data[2]), color, shape, icon)
|
187
|
+
except Exception:
|
188
|
+
logger.error("Could not parse entry %s", str(data))
|
189
|
+
return None
|
190
|
+
|
177
191
|
@staticmethod
|
178
192
|
def createIcon(height: int, color: QColor, shape: nwStatusShape) -> QIcon:
|
179
193
|
"""Generate an icon for a status label."""
|
@@ -181,7 +195,7 @@ class NWStatus:
|
|
181
195
|
pixmap.fill(QtTransparent)
|
182
196
|
|
183
197
|
painter = QPainter(pixmap)
|
184
|
-
painter.setRenderHint(
|
198
|
+
painter.setRenderHint(QtPaintAntiAlias)
|
185
199
|
painter.fillPath(_SHAPES.getShape(shape), color)
|
186
200
|
painter.end()
|
187
201
|
|
@@ -6,7 +6,7 @@ File History:
|
|
6
6
|
Created: 2022-11-01 [2.0rc2] NWStorage
|
7
7
|
|
8
8
|
This file is a part of novelWriter
|
9
|
-
Copyright
|
9
|
+
Copyright (C) 2022 Veronica Berglyd Olsen and novelWriter contributors
|
10
10
|
|
11
11
|
This program is free software: you can redistribute it and/or modify
|
12
12
|
it under the terms of the GNU General Public License as published by
|
@@ -7,7 +7,7 @@ Created: 2020-05-07 [0.4.5] NWTree
|
|
7
7
|
Rewritten: 2024-11-16 [2.6b2] NWTree
|
8
8
|
|
9
9
|
This file is a part of novelWriter
|
10
|
-
Copyright
|
10
|
+
Copyright (C) 2020 Veronica Berglyd Olsen and novelWriter contributors
|
11
11
|
|
12
12
|
This program is free software: you can redistribute it and/or modify
|
13
13
|
it under the terms of the GNU General Public License as published by
|
@@ -6,7 +6,7 @@ File History:
|
|
6
6
|
Created: 2020-05-21 [0.5.2] GuiAbout
|
7
7
|
|
8
8
|
This file is a part of novelWriter
|
9
|
-
Copyright
|
9
|
+
Copyright (C) 2020 Veronica Berglyd Olsen and novelWriter contributors
|
10
10
|
|
11
11
|
This program is free software: you can redistribute it and/or modify
|
12
12
|
it under the terms of the GNU General Public License as published by
|
@@ -7,7 +7,7 @@ Created: 2020-01-23 [0.4.3] GuiDocMerge
|
|
7
7
|
Rewritten: 2022-10-06 [2.0rc1] GuiDocMerge
|
8
8
|
|
9
9
|
This file is a part of novelWriter
|
10
|
-
Copyright
|
10
|
+
Copyright (C) 2020 Veronica Berglyd Olsen and novelWriter contributors
|
11
11
|
|
12
12
|
This program is free software: you can redistribute it and/or modify
|
13
13
|
it under the terms of the GNU General Public License as published by
|
@@ -7,7 +7,7 @@ Created: 2020-02-01 [0.4.3] GuiDocSplit
|
|
7
7
|
Rewritten: 2022-10-12 [2.0rc1] GuiDocSplit
|
8
8
|
|
9
9
|
This file is a part of novelWriter
|
10
|
-
Copyright
|
10
|
+
Copyright (C) 2020 Veronica Berglyd Olsen and novelWriter contributors
|
11
11
|
|
12
12
|
This program is free software: you can redistribute it and/or modify
|
13
13
|
it under the terms of the GNU General Public License as published by
|
@@ -6,7 +6,7 @@ File History:
|
|
6
6
|
Created: 2022-06-11 [2.0rc1] GuiEditLabel
|
7
7
|
|
8
8
|
This file is a part of novelWriter
|
9
|
-
Copyright
|
9
|
+
Copyright (C) 2022 Veronica Berglyd Olsen and novelWriter contributors
|
10
10
|
|
11
11
|
This program is free software: you can redistribute it and/or modify
|
12
12
|
it under the terms of the GNU General Public License as published by
|
@@ -7,7 +7,7 @@ Created: 2019-06-10 [0.1.5] GuiPreferences
|
|
7
7
|
Rewritten: 2024-01-08 [2.3b1] GuiPreferences
|
8
8
|
|
9
9
|
This file is a part of novelWriter
|
10
|
-
Copyright
|
10
|
+
Copyright (C) 2019 Veronica Berglyd Olsen and novelWriter contributors
|
11
11
|
|
12
12
|
This program is free software: you can redistribute it and/or modify
|
13
13
|
it under the terms of the GNU General Public License as published by
|
@@ -584,7 +584,7 @@ class GuiPreferences(NDialog):
|
|
584
584
|
self.narratorBreak.setText(CONFIG.narratorBreak)
|
585
585
|
self.mainForm.addRow(
|
586
586
|
self.tr("Narrator break symbol"), self.narratorBreak,
|
587
|
-
self.tr("Symbol to indicate a narrator break in dialogue")
|
587
|
+
self.tr("Symbol to indicate a narrator break in dialogue.")
|
588
588
|
)
|
589
589
|
|
590
590
|
self.narratorDialog = QLineEdit(self)
|