novelWriter 2.2rc1__tar.gz → 2.2.1__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.2rc1 → novelWriter-2.2.1}/CHANGELOG.md +124 -1
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/PKG-INFO +1 -1
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelWriter.egg-info/PKG-INFO +1 -1
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelWriter.egg-info/SOURCES.txt +7 -5
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/__init__.py +10 -5
- novelWriter-2.2.1/novelwriter/assets/i18n/nw_de_DE.qm +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/i18n/nw_en_US.qm +0 -0
- novelWriter-2.2.1/novelwriter/assets/i18n/nw_es_419.qm +0 -0
- novelWriter-2.2.1/novelwriter/assets/i18n/nw_fr_FR.qm +0 -0
- novelWriter-2.2.1/novelwriter/assets/i18n/nw_it_IT.qm +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/i18n/nw_ja_JP.qm +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/i18n/nw_nb_NO.qm +0 -0
- novelWriter-2.2.1/novelwriter/assets/i18n/nw_zh_CN.qm +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/i18n/project_de_DE.json +1 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/i18n/project_en_US.json +1 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/i18n/project_es_419.json +11 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/i18n/project_fr_FR.json +11 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/i18n/project_it_IT.json +11 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/i18n/project_ja_JP.json +2 -1
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/i18n/project_nb_NO.json +1 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/i18n/project_zh_CN.json +11 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/icons.conf +3 -2
- novelWriter-2.2.1/novelwriter/assets/icons/typicons_dark/nw_tb-bold-md.svg +4 -0
- novelWriter-2.2.1/novelwriter/assets/icons/typicons_dark/nw_tb-bold.svg +6 -0
- novelWriter-2.2.1/novelwriter/assets/icons/typicons_dark/nw_tb-italic.svg +6 -0
- novelWriter-2.2.1/novelwriter/assets/icons/typicons_dark/nw_tb-strike-md.svg +4 -0
- novelWriter-2.2.1/novelwriter/assets/icons/typicons_dark/nw_tb-strike.svg +6 -0
- novelWriter-2.2.1/novelwriter/assets/icons/typicons_dark/nw_tb-subscript.svg +7 -0
- novelWriter-2.2.1/novelwriter/assets/icons/typicons_dark/nw_tb-superscript.svg +7 -0
- novelWriter-2.2.1/novelwriter/assets/icons/typicons_dark/nw_tb-underline.svg +7 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/icons.conf +3 -2
- novelWriter-2.2.1/novelwriter/assets/icons/typicons_light/nw_tb-bold-md.svg +4 -0
- novelWriter-2.2.1/novelwriter/assets/icons/typicons_light/nw_tb-bold.svg +6 -0
- novelWriter-2.2.1/novelwriter/assets/icons/typicons_light/nw_tb-italic.svg +6 -0
- novelWriter-2.2.1/novelwriter/assets/icons/typicons_light/nw_tb-strike-md.svg +4 -0
- novelWriter-2.2.1/novelwriter/assets/icons/typicons_light/nw_tb-strike.svg +6 -0
- novelWriter-2.2.1/novelwriter/assets/icons/typicons_light/nw_tb-subscript.svg +7 -0
- novelWriter-2.2.1/novelwriter/assets/icons/typicons_light/nw_tb-superscript.svg +7 -0
- novelWriter-2.2.1/novelwriter/assets/icons/typicons_light/nw_tb-underline.svg +7 -0
- novelWriter-2.2.1/novelwriter/assets/manual.pdf +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/sample.zip +0 -0
- novelWriter-2.2.1/novelwriter/assets/text/release_notes.htm +60 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/common.py +16 -29
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/config.py +3 -3
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/constants.py +1 -1
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/core/buildsettings.py +1 -1
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/core/coretools.py +2 -1
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/core/docbuild.py +1 -1
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/core/document.py +1 -1
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/core/index.py +2 -2
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/core/item.py +2 -2
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/core/options.py +3 -3
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/core/project.py +3 -3
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/core/projectdata.py +2 -2
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/core/projectxml.py +1 -1
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/core/sessions.py +2 -2
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/core/spellcheck.py +4 -3
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/core/status.py +3 -3
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/core/storage.py +1 -1
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/core/tohtml.py +2 -2
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/core/tokenizer.py +1 -1
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/core/tomd.py +2 -2
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/core/toodt.py +1 -1
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/core/tree.py +2 -2
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/dialogs/about.py +30 -31
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/dialogs/docmerge.py +24 -15
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/dialogs/docsplit.py +27 -16
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/dialogs/editlabel.py +19 -7
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/dialogs/preferences.py +44 -57
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/dialogs/projdetails.py +29 -36
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/dialogs/projload.py +32 -36
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/dialogs/projsettings.py +20 -15
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/dialogs/quotes.py +32 -25
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/dialogs/updates.py +4 -14
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/dialogs/wordlist.py +34 -21
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/enum.py +5 -4
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/error.py +1 -1
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/extensions/circularprogress.py +1 -1
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/extensions/configlayout.py +3 -15
- novelWriter-2.2rc1/novelwriter/extensions/wheeleventfilter.py → novelWriter-2.2.1/novelwriter/extensions/eventfilters.py +15 -5
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/extensions/novelselector.py +1 -1
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/extensions/pageddialog.py +1 -1
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/extensions/pagedsidebar.py +2 -5
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/extensions/simpleprogress.py +8 -9
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/extensions/statusled.py +1 -1
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/extensions/switch.py +4 -4
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/extensions/switchbox.py +1 -6
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/gui/doceditor.py +72 -64
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/gui/dochighlight.py +3 -2
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/gui/docviewer.py +22 -47
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/gui/docviewerpanel.py +68 -23
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/gui/editordocument.py +3 -3
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/gui/itemdetails.py +2 -2
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/gui/mainmenu.py +35 -30
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/gui/noveltree.py +44 -53
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/gui/outline.py +2 -1
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/gui/projtree.py +5 -6
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/gui/sidebar.py +6 -4
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/gui/statusbar.py +47 -4
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/gui/theme.py +5 -6
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/guimain.py +139 -189
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/shared.py +53 -29
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/tools/dictionaries.py +2 -2
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/tools/lipsum.py +34 -28
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/tools/manusbuild.py +3 -4
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/tools/manuscript.py +19 -26
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/tools/manussettings.py +2 -4
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/tools/projwizard.py +3 -3
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/tools/writingstats.py +17 -4
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/pkgutils.py +2 -2
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/setup/debian/copyright +1 -1
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/setup/iss_license.txt +1 -1
- novelWriter-2.2rc1/novelwriter/assets/i18n/nw_de_DE.qm +0 -0
- novelWriter-2.2rc1/novelwriter/assets/i18n/nw_es_419.qm +0 -0
- novelWriter-2.2rc1/novelwriter/assets/i18n/nw_fr_FR.qm +0 -0
- novelWriter-2.2rc1/novelwriter/assets/i18n/nw_it_IT.qm +0 -0
- novelWriter-2.2rc1/novelwriter/assets/i18n/nw_zh_CN.qm +0 -0
- novelWriter-2.2rc1/novelwriter/assets/icons/typicons_dark/nw_tb-bold.svg +0 -4
- novelWriter-2.2rc1/novelwriter/assets/icons/typicons_dark/nw_tb-markdown.svg +0 -8
- novelWriter-2.2rc1/novelwriter/assets/icons/typicons_dark/nw_tb-shortcode.svg +0 -8
- novelWriter-2.2rc1/novelwriter/assets/icons/typicons_dark/nw_tb-strike.svg +0 -4
- novelWriter-2.2rc1/novelwriter/assets/icons/typicons_dark/nw_tb-subscript.svg +0 -5
- novelWriter-2.2rc1/novelwriter/assets/icons/typicons_dark/nw_tb-superscript.svg +0 -5
- novelWriter-2.2rc1/novelwriter/assets/icons/typicons_dark/nw_tb-underline.svg +0 -5
- novelWriter-2.2rc1/novelwriter/assets/icons/typicons_light/nw_tb-bold.svg +0 -4
- novelWriter-2.2rc1/novelwriter/assets/icons/typicons_light/nw_tb-markdown.svg +0 -8
- novelWriter-2.2rc1/novelwriter/assets/icons/typicons_light/nw_tb-shortcode.svg +0 -8
- novelWriter-2.2rc1/novelwriter/assets/icons/typicons_light/nw_tb-strike.svg +0 -4
- novelWriter-2.2rc1/novelwriter/assets/icons/typicons_light/nw_tb-subscript.svg +0 -5
- novelWriter-2.2rc1/novelwriter/assets/icons/typicons_light/nw_tb-superscript.svg +0 -5
- novelWriter-2.2rc1/novelwriter/assets/icons/typicons_light/nw_tb-underline.svg +0 -5
- novelWriter-2.2rc1/novelwriter/assets/manual.pdf +0 -0
- novelWriter-2.2rc1/novelwriter/assets/text/release_notes.htm +0 -17
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/CREDITS.md +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/LICENSE.md +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/MANIFEST.in +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/README.md +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelWriter.egg-info/dependency_links.txt +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelWriter.egg-info/entry_points.txt +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelWriter.egg-info/not-zip-safe +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelWriter.egg-info/requires.txt +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelWriter.egg-info/top_level.txt +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/i18n/nw_nl_NL.qm +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/i18n/nw_pt_BR.qm +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/i18n/project_en_GB.json +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/i18n/project_nl_NL.json +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/i18n/project_nn_NO.json +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/i18n/project_pt_BR.json +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/i18n/project_ru_RU.json +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/novelwriter.ico +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/novelwriter.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/README.md +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/mixed_document-chapter.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/mixed_document-note.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/mixed_document-scene.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/mixed_document-section.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/mixed_document-title.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/mixed_edit.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/mixed_input-checked.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/mixed_input-none.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/mixed_input-unchecked.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/mixed_search-replace.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/nw_deco-h0.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/nw_deco-h1.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/nw_deco-h2-narrow.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/nw_deco-h2.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/nw_deco-h3-narrow.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/nw_deco-h3.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/nw_deco-h4-narrow.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/nw_deco-h4.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/nw_deco-note.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/nw_deco-noveltree-more.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/nw_panel.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/nw_search-case.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/nw_search-preserve.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/nw_search-regex.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/nw_search-word.svg +0 -0
- /novelWriter-2.2rc1/novelwriter/assets/icons/typicons_dark/nw_tb-italic.svg → /novelWriter-2.2.1/novelwriter/assets/icons/typicons_dark/nw_tb-italic-md.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/typ_arrow-down-thick-grey.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/typ_arrow-forward.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/typ_arrow-maximise.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/typ_arrow-minimise.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/typ_arrow-repeat-grey.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/typ_book-grey.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/typ_book.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/typ_bookmark.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/typ_calendar.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/typ_cancel-grey.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/typ_cancel.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/typ_chart-bar-grey.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/typ_chevron-down.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/typ_chevron-left.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/typ_chevron-right.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/typ_chevron-up.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/typ_cog.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/typ_delete-full.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/typ_delete.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/typ_directions-full.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/typ_document-text.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/typ_export-grey.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/typ_export.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/typ_eye.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/typ_flag.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/typ_folder-open.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/typ_folder.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/typ_globe-grey.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/typ_key.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/typ_lightbulb-full.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/typ_location.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/typ_media-pause-grey.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/typ_media-record-outline.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/typ_media-record.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/typ_minus.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/typ_pencil.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/typ_pin-outline.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/typ_pin.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/typ_plus.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/typ_puzzle-outline.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/typ_puzzle.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/typ_refresh-flipped.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/typ_refresh.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/typ_search.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/typ_star.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/typ_stopwatch-grey.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/typ_th-dot-menu.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/typ_th-list-grey.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/typ_times.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/typ_trash.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/typ_user.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_dark/typ_warning-full.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/README.md +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/mixed_document-chapter.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/mixed_document-note.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/mixed_document-scene.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/mixed_document-section.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/mixed_document-title.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/mixed_edit.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/mixed_input-checked.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/mixed_input-none.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/mixed_input-unchecked.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/mixed_search-replace.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/nw_deco-h0.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/nw_deco-h1.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/nw_deco-h2-narrow.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/nw_deco-h2.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/nw_deco-h3-narrow.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/nw_deco-h3.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/nw_deco-h4-narrow.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/nw_deco-h4.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/nw_deco-note.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/nw_deco-noveltree-more.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/nw_panel.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/nw_search-case.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/nw_search-preserve.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/nw_search-regex.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/nw_search-word.svg +0 -0
- /novelWriter-2.2rc1/novelwriter/assets/icons/typicons_light/nw_tb-italic.svg → /novelWriter-2.2.1/novelwriter/assets/icons/typicons_light/nw_tb-italic-md.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/typ_arrow-down-thick-grey.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/typ_arrow-forward.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/typ_arrow-maximise.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/typ_arrow-minimise.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/typ_arrow-repeat-grey.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/typ_book-grey.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/typ_book.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/typ_bookmark.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/typ_calendar.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/typ_cancel-grey.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/typ_cancel.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/typ_chart-bar-grey.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/typ_chevron-down.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/typ_chevron-left.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/typ_chevron-right.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/typ_chevron-up.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/typ_cog.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/typ_delete-full.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/typ_delete.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/typ_directions-full.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/typ_document-text.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/typ_export-grey.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/typ_export.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/typ_eye.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/typ_flag.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/typ_folder-open.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/typ_folder.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/typ_globe-grey.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/typ_key.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/typ_lightbulb-full.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/typ_location.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/typ_media-pause-grey.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/typ_media-record-outline.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/typ_media-record.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/typ_minus.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/typ_pencil.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/typ_pin-outline.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/typ_pin.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/typ_plus.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/typ_puzzle-outline.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/typ_puzzle.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/typ_refresh-flipped.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/typ_refresh.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/typ_search.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/typ_star.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/typ_stopwatch-grey.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/typ_th-dot-menu.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/typ_th-list-grey.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/typ_times.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/typ_trash.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/typ_user.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/typicons_light/typ_warning-full.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/x-novelwriter-project.ico +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/icons/x-novelwriter-project.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/images/wizard-back.jpg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/syntax/default_dark.conf +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/syntax/default_light.conf +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/syntax/grey_dark.conf +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/syntax/grey_light.conf +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/syntax/light_owl.conf +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/syntax/night_owl.conf +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/syntax/solarized_dark.conf +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/syntax/solarized_light.conf +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/syntax/tomorrow.conf +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/syntax/tomorrow_night.conf +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/syntax/tomorrow_night_blue.conf +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/syntax/tomorrow_night_bright.conf +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/syntax/tomorrow_night_eighties.conf +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/text/credits_en.htm +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/text/gplv3_en.htm +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/text/lipsum.txt +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/themes/default.conf +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/themes/default_dark.conf +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/themes/default_light.conf +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/themes/solarized_dark.conf +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/assets/themes/solarized_light.conf +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/core/__init__.py +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/dialogs/__init__.py +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/extensions/__init__.py +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/gui/__init__.py +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/novelwriter/tools/__init__.py +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/pyproject.toml +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/setup/appimage_launcher.sh +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/setup/data/hicolor/128x128/apps/novelwriter.png +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/setup/data/hicolor/128x128/mimetypes/application-x-novelwriter-project.png +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/setup/data/hicolor/16x16/apps/novelwriter.png +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/setup/data/hicolor/16x16/mimetypes/application-x-novelwriter-project.png +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/setup/data/hicolor/24x24/apps/novelwriter.png +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/setup/data/hicolor/24x24/mimetypes/application-x-novelwriter-project.png +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/setup/data/hicolor/256x256/apps/novelwriter.png +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/setup/data/hicolor/256x256/mimetypes/application-x-novelwriter-project.png +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/setup/data/hicolor/32x32/apps/novelwriter.png +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/setup/data/hicolor/32x32/mimetypes/application-x-novelwriter-project.png +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/setup/data/hicolor/48x48/apps/novelwriter.png +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/setup/data/hicolor/48x48/mimetypes/application-x-novelwriter-project.png +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/setup/data/hicolor/512x512/apps/novelwriter.png +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/setup/data/hicolor/512x512/mimetypes/application-x-novelwriter-project.png +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/setup/data/hicolor/64x64/apps/novelwriter.png +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/setup/data/hicolor/64x64/mimetypes/application-x-novelwriter-project.png +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/setup/data/hicolor/scalable/apps/novelwriter.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/setup/data/hicolor/scalable/mimetypes/application-x-novelwriter-project.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/setup/data/novelwriter.desktop +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/setup/data/novelwriter.png +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/setup/data/x-novelwriter-project.xml +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/setup/debian/compat +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/setup/debian/control +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/setup/debian/install +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/setup/debian/py3dist-overrides +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/setup/debian/rules +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/setup/debian/source/format +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/setup/description_pypi.md +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/setup/description_short.txt +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/setup/icons/novelwriter.ico +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/setup/icons/novelwriter.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/setup/icons/x-novelwriter-project.ico +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/setup/icons/x-novelwriter-project.svg +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/setup/macos/App.entitlements +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/setup/macos/Info.plist.template +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/setup/macos/build.sh +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/setup/macos/novelwriter.iconset/icon_128x128.png +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/setup/macos/novelwriter.iconset/icon_128x128@2x.png +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/setup/macos/novelwriter.iconset/icon_16x16.png +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/setup/macos/novelwriter.iconset/icon_16x16@2x.png +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/setup/macos/novelwriter.iconset/icon_256x256.png +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/setup/macos/novelwriter.iconset/icon_256x256@2x.png +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/setup/macos/novelwriter.iconset/icon_32x32.png +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/setup/macos/novelwriter.iconset/icon_32x32@2x.png +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/setup/macos/novelwriter.iconset/icon_512x512.png +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/setup/macos/novelwriter.iconset/icon_512x512@2x.png +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/setup/make_clean.sh +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/setup/make_pip.sh +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/setup/make_release.sh +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/setup/make_snapshot.sh +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/setup/novelwriter.appdata.xml +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/setup/novelwriter_readme.png +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/setup/novelwriter_text.png +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/setup/win_setup_embed.iss +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/setup/windows_install.bat +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/setup/windows_uninstall.bat +0 -0
- {novelWriter-2.2rc1 → novelWriter-2.2.1}/setup.cfg +0 -0
@@ -1,5 +1,128 @@
|
|
1
1
|
# novelWriter Changelog
|
2
2
|
|
3
|
+
## Version 2.2.1 [2024-01-27]
|
4
|
+
|
5
|
+
### Release Notes
|
6
|
+
|
7
|
+
This is a patch release that fixes an issue where the Project View would sometimes switch to the
|
8
|
+
Novel View when a new item was created. This patch also includes updated translations for German
|
9
|
+
and Chinese.
|
10
|
+
|
11
|
+
### Detailed Changelog
|
12
|
+
|
13
|
+
**Bugfixes**
|
14
|
+
|
15
|
+
* Fix a bug in the toggle for the tree view on the left would trigger each time a new project item
|
16
|
+
was created. Issue #1649. PR #1648.
|
17
|
+
* Fix an issue where multiple Manuscript and Writing Stats dialogs could be opened. PR #1671.
|
18
|
+
|
19
|
+
**Internationalisation**
|
20
|
+
|
21
|
+
* Updated German translation, by @HeyMyian. PR #1666.
|
22
|
+
* Updated Chinese translation, by @ruixuan658 and @longqzh. PR #1666.
|
23
|
+
|
24
|
+
----
|
25
|
+
|
26
|
+
## Version 2.2 [2023-12-17]
|
27
|
+
|
28
|
+
### Release Notes
|
29
|
+
|
30
|
+
This release comes with a number of new features. These are some highlights.
|
31
|
+
|
32
|
+
In addition to the common Markdown style formatting for bold, italic and strike through, a set of
|
33
|
+
new shortcodes have been added. The shortcodes are far more flexible than the Markdown style
|
34
|
+
syntax, and can be used for more complex formatting cases. Like when you need to add multiple,
|
35
|
+
overlapping formats, or add emphasis to just a part of a word. The shortcodes also allow for
|
36
|
+
underline, subscript and superscript, which the Markdown syntax does not. The new formats are
|
37
|
+
available in the "Format" menu, and in a new toolbar in the editor that can be enabled by clicking
|
38
|
+
the three dots in the top--left corner. The shortcode format was chosen because it can later be
|
39
|
+
extended to include other requested features as well. Please have a look at the documentation for
|
40
|
+
more details about the new shortcodes.
|
41
|
+
|
42
|
+
The Tags and References system has been improved. The tags themselves are no longer case sensitive
|
43
|
+
when you use them in references, but they are still displayed as you typed them in the tag
|
44
|
+
definition when they are displayed in the user interface. Starting to type the `@` symbol in the
|
45
|
+
text editor, on a new line, will now open an auto-completer menu which will display available
|
46
|
+
options. It may not display all of your tags if you have a lot of them, but starting to type more
|
47
|
+
characters will filter the list down further.
|
48
|
+
|
49
|
+
You can now automatically create a note file for a new tag that you have added to a reference list
|
50
|
+
in a document, but is not yet defined in a project note. So, for instance, if you come up with a
|
51
|
+
new character while writing, and add a new tag to your `@char` references, you can right-click the
|
52
|
+
new tag and create a new note for that entry directly. In addition, it is now also possible to
|
53
|
+
right-click a heading in an open document and set the item label in the project tree to match the
|
54
|
+
heading.
|
55
|
+
|
56
|
+
In addition to the changes in the editor, the "References" panel below the document viewer has also
|
57
|
+
been completely redesigned. It now shows all the references to the document you are viewing as a
|
58
|
+
list, with a lot more details than before. In addition, tabs in the panel will appear to show all
|
59
|
+
the tags you have defined in your notes, sorted as one tab per category. Like for instance
|
60
|
+
Characters, Locations, Objects, etc. You can also give each note a short description comment on the
|
61
|
+
same format as the summary comments for chapters and scenes. The short description comment can be
|
62
|
+
added from the "Insert" menu under "Special Comments".
|
63
|
+
|
64
|
+
The last major change in this release is the new multi-select feature in the project tree. You can
|
65
|
+
now select multiple documents and folders using the mouse while pressing `Ctrl` or `Shift`. By
|
66
|
+
right-clicking the selected items, you can perform a limited set of operations on all of them, like
|
67
|
+
changing active status, and the status or importance labels. You can also drag and drop multiple
|
68
|
+
items under the condition that all the selected items are in the same folder, at the same level.
|
69
|
+
This restriction is in place due to limitations in the framework novelWriter is based on. But this
|
70
|
+
should help in cases where multiple documents need to be moved in and out of folders or between
|
71
|
+
folders. Note that adding the multi-select feature meant that the undo feature of the project tree
|
72
|
+
had to be removed. It may be added back later.
|
73
|
+
|
74
|
+
_These Release Notes also include the changes from the 2.2 Beta 1 and 2.2 RC 1 releases._
|
75
|
+
|
76
|
+
### Detailed Changelog
|
77
|
+
|
78
|
+
**Bugfixes**
|
79
|
+
|
80
|
+
* Fix column widths for columns with no text in the viewer panel lists, and fix an issues where
|
81
|
+
icons were not updated on theme switch. Issue #1627. PR #1626.
|
82
|
+
* Fix auto-selection of words with apostrophes. Issue #1624. PR #1632.
|
83
|
+
|
84
|
+
**Usability**
|
85
|
+
|
86
|
+
* Use `Ctrl+K, H` for inserting short description comments (alias to synopsis), drop the space
|
87
|
+
after the `%` symbol when inserting special comments, add a browse icon to the open open project
|
88
|
+
dialog, and remove the popup warning for Alpha releases. PR #1626.
|
89
|
+
* Menu entries no longer clear the status bar message when they are hovered. This was caused by a
|
90
|
+
status tip feature in Qt, which prints a blank message to the status bar. PR #1630.
|
91
|
+
* The novel view panel now scrolls to bring the current document into view when iteratively
|
92
|
+
searching through documents in the project. Issue #1555. PR #1632.
|
93
|
+
* The progress bar on the Manuscript Build dialog now stays for 3 seconds after completion instead
|
94
|
+
of 1 second. PR #1634.
|
95
|
+
* The document viewer panel now shows the importance label next to each entry, and double-clicking
|
96
|
+
an entry will open it in the viewer. All entries also now show the content in tooltips so that
|
97
|
+
the columns can be shrunk to only view the icon if there is too little space. Issue #16220.
|
98
|
+
PR #1639.
|
99
|
+
* The editor toolbar no longer uses the same buttons for markdown and shortcodes style formatting.
|
100
|
+
They have each received their separate buttons. Some additional space has been added between the
|
101
|
+
two types of buttons to visually separate them. Issues #1636 and #1637. PR #1638.
|
102
|
+
* Convert the Synopsis and Comment buttons in the document viewer footer to buttons with both icon
|
103
|
+
and text, and drop the label. Issue #1628. PR #1638.
|
104
|
+
|
105
|
+
**Internationalisation**
|
106
|
+
|
107
|
+
* Updated US English, Norwegian, Japanese, Latin American Spanish, French, and Italian
|
108
|
+
translations. PRs #1625 and #1641.
|
109
|
+
|
110
|
+
**Documentation**
|
111
|
+
|
112
|
+
* The documentation has been updated to cover new features in 2.2. PR #1640.
|
113
|
+
|
114
|
+
**Code Improvements**
|
115
|
+
|
116
|
+
* Improve memory usage by making sure C++ objects are deleted when they are no longer used. There
|
117
|
+
is an issue between the Python and Qt side of things where objects are left in memory and not
|
118
|
+
properly garbage collected when they run out of scope. A number of deferred delete calls have
|
119
|
+
been added that seems to solve most of these cases. A `--meminfo` flag has been added to the
|
120
|
+
command line arguments to provide diagnostic data to help debug such issues. PR #1629.
|
121
|
+
* Improve handling of alert boxes and their memory clean up, and refactor event filters. PR #1631.
|
122
|
+
* Clean up unused methods in GUI extensions. PR #1634.
|
123
|
+
|
124
|
+
----
|
125
|
+
|
3
126
|
## Version 2.2 RC 1 [2023-11-26]
|
4
127
|
|
5
128
|
### Release Notes
|
@@ -36,7 +159,7 @@ final release.
|
|
36
159
|
effects some users may want to avoid. Issue #1602. PR #1605.
|
37
160
|
* For Windows users, there is now an "Add Dictionaries" tool in the Tools menu where new spell
|
38
161
|
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 #
|
162
|
+
selector tool to import the files into novelWriter. Issue #982. PR #1611.
|
40
163
|
* You can now update the name of a document by right-clicking on any heading inside the document
|
41
164
|
and select "Set as Document Name". This will open the Rename dialog with the text of the heading
|
42
165
|
pre-filled. Issue #1503. PR #1614.
|
@@ -77,10 +77,11 @@ novelwriter/assets/icons/typicons_dark/nw_search-case.svg
|
|
77
77
|
novelwriter/assets/icons/typicons_dark/nw_search-preserve.svg
|
78
78
|
novelwriter/assets/icons/typicons_dark/nw_search-regex.svg
|
79
79
|
novelwriter/assets/icons/typicons_dark/nw_search-word.svg
|
80
|
+
novelwriter/assets/icons/typicons_dark/nw_tb-bold-md.svg
|
80
81
|
novelwriter/assets/icons/typicons_dark/nw_tb-bold.svg
|
82
|
+
novelwriter/assets/icons/typicons_dark/nw_tb-italic-md.svg
|
81
83
|
novelwriter/assets/icons/typicons_dark/nw_tb-italic.svg
|
82
|
-
novelwriter/assets/icons/typicons_dark/nw_tb-
|
83
|
-
novelwriter/assets/icons/typicons_dark/nw_tb-shortcode.svg
|
84
|
+
novelwriter/assets/icons/typicons_dark/nw_tb-strike-md.svg
|
84
85
|
novelwriter/assets/icons/typicons_dark/nw_tb-strike.svg
|
85
86
|
novelwriter/assets/icons/typicons_dark/nw_tb-subscript.svg
|
86
87
|
novelwriter/assets/icons/typicons_dark/nw_tb-superscript.svg
|
@@ -164,10 +165,11 @@ novelwriter/assets/icons/typicons_light/nw_search-case.svg
|
|
164
165
|
novelwriter/assets/icons/typicons_light/nw_search-preserve.svg
|
165
166
|
novelwriter/assets/icons/typicons_light/nw_search-regex.svg
|
166
167
|
novelwriter/assets/icons/typicons_light/nw_search-word.svg
|
168
|
+
novelwriter/assets/icons/typicons_light/nw_tb-bold-md.svg
|
167
169
|
novelwriter/assets/icons/typicons_light/nw_tb-bold.svg
|
170
|
+
novelwriter/assets/icons/typicons_light/nw_tb-italic-md.svg
|
168
171
|
novelwriter/assets/icons/typicons_light/nw_tb-italic.svg
|
169
|
-
novelwriter/assets/icons/typicons_light/nw_tb-
|
170
|
-
novelwriter/assets/icons/typicons_light/nw_tb-shortcode.svg
|
172
|
+
novelwriter/assets/icons/typicons_light/nw_tb-strike-md.svg
|
171
173
|
novelwriter/assets/icons/typicons_light/nw_tb-strike.svg
|
172
174
|
novelwriter/assets/icons/typicons_light/nw_tb-subscript.svg
|
173
175
|
novelwriter/assets/icons/typicons_light/nw_tb-superscript.svg
|
@@ -282,6 +284,7 @@ novelwriter/dialogs/wordlist.py
|
|
282
284
|
novelwriter/extensions/__init__.py
|
283
285
|
novelwriter/extensions/circularprogress.py
|
284
286
|
novelwriter/extensions/configlayout.py
|
287
|
+
novelwriter/extensions/eventfilters.py
|
285
288
|
novelwriter/extensions/novelselector.py
|
286
289
|
novelwriter/extensions/pageddialog.py
|
287
290
|
novelwriter/extensions/pagedsidebar.py
|
@@ -289,7 +292,6 @@ novelwriter/extensions/simpleprogress.py
|
|
289
292
|
novelwriter/extensions/statusled.py
|
290
293
|
novelwriter/extensions/switch.py
|
291
294
|
novelwriter/extensions/switchbox.py
|
292
|
-
novelwriter/extensions/wheeleventfilter.py
|
293
295
|
novelwriter/gui/__init__.py
|
294
296
|
novelwriter/gui/doceditor.py
|
295
297
|
novelwriter/gui/dochighlight.py
|
@@ -6,7 +6,7 @@ File History:
|
|
6
6
|
Created: 2018-09-22 [0.0.1]
|
7
7
|
|
8
8
|
This file is a part of novelWriter
|
9
|
-
Copyright 2018–
|
9
|
+
Copyright 2018–2024, Veronica Berglyd Olsen
|
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
|
@@ -37,14 +37,14 @@ from novelwriter.shared import SharedData
|
|
37
37
|
# ============
|
38
38
|
|
39
39
|
__package__ = "novelwriter"
|
40
|
-
__copyright__ = "Copyright 2018–
|
40
|
+
__copyright__ = "Copyright 2018–2024, Veronica Berglyd Olsen"
|
41
41
|
__license__ = "GPLv3"
|
42
42
|
__author__ = "Veronica Berglyd Olsen"
|
43
43
|
__maintainer__ = "Veronica Berglyd Olsen"
|
44
44
|
__email__ = "code@vkbo.net"
|
45
|
-
__version__ = "2.2
|
46
|
-
__hexversion__ = "
|
47
|
-
__date__ = "
|
45
|
+
__version__ = "2.2.1"
|
46
|
+
__hexversion__ = "0x020201f0"
|
47
|
+
__date__ = "2024-01-27"
|
48
48
|
__status__ = "Stable"
|
49
49
|
__domain__ = "novelwriter.io"
|
50
50
|
|
@@ -76,6 +76,7 @@ def main(sysArgs: list | None = None):
|
|
76
76
|
"config=",
|
77
77
|
"data=",
|
78
78
|
"testmode",
|
79
|
+
"meminfo"
|
79
80
|
]
|
80
81
|
|
81
82
|
helpMsg = (
|
@@ -92,6 +93,7 @@ def main(sysArgs: list | None = None):
|
|
92
93
|
" -v, --version Print program version and exit.\n"
|
93
94
|
" --info Print additional runtime information.\n"
|
94
95
|
" --debug Print debug output. Includes --info.\n"
|
96
|
+
" --meminfo Show memory usage information in the status bar.\n"
|
95
97
|
" --style= Sets Qt5 style flag. Defaults to 'Fusion'.\n"
|
96
98
|
" --config= Alternative config file.\n"
|
97
99
|
" --data= Alternative user data path.\n"
|
@@ -127,6 +129,7 @@ def main(sysArgs: list | None = None):
|
|
127
129
|
elif inOpt == "--info":
|
128
130
|
logLevel = logging.INFO
|
129
131
|
elif inOpt == "--debug":
|
132
|
+
CONFIG.isDebug = True
|
130
133
|
logLevel = logging.DEBUG
|
131
134
|
logFormat = "[{asctime:}] {filename:>17}:{lineno:<4d} {levelname:8} {message:}"
|
132
135
|
elif inOpt == "--style":
|
@@ -137,6 +140,8 @@ def main(sysArgs: list | None = None):
|
|
137
140
|
dataPath = inArg
|
138
141
|
elif inOpt == "--testmode":
|
139
142
|
testMode = True
|
143
|
+
elif inOpt == "--meminfo":
|
144
|
+
CONFIG.memInfo = True
|
140
145
|
|
141
146
|
# Setup Logging
|
142
147
|
pkgLogger = logging.getLogger(__package__)
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -1,7 +1,18 @@
|
|
1
1
|
{
|
2
2
|
"Synopsis": "Sinopsis",
|
3
|
+
"Short Description": "Breve Descripción",
|
3
4
|
"Comment": "Comentario",
|
4
5
|
"Notes": "Notas",
|
6
|
+
"Tag": "Etiqueta",
|
7
|
+
"Point of View": "Punto de Vista",
|
8
|
+
"Focus": "Foco",
|
9
|
+
"Characters": "Personajes",
|
10
|
+
"Plot": "Argumento",
|
11
|
+
"Timeline": "Línea de Tiempo",
|
12
|
+
"Locations": "Lugares",
|
13
|
+
"Objects": "Objetos",
|
14
|
+
"Entities": "Entidades",
|
15
|
+
"Custom": "Otros",
|
5
16
|
"0": "Cero",
|
6
17
|
"1": "Uno",
|
7
18
|
"2": "Dos",
|
@@ -1,7 +1,18 @@
|
|
1
1
|
{
|
2
2
|
"Synopsis": "Synopsis",
|
3
|
+
"Short Description": "Description sommaire",
|
3
4
|
"Comment": "Commentaire",
|
4
5
|
"Notes": "Notes",
|
6
|
+
"Tag": "Étiquette",
|
7
|
+
"Point of View": "Point de vue",
|
8
|
+
"Focus": "Focus",
|
9
|
+
"Characters": "Personnages",
|
10
|
+
"Plot": "Intrigue",
|
11
|
+
"Timeline": "Chronologie",
|
12
|
+
"Locations": "Lieux",
|
13
|
+
"Objects": "Objets",
|
14
|
+
"Entities": "Entités",
|
15
|
+
"Custom": "Personnalisé",
|
5
16
|
"0": "Zero",
|
6
17
|
"1": "Un",
|
7
18
|
"2": "Deux",
|
@@ -1,7 +1,18 @@
|
|
1
1
|
{
|
2
2
|
"Synopsis": "Sinossi",
|
3
|
+
"Short Description": "Breve descrizione",
|
3
4
|
"Comment": "Commento",
|
4
5
|
"Notes": "Note",
|
6
|
+
"Tag": "Etichetta",
|
7
|
+
"Point of View": "Punto di vista",
|
8
|
+
"Focus": "Focus",
|
9
|
+
"Characters": "Personaggi",
|
10
|
+
"Plot": "Trama",
|
11
|
+
"Timeline": "Sequenza temporale",
|
12
|
+
"Locations": "Luoghi",
|
13
|
+
"Objects": "Oggetti",
|
14
|
+
"Entities": "Enti",
|
15
|
+
"Custom": "Personalizzato",
|
5
16
|
"0": "Zero",
|
6
17
|
"1": "Uno",
|
7
18
|
"2": "Due",
|
@@ -1,7 +1,18 @@
|
|
1
1
|
{
|
2
2
|
"Synopsis": "概要",
|
3
|
+
"Short Description": "简短描述",
|
3
4
|
"Comment": "注释",
|
4
5
|
"Notes": "笔记",
|
6
|
+
"Tag": "标签",
|
7
|
+
"Point of View": "视角",
|
8
|
+
"Focus": "聚焦",
|
9
|
+
"Characters": "角色",
|
10
|
+
"Plot": "情节",
|
11
|
+
"Timeline": "时间线",
|
12
|
+
"Locations": "地点",
|
13
|
+
"Objects": "物品",
|
14
|
+
"Entities": "条目",
|
15
|
+
"Custom": "自定义",
|
5
16
|
"0": "零",
|
6
17
|
"1": "一",
|
7
18
|
"2": "二",
|
@@ -47,10 +47,11 @@ down = typ_chevron-down.svg
|
|
47
47
|
edit = typ_pencil.svg
|
48
48
|
export = typ_export.svg
|
49
49
|
fmt_bold = nw_tb-bold.svg
|
50
|
+
fmt_bold-md = nw_tb-bold-md.svg
|
50
51
|
fmt_italic = nw_tb-italic.svg
|
51
|
-
|
52
|
-
fmt_mode-sc = nw_tb-shortcode.svg
|
52
|
+
fmt_italic-md = nw_tb-italic-md.svg
|
53
53
|
fmt_strike = nw_tb-strike.svg
|
54
|
+
fmt_strike-md = nw_tb-strike-md.svg
|
54
55
|
fmt_subscript = nw_tb-subscript.svg
|
55
56
|
fmt_superscript = nw_tb-superscript.svg
|
56
57
|
fmt_underline = nw_tb-underline.svg
|
@@ -0,0 +1,4 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<svg width="24" height="24" version="1.1" viewBox="0 0 6.35 6.35" xmlns="http://www.w3.org/2000/svg">
|
3
|
+
<path d="m1.3672 5.5562v-4.7625h1.6289q0.37252 0 0.68662 0.058435 0.32139 0.051131 0.55513 0.18991 0.24104 0.13878 0.37252 0.36522 0.13878 0.22644 0.13878 0.56975 0 0.1607-0.043826 0.32139t-0.12417 0.29948q-0.080349 0.13878-0.19721 0.24835-0.10957 0.10957-0.25565 0.1607v0.029218q0.18261 0.043827 0.33601 0.13878 0.1534 0.087653 0.27027 0.22644 0.11687 0.13878 0.18261 0.3287 0.065739 0.18261 0.065739 0.42365 0 0.36522-0.14608 0.62818-0.13878 0.26295-0.39444 0.43826-0.24835 0.168-0.58435 0.25565-0.33601 0.080349-0.72313 0.080349zm1.0737-2.8561h0.50401q0.39444 0 0.56975-0.1534 0.18261-0.1534 0.18261-0.40905 0-0.27757-0.18261-0.39444t-0.56244-0.11687h-0.51131zm0 2.0233h0.60626q0.88383 0 0.88383-0.64279 0-0.31408-0.21914-0.44557-0.21914-0.13878-0.6647-0.13878h-0.60626z" fill="#aeaeae" stroke-opacity=".78039" stroke-width=".54782"/>
|
4
|
+
</svg>
|
@@ -0,0 +1,6 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<svg width="24" height="24" version="1.1" viewBox="0 0 6.35 6.35" xmlns="http://www.w3.org/2000/svg">
|
3
|
+
<path d="m1.568 5.2917v-4.2333h1.4479q0.33113 0 0.61033 0.051942 0.28568 0.04545 0.49345 0.16881 0.21426 0.12336 0.33113 0.32464 0.12336 0.20128 0.12336 0.50644 0 0.14284-0.038957 0.28568-0.038956 0.14284-0.11037 0.2662-0.071421 0.12336-0.1753 0.22076-0.097396 0.097396-0.22724 0.14284v0.025972q0.16232 0.038957 0.29868 0.12336 0.13636 0.077914 0.24024 0.20128 0.10388 0.12336 0.16232 0.29218 0.058435 0.16232 0.058435 0.37658 0 0.32464-0.12985 0.55838-0.12336 0.23373-0.35061 0.38956-0.22076 0.14933-0.51942 0.22724-0.29868 0.071422-0.64278 0.071422zm0.9544-2.5388h0.44801q0.35061 0 0.50644-0.13636 0.16232-0.13636 0.16232-0.3636 0-0.24673-0.16232-0.35061-0.16232-0.10388-0.49995-0.10388h-0.4545zm0 1.7985h0.5389q0.78563 0 0.78563-0.57137 0-0.27918-0.19479-0.39606-0.19479-0.12336-0.59084-0.12336h-0.5389z" fill="#aeaeae" stroke-opacity=".78039" stroke-width=".48695"/>
|
4
|
+
<path d="m4.9555 5.5562v-0.43195h0.54619v-3.8986h-0.54619v-0.43195h1.1299v4.7624z" fill="#69c" stroke-width="1.1186"/>
|
5
|
+
<path d="m0.26458 5.5562v-4.7624h1.1299v0.43195h-0.54083v3.8986h0.54083v0.43195z" fill="#69c" stroke-width="1.1186"/>
|
6
|
+
</svg>
|
@@ -0,0 +1,6 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<svg width="24" height="24" version="1.1" viewBox="0 0 6.35 6.35" xmlns="http://www.w3.org/2000/svg">
|
3
|
+
<path d="m2.417 5.2917 0.84148-4.2333h0.69908l-0.84148 4.2333z" fill="#aeaeae" stroke-opacity=".78039" stroke-width=".48547"/>
|
4
|
+
<path d="m4.9555 5.5562v-0.43195h0.54619v-3.8986h-0.54619v-0.43195h1.1299v4.7624z" fill="#69c" stroke-width="1.1186"/>
|
5
|
+
<path d="m0.26458 5.5562v-4.7624h1.1299v0.43195h-0.54083v3.8986h0.54083v0.43195z" fill="#69c" stroke-width="1.1186"/>
|
6
|
+
</svg>
|
@@ -0,0 +1,4 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<svg width="24" height="24" version="1.1" viewBox="0 0 6.35 6.35" xmlns="http://www.w3.org/2000/svg">
|
3
|
+
<path d="m3.1785 5.5562q-0.46361 0-0.89912-0.17561-0.42848-0.17561-0.75863-0.49873l0.47766-0.55492q0.24585 0.2318 0.56195 0.37931 0.3161 0.14049 0.63219 0.14049 0.39336 0 0.59707-0.16156t0.20371-0.42848q0-0.14049-0.056194-0.23883-0.04917-0.098341-0.14751-0.16858-0.091316-0.077267-0.22478-0.14049-0.12644-0.063219-0.28097-0.12644l-0.63219-0.27395q-0.16858-0.070243-0.33717-0.17561-0.16156-0.10537-0.29502-0.25288t-0.21775-0.34419q-0.077268-0.19668-0.077268-0.44956 0-0.27395 0.11239-0.50575 0.11941-0.23883 0.32312-0.41444t0.48468-0.27395q0.288-0.098341 0.62517-0.098341 0.40039 0 0.77268 0.16156 0.37229 0.15454 0.63921 0.42146l-0.41444 0.5198q-0.22478-0.18263-0.46361-0.288t-0.53385-0.10537q-0.33014 0-0.52683 0.14751-0.19668 0.14049-0.19668 0.39336 0 0.13346 0.056194 0.2318 0.063219 0.091316 0.16156 0.16858 0.10537 0.070244 0.23883 0.13346 0.13346 0.056194 0.27395 0.11239l0.62516 0.2599q0.20371 0.084291 0.37229 0.19668 0.16858 0.11239 0.288 0.2599 0.12644 0.14751 0.19668 0.34419 0.070244 0.18966 0.070244 0.44253 0 0.28097-0.11239 0.52683-0.11239 0.24585-0.33015 0.43551-0.21073 0.18263-0.5198 0.29502-0.30205 0.10536-0.68838 0.10536zm-2.3848-2.6458h4.7625v0.52917h-4.7625z" fill="#aeaeae" stroke-opacity=".78039" stroke-width=".52683"/>
|
4
|
+
</svg>
|
@@ -0,0 +1,6 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<svg width="24" height="24" version="1.1" viewBox="0 0 6.35 6.35" xmlns="http://www.w3.org/2000/svg">
|
3
|
+
<path d="m3.1782 5.2917q-0.4121 0-0.79922-0.1561-0.38087-0.1561-0.67434-0.44331l0.42459-0.49326q0.21853 0.20604 0.49951 0.33716 0.28098 0.12488 0.56195 0.12488 0.34965 0 0.53073-0.14361 0.18108-0.14361 0.18108-0.38087 0-0.12488-0.04995-0.21229-0.043707-0.087414-0.13112-0.14985-0.08117-0.068682-0.1998-0.12488-0.11239-0.056194-0.24975-0.11239l-0.56195-0.24351q-0.14985-0.062438-0.29971-0.1561-0.14361-0.093662-0.26224-0.22478-0.11863-0.13112-0.19356-0.30595-0.068682-0.17483-0.068682-0.39961 0-0.24351 0.099902-0.44955 0.10614-0.21229 0.28722-0.36839 0.18108-0.1561 0.43083-0.24351 0.256-0.087414 0.55571-0.087414 0.3559 0 0.68683 0.14361 0.33092 0.13737 0.56819 0.37463l-0.36839 0.46204q-0.1998-0.16234-0.4121-0.256-0.21229-0.093662-0.47453-0.093662-0.29346 0-0.46829 0.13112-0.17483 0.12488-0.17483 0.34965 0 0.11863 0.04995 0.20604 0.056194 0.08117 0.14361 0.14985 0.093662 0.062439 0.21229 0.11863 0.11863 0.04995 0.24351 0.099902l0.5557 0.23102q0.18108 0.074925 0.33092 0.17483 0.14985 0.099902 0.256 0.23102 0.11239 0.13112 0.17483 0.30595 0.062439 0.16859 0.062439 0.39336 0 0.24975-0.099902 0.46829-0.099902 0.21853-0.29347 0.38712-0.18732 0.16234-0.46204 0.26224-0.26849 0.093653-0.61189 0.093653zm-2.1198-2.3518h4.2333v0.47037h-4.2333z" fill="#aeaeae" stroke-opacity=".78039" stroke-width=".46829"/>
|
4
|
+
<path d="m4.9555 5.5562v-0.43195h0.54619v-3.8986h-0.54619v-0.43195h1.1299v4.7624z" fill="#69c" stroke-width="1.1186"/>
|
5
|
+
<path d="m0.26458 5.5562v-4.7624h1.1299v0.43195h-0.54083v3.8986h0.54083v0.43195z" fill="#69c" stroke-width="1.1186"/>
|
6
|
+
</svg>
|
@@ -0,0 +1,7 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<svg width="24" height="24" version="1.1" viewBox="0 0 6.35 6.35" xmlns="http://www.w3.org/2000/svg">
|
3
|
+
<path d="m2.2992 3.0475-0.13958 0.48548h1.0134l-0.13958-0.48548q-0.097092-0.31556-0.18812-0.64932-0.084958-0.33377-0.16992-0.66146h-0.024273q-0.084958 0.33377-0.16992 0.66752-0.084958 0.32769-0.18205 0.64325zm-1.329 2.1118 1.2926-3.9688h0.82531l1.2926 3.9688h-0.74035l-0.30949-1.0741h-1.3351l-0.30949 1.0741z" fill="#aeaeae" stroke-opacity=".78039" stroke-width=".45513"/>
|
4
|
+
<path d="m3.9467 5.1593v-1.9843h0.62795q0.15323 0 0.27942 0.027308 0.12919 0.024273 0.22233 0.081922 0.09615 0.054615 0.14722 0.14868 0.054082 0.094058 0.054082 0.23059 0 0.14261-0.072107 0.26397-0.072108 0.12137-0.2013 0.16688v0.012137q0.16224 0.036409 0.2674 0.15474 0.10816 0.1153 0.10816 0.31556 0 0.14868-0.057086 0.2579-0.057085 0.10922-0.15923 0.18205-0.099158 0.072819-0.23736 0.10922-0.13821 0.033375-0.30045 0.033375zm0.34852-1.1651h0.24938q0.20732 0 0.29744-0.075853 0.093142-0.075854 0.093142-0.20328 0-0.14564-0.09615-0.20632-0.09615-0.060682-0.28843-0.060682h-0.25538zm0 0.89208h0.29445q0.21632 0 0.3335-0.078888 0.11718-0.081923 0.11718-0.2488 0-0.15778-0.11418-0.22757-0.11418-0.07282-0.33651-0.07282h-0.29445z" fill="#fff" stroke-opacity=".78039" stroke-width=".22645"/>
|
5
|
+
<path d="m4.9555 5.5562v-0.43195h0.54619v-3.8986h-0.54619v-0.43195h1.1299v4.7624z" fill="#69c" stroke-width="1.1186"/>
|
6
|
+
<path d="m0.26458 5.5562v-4.7624h1.1299v0.43195h-0.54083v3.8986h0.54083v0.43195z" fill="#69c" stroke-width="1.1186"/>
|
7
|
+
</svg>
|
@@ -0,0 +1,7 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<svg width="24" height="24" version="1.1" viewBox="0 0 6.35 6.35" xmlns="http://www.w3.org/2000/svg">
|
3
|
+
<path d="m3.9467 3.175v-1.9843h0.62793q0.15324 0 0.27942 0.027307 0.12919 0.024274 0.22233 0.081922 0.09615 0.054615 0.14722 0.14868 0.054082 0.094058 0.054082 0.23059 0 0.14261-0.072107 0.26397-0.072107 0.12137-0.2013 0.16688v0.012138q0.16224 0.03641 0.2674 0.15475 0.10816 0.1153 0.10816 0.31556 0 0.14868-0.057086 0.2579-0.057085 0.10922-0.15923 0.18204-0.099142 0.072818-0.23735 0.10922-0.13821 0.033375-0.30045 0.033375zm0.34853-1.1651h0.24937q0.20732 0 0.29744-0.075853 0.093141-0.075853 0.093141-0.20328 0-0.14564-0.09615-0.20632-0.09615-0.060682-0.28843-0.060682h-0.25538zm0 0.89208h0.29443q0.21632 0 0.3335-0.078888 0.11718-0.081923 0.11718-0.24879 0-0.15777-0.11418-0.22756-0.11418-0.07282-0.33651-0.07282h-0.29443z" fill="#fff" stroke-opacity=".78039" stroke-width=".25475"/>
|
4
|
+
<path d="m2.2992 3.0475-0.13958 0.48548h1.0134l-0.13958-0.48548q-0.097092-0.31556-0.18812-0.64932-0.084958-0.33377-0.16992-0.66146h-0.024273q-0.084958 0.33377-0.16992 0.66753-0.084958 0.32769-0.18205 0.64325zm-1.329 2.1118 1.2926-3.9688h0.82531l1.2926 3.9688h-0.74035l-0.30949-1.0741h-1.3351l-0.30949 1.0741z" fill="#aeaeae" stroke-opacity=".78039" stroke-width=".45513"/>
|
5
|
+
<path d="m0.26458 5.5562v-4.7624h1.1299v0.43195h-0.54083v3.8986h0.54083v0.43195z" fill="#69c" stroke-width="1.1186"/>
|
6
|
+
<path d="m4.9555 5.5562v-0.43195h0.54619v-3.8986h-0.54619v-0.43195h1.1299v4.7624z" fill="#69c" stroke-width="1.1186"/>
|
7
|
+
</svg>
|
@@ -0,0 +1,7 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<svg width="24" height="24" version="1.1" viewBox="0 0 6.35 6.35" xmlns="http://www.w3.org/2000/svg">
|
3
|
+
<path d="m3.1778 4.846q-0.32417 0-0.58578-0.090994-0.25592-0.096685-0.4436-0.30143-0.18199-0.20474-0.28436-0.52323-0.096684-0.32417-0.096684-0.78483v-2.0872h0.65971v2.1383q0 0.30143 0.051184 0.51185 0.056872 0.20474 0.15355 0.32985 0.10237 0.12512 0.23887 0.18199 0.13649 0.051184 0.30711 0.051184 0.17061 0 0.3128-0.051184 0.14218-0.056873 0.24455-0.18199 0.10237-0.12512 0.15924-0.32985 0.056873-0.21043 0.056873-0.51185v-2.1383h0.63128v2.0872q0 0.46067-0.096685 0.78483-0.096684 0.31848-0.28436 0.52323-0.18199 0.20474-0.4436 0.30143-0.25592 0.090994-0.5801 0.090994z" fill="#aeaeae" stroke-opacity=".78039" stroke-width=".42654"/>
|
4
|
+
<rect x="1.5875" y="5.0271" width="3.175" height=".39688" fill="#aeaeae" stroke-width=".91291"/>
|
5
|
+
<path d="m4.9555 5.5562v-0.43195h0.54619v-3.8986h-0.54619v-0.43195h1.1299v4.7624z" fill="#69c" stroke-width="1.1186"/>
|
6
|
+
<path d="m0.26458 5.5562v-4.7624h1.1299v0.43195h-0.54083v3.8986h0.54083v0.43195z" fill="#69c" stroke-width="1.1186"/>
|
7
|
+
</svg>
|
@@ -47,10 +47,11 @@ down = typ_chevron-down.svg
|
|
47
47
|
edit = typ_pencil.svg
|
48
48
|
export = typ_export.svg
|
49
49
|
fmt_bold = nw_tb-bold.svg
|
50
|
+
fmt_bold-md = nw_tb-bold-md.svg
|
50
51
|
fmt_italic = nw_tb-italic.svg
|
51
|
-
|
52
|
-
fmt_mode-sc = nw_tb-shortcode.svg
|
52
|
+
fmt_italic-md = nw_tb-italic-md.svg
|
53
53
|
fmt_strike = nw_tb-strike.svg
|
54
|
+
fmt_strike-md = nw_tb-strike-md.svg
|
54
55
|
fmt_subscript = nw_tb-subscript.svg
|
55
56
|
fmt_superscript = nw_tb-superscript.svg
|
56
57
|
fmt_underline = nw_tb-underline.svg
|
@@ -0,0 +1,4 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<svg width="24" height="24" version="1.1" viewBox="0 0 6.35 6.35" xmlns="http://www.w3.org/2000/svg">
|
3
|
+
<path d="m1.3672 5.5562v-4.7625h1.6289q0.37252 0 0.68662 0.058435 0.32139 0.051131 0.55513 0.18991 0.24104 0.13878 0.37252 0.36522 0.13878 0.22644 0.13878 0.56975 0 0.1607-0.043826 0.32139t-0.12417 0.29948q-0.080349 0.13878-0.19721 0.24835-0.10957 0.10957-0.25565 0.1607v0.029218q0.18261 0.043827 0.33601 0.13878 0.1534 0.087653 0.27027 0.22644 0.11687 0.13878 0.18261 0.3287 0.065739 0.18261 0.065739 0.42365 0 0.36522-0.14608 0.62818-0.13878 0.26295-0.39444 0.43826-0.24835 0.168-0.58435 0.25565-0.33601 0.080349-0.72313 0.080349zm1.0737-2.8561h0.50401q0.39444 0 0.56975-0.1534 0.18261-0.1534 0.18261-0.40905 0-0.27757-0.18261-0.39444t-0.56244-0.11687h-0.51131zm0 2.0233h0.60626q0.88383 0 0.88383-0.64279 0-0.31408-0.21914-0.44557-0.21914-0.13878-0.6647-0.13878h-0.60626z" fill-opacity=".78039" stroke-opacity=".78039" stroke-width=".54782"/>
|
4
|
+
</svg>
|
@@ -0,0 +1,6 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<svg width="24" height="24" version="1.1" viewBox="0 0 6.35 6.35" xmlns="http://www.w3.org/2000/svg">
|
3
|
+
<path d="m1.568 5.2917v-4.2333h1.4479q0.33113 0 0.61033 0.051942 0.28568 0.04545 0.49345 0.16881 0.21426 0.12336 0.33113 0.32464 0.12336 0.20128 0.12336 0.50644 0 0.14284-0.038957 0.28568-0.038956 0.14284-0.11037 0.2662-0.071421 0.12336-0.1753 0.22076-0.097396 0.097396-0.22724 0.14284v0.025972q0.16232 0.038957 0.29868 0.12336 0.13636 0.077914 0.24024 0.20128 0.10388 0.12336 0.16232 0.29218 0.058435 0.16232 0.058435 0.37658 0 0.32464-0.12985 0.55838-0.12336 0.23373-0.35061 0.38956-0.22076 0.14933-0.51942 0.22724-0.29868 0.071422-0.64278 0.071422zm0.9544-2.5388h0.44801q0.35061 0 0.50644-0.13636 0.16232-0.13636 0.16232-0.3636 0-0.24673-0.16232-0.35061-0.16232-0.10388-0.49995-0.10388h-0.4545zm0 1.7985h0.5389q0.78563 0 0.78563-0.57137 0-0.27918-0.19479-0.39606-0.19479-0.12336-0.59084-0.12336h-0.5389z" fill-opacity=".78039" stroke-opacity=".78039" stroke-width=".48695"/>
|
4
|
+
<path d="m4.9555 5.5562v-0.43195h0.54619v-3.8986h-0.54619v-0.43195h1.1299v4.7624z" fill="#4271ae" stroke-width="1.1186"/>
|
5
|
+
<path d="m0.26458 5.5562v-4.7624h1.1299v0.43195h-0.54083v3.8986h0.54083v0.43195z" fill="#4271ae" stroke-width="1.1186"/>
|
6
|
+
</svg>
|
@@ -0,0 +1,6 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<svg width="24" height="24" version="1.1" viewBox="0 0 6.35 6.35" xmlns="http://www.w3.org/2000/svg">
|
3
|
+
<path d="m2.417 5.2917 0.84148-4.2333h0.69908l-0.84148 4.2333z" fill-opacity=".78039" stroke-opacity=".78039" stroke-width=".48547"/>
|
4
|
+
<path d="m4.9555 5.5562v-0.43195h0.54619v-3.8986h-0.54619v-0.43195h1.1299v4.7624z" fill="#4271ae" stroke-width="1.1186"/>
|
5
|
+
<path d="m0.26458 5.5562v-4.7624h1.1299v0.43195h-0.54083v3.8986h0.54083v0.43195z" fill="#4271ae" stroke-width="1.1186"/>
|
6
|
+
</svg>
|
@@ -0,0 +1,4 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<svg width="24" height="24" version="1.1" viewBox="0 0 6.35 6.35" xmlns="http://www.w3.org/2000/svg">
|
3
|
+
<path d="m3.1785 5.5562q-0.46361 0-0.89912-0.17561-0.42848-0.17561-0.75863-0.49873l0.47766-0.55492q0.24585 0.2318 0.56195 0.37931 0.3161 0.14049 0.63219 0.14049 0.39336 0 0.59707-0.16156t0.20371-0.42848q0-0.14049-0.056194-0.23883-0.04917-0.098341-0.14751-0.16858-0.091316-0.077267-0.22478-0.14049-0.12644-0.063219-0.28097-0.12644l-0.63219-0.27395q-0.16858-0.070243-0.33717-0.17561-0.16156-0.10537-0.29502-0.25288t-0.21775-0.34419q-0.077268-0.19668-0.077268-0.44956 0-0.27395 0.11239-0.50575 0.11941-0.23883 0.32312-0.41444t0.48468-0.27395q0.288-0.098341 0.62517-0.098341 0.40039 0 0.77268 0.16156 0.37229 0.15454 0.63921 0.42146l-0.41444 0.5198q-0.22478-0.18263-0.46361-0.288t-0.53385-0.10537q-0.33014 0-0.52683 0.14751-0.19668 0.14049-0.19668 0.39336 0 0.13346 0.056194 0.2318 0.063219 0.091316 0.16156 0.16858 0.10537 0.070244 0.23883 0.13346 0.13346 0.056194 0.27395 0.11239l0.62516 0.2599q0.20371 0.084291 0.37229 0.19668 0.16858 0.11239 0.288 0.2599 0.12644 0.14751 0.19668 0.34419 0.070244 0.18966 0.070244 0.44253 0 0.28097-0.11239 0.52683-0.11239 0.24585-0.33015 0.43551-0.21073 0.18263-0.5198 0.29502-0.30205 0.10536-0.68838 0.10536zm-2.3848-2.6458h4.7625v0.52917h-4.7625z" fill-opacity=".78039" stroke-opacity=".78039" stroke-width=".52683"/>
|
4
|
+
</svg>
|
@@ -0,0 +1,6 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<svg width="24" height="24" version="1.1" viewBox="0 0 6.35 6.35" xmlns="http://www.w3.org/2000/svg">
|
3
|
+
<path d="m3.1782 5.2917q-0.4121 0-0.79922-0.1561-0.38087-0.1561-0.67434-0.44331l0.42459-0.49326q0.21853 0.20604 0.49951 0.33716 0.28098 0.12488 0.56195 0.12488 0.34965 0 0.53073-0.14361 0.18108-0.14361 0.18108-0.38087 0-0.12488-0.04995-0.21229-0.043707-0.087414-0.13112-0.14985-0.08117-0.068682-0.1998-0.12488-0.11239-0.056194-0.24975-0.11239l-0.56195-0.24351q-0.14985-0.062438-0.29971-0.1561-0.14361-0.093662-0.26224-0.22478-0.11863-0.13112-0.19356-0.30595-0.068682-0.17483-0.068682-0.39961 0-0.24351 0.099902-0.44955 0.10614-0.21229 0.28722-0.36839 0.18108-0.1561 0.43083-0.24351 0.256-0.087414 0.55571-0.087414 0.3559 0 0.68683 0.14361 0.33092 0.13737 0.56819 0.37463l-0.36839 0.46204q-0.1998-0.16234-0.4121-0.256-0.21229-0.093662-0.47453-0.093662-0.29346 0-0.46829 0.13112-0.17483 0.12488-0.17483 0.34965 0 0.11863 0.04995 0.20604 0.056194 0.08117 0.14361 0.14985 0.093662 0.062439 0.21229 0.11863 0.11863 0.04995 0.24351 0.099902l0.5557 0.23102q0.18108 0.074925 0.33092 0.17483 0.14985 0.099902 0.256 0.23102 0.11239 0.13112 0.17483 0.30595 0.062439 0.16859 0.062439 0.39336 0 0.24975-0.099902 0.46829-0.099902 0.21853-0.29347 0.38712-0.18732 0.16234-0.46204 0.26224-0.26849 0.093653-0.61189 0.093653zm-2.1198-2.3518h4.2333v0.47037h-4.2333z" fill-opacity=".78039" stroke-opacity=".78039" stroke-width=".46829"/>
|
4
|
+
<path d="m4.9555 5.5562v-0.43195h0.54619v-3.8986h-0.54619v-0.43195h1.1299v4.7624z" fill="#4271ae" stroke-width="1.1186"/>
|
5
|
+
<path d="m0.26458 5.5562v-4.7624h1.1299v0.43195h-0.54083v3.8986h0.54083v0.43195z" fill="#4271ae" stroke-width="1.1186"/>
|
6
|
+
</svg>
|
@@ -0,0 +1,7 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<svg width="24" height="24" version="1.1" viewBox="0 0 6.35 6.35" xmlns="http://www.w3.org/2000/svg">
|
3
|
+
<path d="m2.2992 3.0475-0.13958 0.48548h1.0134l-0.13958-0.48548q-0.097092-0.31556-0.18812-0.64932-0.084958-0.33377-0.16992-0.66146h-0.024273q-0.084958 0.33377-0.16992 0.66752-0.084958 0.32769-0.18205 0.64325zm-1.329 2.1118 1.2926-3.9688h0.82531l1.2926 3.9688h-0.74035l-0.30949-1.0741h-1.3351l-0.30949 1.0741z" fill-opacity=".78039" stroke-opacity=".78039" stroke-width=".45513"/>
|
4
|
+
<path d="m3.9467 5.1593v-1.9843h0.62795q0.15323 0 0.27942 0.027308 0.12919 0.024273 0.22233 0.081922 0.09615 0.054615 0.14722 0.14868 0.054082 0.094058 0.054082 0.23059 0 0.14261-0.072107 0.26397-0.072108 0.12137-0.2013 0.16688v0.012137q0.16224 0.036409 0.2674 0.15474 0.10816 0.1153 0.10816 0.31556 0 0.14868-0.057086 0.2579-0.057085 0.10922-0.15923 0.18205-0.099158 0.072819-0.23736 0.10922-0.13821 0.033375-0.30045 0.033375zm0.34852-1.1651h0.24938q0.20732 0 0.29744-0.075853 0.093142-0.075854 0.093142-0.20328 0-0.14564-0.09615-0.20632-0.09615-0.060682-0.28843-0.060682h-0.25538zm0 0.89208h0.29445q0.21632 0 0.3335-0.078888 0.11718-0.081923 0.11718-0.2488 0-0.15778-0.11418-0.22757-0.11418-0.07282-0.33651-0.07282h-0.29445z" stroke-opacity=".78039" stroke-width=".22645"/>
|
5
|
+
<path d="m4.9555 5.5562v-0.43195h0.54619v-3.8986h-0.54619v-0.43195h1.1299v4.7624z" fill="#4271ae" stroke-width="1.1186"/>
|
6
|
+
<path d="m0.26458 5.5562v-4.7624h1.1299v0.43195h-0.54083v3.8986h0.54083v0.43195z" fill="#4271ae" stroke-width="1.1186"/>
|
7
|
+
</svg>
|
@@ -0,0 +1,7 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<svg width="24" height="24" version="1.1" viewBox="0 0 6.35 6.35" xmlns="http://www.w3.org/2000/svg">
|
3
|
+
<path d="m3.9467 3.175v-1.9843h0.62793q0.15324 0 0.27942 0.027307 0.12919 0.024274 0.22233 0.081922 0.09615 0.054615 0.14722 0.14868 0.054082 0.094058 0.054082 0.23059 0 0.14261-0.072107 0.26397-0.072107 0.12137-0.2013 0.16688v0.012138q0.16224 0.03641 0.2674 0.15475 0.10816 0.1153 0.10816 0.31556 0 0.14868-0.057086 0.2579-0.057085 0.10922-0.15923 0.18204-0.099142 0.072818-0.23735 0.10922-0.13821 0.033375-0.30045 0.033375zm0.34853-1.1651h0.24937q0.20732 0 0.29744-0.075853 0.093141-0.075853 0.093141-0.20328 0-0.14564-0.09615-0.20632-0.09615-0.060682-0.28843-0.060682h-0.25538zm0 0.89208h0.29443q0.21632 0 0.3335-0.078888 0.11718-0.081923 0.11718-0.24879 0-0.15777-0.11418-0.22756-0.11418-0.07282-0.33651-0.07282h-0.29443z" stroke-opacity=".78039" stroke-width=".25475"/>
|
4
|
+
<path d="m2.2992 3.0475-0.13958 0.48548h1.0134l-0.13958-0.48548q-0.097092-0.31556-0.18812-0.64932-0.084958-0.33377-0.16992-0.66146h-0.024273q-0.084958 0.33377-0.16992 0.66753-0.084958 0.32769-0.18205 0.64325zm-1.329 2.1118 1.2926-3.9688h0.82531l1.2926 3.9688h-0.74035l-0.30949-1.0741h-1.3351l-0.30949 1.0741z" fill-opacity=".78039" stroke-opacity=".78039" stroke-width=".45513"/>
|
5
|
+
<path d="m0.26458 5.5562v-4.7624h1.1299v0.43195h-0.54083v3.8986h0.54083v0.43195z" fill="#4271ae" stroke-width="1.1186"/>
|
6
|
+
<path d="m4.9555 5.5562v-0.43195h0.54619v-3.8986h-0.54619v-0.43195h1.1299v4.7624z" fill="#4271ae" stroke-width="1.1186"/>
|
7
|
+
</svg>
|
@@ -0,0 +1,7 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<svg width="24" height="24" version="1.1" viewBox="0 0 6.35 6.35" xmlns="http://www.w3.org/2000/svg">
|
3
|
+
<path d="m3.1778 4.846q-0.32417 0-0.58578-0.090994-0.25592-0.096685-0.4436-0.30143-0.18199-0.20474-0.28436-0.52323-0.096684-0.32417-0.096684-0.78483v-2.0872h0.65971v2.1383q0 0.30143 0.051184 0.51185 0.056872 0.20474 0.15355 0.32985 0.10237 0.12512 0.23887 0.18199 0.13649 0.051184 0.30711 0.051184 0.17061 0 0.3128-0.051184 0.14218-0.056873 0.24455-0.18199 0.10237-0.12512 0.15924-0.32985 0.056873-0.21043 0.056873-0.51185v-2.1383h0.63128v2.0872q0 0.46067-0.096685 0.78483-0.096684 0.31848-0.28436 0.52323-0.18199 0.20474-0.4436 0.30143-0.25592 0.090994-0.5801 0.090994z" fill-opacity=".78039" stroke-opacity=".78039" stroke-width=".42654"/>
|
4
|
+
<rect x="1.5875" y="5.0271" width="3.175" height=".39688" fill-opacity=".78039" stroke-width=".91291"/>
|
5
|
+
<path d="m4.9555 5.5562v-0.43195h0.54619v-3.8986h-0.54619v-0.43195h1.1299v4.7624z" fill="#4271ae" stroke-width="1.1186"/>
|
6
|
+
<path d="m0.26458 5.5562v-4.7624h1.1299v0.43195h-0.54083v3.8986h0.54083v0.43195z" fill="#4271ae" stroke-width="1.1186"/>
|
7
|
+
</svg>
|
Binary file
|
Binary file
|