novelWriter 2.4.3__py3-none-any.whl → 2.5__py3-none-any.whl
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.4.3.dist-info → novelWriter-2.5.dist-info}/METADATA +4 -5
- {novelWriter-2.4.3.dist-info → novelWriter-2.5.dist-info}/RECORD +122 -112
- {novelWriter-2.4.3.dist-info → novelWriter-2.5.dist-info}/WHEEL +1 -1
- novelwriter/__init__.py +33 -39
- novelwriter/assets/i18n/nw_de_DE.qm +0 -0
- novelwriter/assets/i18n/nw_en_US.qm +0 -0
- novelwriter/assets/i18n/nw_es_419.qm +0 -0
- novelwriter/assets/i18n/nw_fr_FR.qm +0 -0
- novelwriter/assets/i18n/nw_it_IT.qm +0 -0
- novelwriter/assets/i18n/nw_ja_JP.qm +0 -0
- novelwriter/assets/i18n/nw_nb_NO.qm +0 -0
- novelwriter/assets/i18n/nw_nl_NL.qm +0 -0
- novelwriter/assets/i18n/nw_pl_PL.qm +0 -0
- novelwriter/assets/i18n/nw_pt_BR.qm +0 -0
- novelwriter/assets/i18n/nw_zh_CN.qm +0 -0
- novelwriter/assets/i18n/project_en_GB.json +1 -0
- novelwriter/assets/i18n/project_pl_PL.json +116 -0
- novelwriter/assets/i18n/project_pt_BR.json +74 -74
- novelwriter/assets/icons/typicons_dark/icons.conf +2 -0
- novelwriter/assets/icons/typicons_dark/nw_font.svg +4 -0
- novelwriter/assets/icons/typicons_dark/nw_quote.svg +4 -0
- novelwriter/assets/icons/typicons_light/icons.conf +2 -0
- novelwriter/assets/icons/typicons_light/nw_font.svg +4 -0
- novelwriter/assets/icons/typicons_light/nw_quote.svg +4 -0
- novelwriter/assets/manual.pdf +0 -0
- novelwriter/assets/sample.zip +0 -0
- novelwriter/assets/syntax/cyberpunk_night.conf +5 -3
- novelwriter/assets/syntax/default_dark.conf +32 -18
- novelwriter/assets/syntax/default_light.conf +24 -10
- novelwriter/assets/syntax/dracula.conf +44 -0
- novelwriter/assets/syntax/grey_dark.conf +5 -4
- novelwriter/assets/syntax/grey_light.conf +5 -4
- novelwriter/assets/syntax/light_owl.conf +7 -6
- novelwriter/assets/syntax/night_owl.conf +7 -6
- novelwriter/assets/syntax/snazzy.conf +42 -0
- novelwriter/assets/syntax/solarized_dark.conf +4 -3
- novelwriter/assets/syntax/solarized_light.conf +4 -3
- novelwriter/assets/syntax/tango.conf +27 -11
- novelwriter/assets/syntax/tomorrow.conf +6 -5
- novelwriter/assets/syntax/tomorrow_night.conf +7 -6
- novelwriter/assets/syntax/tomorrow_night_blue.conf +6 -5
- novelwriter/assets/syntax/tomorrow_night_bright.conf +6 -5
- novelwriter/assets/syntax/tomorrow_night_eighties.conf +6 -5
- novelwriter/assets/text/credits_en.htm +52 -41
- novelwriter/assets/themes/cyberpunk_night.conf +3 -0
- novelwriter/assets/themes/default_dark.conf +2 -0
- novelwriter/assets/themes/default_light.conf +2 -0
- novelwriter/assets/themes/dracula.conf +48 -0
- novelwriter/assets/themes/solarized_dark.conf +2 -0
- novelwriter/assets/themes/solarized_light.conf +2 -0
- novelwriter/common.py +33 -12
- novelwriter/config.py +184 -98
- novelwriter/constants.py +47 -35
- novelwriter/core/buildsettings.py +68 -69
- novelwriter/core/coretools.py +5 -23
- novelwriter/core/docbuild.py +52 -40
- novelwriter/core/document.py +3 -5
- novelwriter/core/index.py +115 -45
- novelwriter/core/item.py +8 -19
- novelwriter/core/options.py +2 -4
- novelwriter/core/project.py +37 -61
- novelwriter/core/projectdata.py +1 -3
- novelwriter/core/projectxml.py +12 -15
- novelwriter/core/sessions.py +3 -5
- novelwriter/core/spellcheck.py +4 -9
- novelwriter/core/status.py +211 -164
- novelwriter/core/storage.py +0 -8
- novelwriter/core/tohtml.py +139 -105
- novelwriter/core/tokenizer.py +278 -122
- novelwriter/core/{tomd.py → tomarkdown.py} +97 -78
- novelwriter/core/toodt.py +257 -166
- novelwriter/core/toqdoc.py +419 -0
- novelwriter/core/tree.py +5 -7
- novelwriter/dialogs/about.py +11 -18
- novelwriter/dialogs/docmerge.py +17 -19
- novelwriter/dialogs/docsplit.py +17 -19
- novelwriter/dialogs/editlabel.py +6 -10
- novelwriter/dialogs/preferences.py +200 -164
- novelwriter/dialogs/projectsettings.py +225 -189
- novelwriter/dialogs/quotes.py +12 -9
- novelwriter/dialogs/wordlist.py +9 -15
- novelwriter/enum.py +35 -30
- novelwriter/error.py +8 -15
- novelwriter/extensions/configlayout.py +55 -21
- novelwriter/extensions/eventfilters.py +1 -5
- novelwriter/extensions/modified.py +70 -14
- novelwriter/extensions/novelselector.py +1 -3
- novelwriter/extensions/pagedsidebar.py +9 -12
- novelwriter/extensions/{circularprogress.py → progressbars.py} +30 -8
- novelwriter/extensions/statusled.py +40 -26
- novelwriter/extensions/switch.py +4 -6
- novelwriter/extensions/switchbox.py +7 -6
- novelwriter/extensions/versioninfo.py +3 -9
- novelwriter/gui/doceditor.py +120 -139
- novelwriter/gui/dochighlight.py +231 -186
- novelwriter/gui/docviewer.py +69 -108
- novelwriter/gui/docviewerpanel.py +3 -10
- novelwriter/gui/editordocument.py +1 -3
- novelwriter/gui/itemdetails.py +7 -11
- novelwriter/gui/mainmenu.py +22 -18
- novelwriter/gui/noveltree.py +11 -24
- novelwriter/gui/outline.py +15 -26
- novelwriter/gui/projtree.py +39 -65
- novelwriter/gui/search.py +10 -3
- novelwriter/gui/sidebar.py +2 -6
- novelwriter/gui/statusbar.py +29 -37
- novelwriter/gui/theme.py +26 -48
- novelwriter/guimain.py +162 -160
- novelwriter/shared.py +36 -19
- novelwriter/text/patterns.py +113 -0
- novelwriter/tools/dictionaries.py +10 -20
- novelwriter/tools/lipsum.py +10 -16
- novelwriter/tools/manusbuild.py +9 -11
- novelwriter/tools/manuscript.py +75 -149
- novelwriter/tools/manussettings.py +74 -76
- novelwriter/tools/noveldetails.py +16 -21
- novelwriter/tools/welcome.py +21 -26
- novelwriter/tools/writingstats.py +9 -12
- novelwriter/types.py +49 -4
- novelwriter/extensions/simpleprogress.py +0 -55
- {novelWriter-2.4.3.dist-info → novelWriter-2.5.dist-info}/LICENSE.md +0 -0
- {novelWriter-2.4.3.dist-info → novelWriter-2.5.dist-info}/entry_points.txt +0 -0
- {novelWriter-2.4.3.dist-info → novelWriter-2.5.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,116 @@
|
|
1
|
+
{
|
2
|
+
"Synopsis": "Streszczenie",
|
3
|
+
"Short Description": "Krótki opis",
|
4
|
+
"Comment": "Komentarz",
|
5
|
+
"Notes": "Notatki",
|
6
|
+
"Tag": "Znacznik",
|
7
|
+
"Point of View": "Punkt widzenia",
|
8
|
+
"Focus": "Skupienie",
|
9
|
+
"Characters": "Postacie",
|
10
|
+
"Plot": "Fabuła",
|
11
|
+
"Timeline": "Oś czasu",
|
12
|
+
"Locations": "Miejsca",
|
13
|
+
"Objects": "Obiekty",
|
14
|
+
"Entities": "Podmioty",
|
15
|
+
"Custom": "Różne",
|
16
|
+
"0": "zero",
|
17
|
+
"1": "pierwszy",
|
18
|
+
"2": "drugi",
|
19
|
+
"3": "trzeci",
|
20
|
+
"4": "czwarty",
|
21
|
+
"5": "piąty",
|
22
|
+
"6": "szósty",
|
23
|
+
"7": "siódmy",
|
24
|
+
"8": "ósmy",
|
25
|
+
"9": "dziewiąty",
|
26
|
+
"10": "dziesiąty",
|
27
|
+
"11": "jedenasty",
|
28
|
+
"12": "dwunasty",
|
29
|
+
"13": "trzynasty",
|
30
|
+
"14": "czternasty",
|
31
|
+
"15": "piętnasty",
|
32
|
+
"16": "szesnasty",
|
33
|
+
"17": "siedemnasty",
|
34
|
+
"18": "osiemnasty",
|
35
|
+
"19": "dziewiętnasty",
|
36
|
+
"20": "dwudziesty",
|
37
|
+
"21": "dwudziesty pierwszy",
|
38
|
+
"22": "dwudziesty drugi",
|
39
|
+
"23": "dwudziesty Trzeci",
|
40
|
+
"24": "dwudziesty czwarty",
|
41
|
+
"25": "dwudziesty piąty",
|
42
|
+
"26": "dwudziesty szósty",
|
43
|
+
"27": "dwudziesty siódmy",
|
44
|
+
"28": "dwudziesty ósmy",
|
45
|
+
"29": "dwudziesty dziewiąty",
|
46
|
+
"30": "trzydziesty",
|
47
|
+
"31": "trzydziesty pierwszy",
|
48
|
+
"32": "trzydziesty drugi",
|
49
|
+
"33": "trzydziesty trzeci",
|
50
|
+
"34": "trzydziesty czwarty",
|
51
|
+
"35": "trzydziesty piąty",
|
52
|
+
"36": "trzydziesty szósty",
|
53
|
+
"37": "trzydziesty siódmy",
|
54
|
+
"38": "trzydziesty ósmy",
|
55
|
+
"39": "trzydziesty dziewiaty",
|
56
|
+
"40": "czterdziesty",
|
57
|
+
"41": "czterdziesty pierwszy",
|
58
|
+
"42": "czterdziesty drugi",
|
59
|
+
"43": "czterdziesty Trzeci",
|
60
|
+
"44": "czterdziesty czwarty",
|
61
|
+
"45": "czterdziesty piąty",
|
62
|
+
"46": "czterdziesty szósty",
|
63
|
+
"47": "czterdziesty siódmy",
|
64
|
+
"48": "czterdziesty ósmy",
|
65
|
+
"49": "czterdziesty dziewiąty",
|
66
|
+
"50": "pięćdziesiąty",
|
67
|
+
"51": "pięćdziesiąty pierwszy",
|
68
|
+
"52": "pięćdziesiąty drugi",
|
69
|
+
"53": "pięćdziesiąty trzeci",
|
70
|
+
"54": "pięćdziesiąty czwarty",
|
71
|
+
"55": "pięćdziesiąty piąty",
|
72
|
+
"56": "pięćdziesiąty szósty",
|
73
|
+
"57": "pięćdziesiąty siódmy",
|
74
|
+
"58": "pięćdziesiąty ósmy",
|
75
|
+
"59": "pięćdziesiąty dziewiąty",
|
76
|
+
"60": "sześćdziesiąty",
|
77
|
+
"61": "sześćdziesiąty pierwszy",
|
78
|
+
"62": "sześćdziesiąty drugi",
|
79
|
+
"63": "sześćdziesiąty trzeci",
|
80
|
+
"64": "sześćdziesiąty czwarty",
|
81
|
+
"65": "sześćdziesiąty piąty",
|
82
|
+
"66": "sześćdziesiąty szósty",
|
83
|
+
"67": "sześćdziesiąty siódmy",
|
84
|
+
"68": "sześćdziesiąty ósmy",
|
85
|
+
"69": "sześćdziesiąty dziewiąty",
|
86
|
+
"70": "siedemdziesiąty",
|
87
|
+
"71": "siedemdziesiąty pierwszy",
|
88
|
+
"72": "siedemdziesiąty drugi",
|
89
|
+
"73": "siedemdziesiąty trzeci",
|
90
|
+
"74": "siedemdziesiąty czwarty",
|
91
|
+
"75": "siedemdziesiąty piąty",
|
92
|
+
"76": "siedemdziesiąty szósty",
|
93
|
+
"77": "siedemdziesiąty siódmy",
|
94
|
+
"78": "siedemdziesiąty ósmy",
|
95
|
+
"79": "siedemdziesiąty dziewiąty",
|
96
|
+
"80": "osiemdziesiąty",
|
97
|
+
"81": "osiemdziesiąty pierwszy",
|
98
|
+
"82": "osiemdziesiąty drugi",
|
99
|
+
"83": "osiemdziesiąty trzeci",
|
100
|
+
"84": "osiemdziesiąty czwarty",
|
101
|
+
"85": "osiemdziesiąty piąty",
|
102
|
+
"86": "osiemdziesiąty szósty",
|
103
|
+
"87": "osiemdziesiąty siódmy",
|
104
|
+
"88": "osiemdziesiąty ósmy",
|
105
|
+
"89": "osiemdziesiąty dziewiąty",
|
106
|
+
"90": "dziewięćdziesiąty",
|
107
|
+
"91": "dziewięćdziesiąty pierwszy",
|
108
|
+
"92": "dziewięćdziesiąty drugi",
|
109
|
+
"93": "dziewięćdziesiąty trzeci",
|
110
|
+
"94": "dziewięćdziesiąty czwarty",
|
111
|
+
"95": "dziewięćdziesiąty piąty",
|
112
|
+
"96": "dziewięćdziesiąty szósty",
|
113
|
+
"97": "dziewięćdziesiąty siódmy",
|
114
|
+
"98": "dziewięćdziesiąty ósmy",
|
115
|
+
"99": "dziewięćdziesiąty dziewiąty"
|
116
|
+
}
|
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"Synopsis": "Sinopse",
|
3
3
|
"Short Description": "Descrição breve",
|
4
|
-
"Comment": "
|
4
|
+
"Comment": "Comentário",
|
5
5
|
"Notes": "Notas",
|
6
6
|
"Tag": "Etiqueta",
|
7
7
|
"Point of View": "Ponto de vista",
|
@@ -30,87 +30,87 @@
|
|
30
30
|
"14": "Quatorze",
|
31
31
|
"15": "Quinze",
|
32
32
|
"16": "Dezesseis",
|
33
|
-
"17": "
|
33
|
+
"17": "Dezessete",
|
34
34
|
"18": "Dezoito",
|
35
35
|
"19": "Dezenove",
|
36
36
|
"20": "Vinte",
|
37
|
-
"21": "Vinte e
|
38
|
-
"22": "Vinte e
|
39
|
-
"23": "Vinte e
|
40
|
-
"24": "Vinte e
|
41
|
-
"25": "Vinte e
|
42
|
-
"26": "Vinte e
|
43
|
-
"27": "Vinte e
|
44
|
-
"28": "Vinte e
|
45
|
-
"29": "Vinte e
|
37
|
+
"21": "Vinte e um",
|
38
|
+
"22": "Vinte e dois",
|
39
|
+
"23": "Vinte e três",
|
40
|
+
"24": "Vinte e quatro",
|
41
|
+
"25": "Vinte e cinco",
|
42
|
+
"26": "Vinte e seis",
|
43
|
+
"27": "Vinte e sete",
|
44
|
+
"28": "Vinte e oito",
|
45
|
+
"29": "Vinte e nove",
|
46
46
|
"30": "Trinta",
|
47
|
-
"31": "Trinta e
|
48
|
-
"32": "Trinta e
|
49
|
-
"33": "Trinta e
|
50
|
-
"34": "Trinta e
|
51
|
-
"35": "Trinta e
|
52
|
-
"36": "Trinta e
|
53
|
-
"37": "Trinta e
|
54
|
-
"38": "Trinta e
|
55
|
-
"39": "Trinta e
|
47
|
+
"31": "Trinta e um",
|
48
|
+
"32": "Trinta e dois",
|
49
|
+
"33": "Trinta e três",
|
50
|
+
"34": "Trinta e quatro",
|
51
|
+
"35": "Trinta e cinco",
|
52
|
+
"36": "Trinta e seis",
|
53
|
+
"37": "Trinta e sete",
|
54
|
+
"38": "Trinta e oito",
|
55
|
+
"39": "Trinta e nove",
|
56
56
|
"40": "Quarenta",
|
57
|
-
"41": "Quarenta e
|
58
|
-
"42": "Quarenta e
|
59
|
-
"43": "Quarenta e
|
60
|
-
"44": "Quarenta e
|
61
|
-
"45": "Quarenta e
|
62
|
-
"46": "Quarenta e
|
63
|
-
"47": "Quarenta e
|
64
|
-
"48": "Quarenta e
|
65
|
-
"49": "Quarenta e
|
57
|
+
"41": "Quarenta e um",
|
58
|
+
"42": "Quarenta e dois",
|
59
|
+
"43": "Quarenta e três",
|
60
|
+
"44": "Quarenta e quatro",
|
61
|
+
"45": "Quarenta e cinco",
|
62
|
+
"46": "Quarenta e seis",
|
63
|
+
"47": "Quarenta e sete",
|
64
|
+
"48": "Quarenta e oito",
|
65
|
+
"49": "Quarenta e nove",
|
66
66
|
"50": "Cinquenta",
|
67
|
-
"51": "Cinquenta e
|
68
|
-
"52": "Cinquenta e
|
69
|
-
"53": "Cinquenta e
|
70
|
-
"54": "Cinquenta e
|
71
|
-
"55": "Cinquenta e
|
72
|
-
"56": "Cinquenta e
|
73
|
-
"57": "Cinquenta e
|
74
|
-
"58": "Cinquenta e
|
75
|
-
"59": "Cinquenta e
|
67
|
+
"51": "Cinquenta e um",
|
68
|
+
"52": "Cinquenta e dois",
|
69
|
+
"53": "Cinquenta e três",
|
70
|
+
"54": "Cinquenta e quatro",
|
71
|
+
"55": "Cinquenta e cinco",
|
72
|
+
"56": "Cinquenta e seis",
|
73
|
+
"57": "Cinquenta e sete",
|
74
|
+
"58": "Cinquenta e oito",
|
75
|
+
"59": "Cinquenta e nove",
|
76
76
|
"60": "Sessenta",
|
77
|
-
"61": "Sessenta e
|
78
|
-
"62": "Sessenta e
|
79
|
-
"63": "Sessenta e
|
80
|
-
"64": "Sessenta e
|
81
|
-
"65": "Sessenta e
|
82
|
-
"66": "Sessenta e
|
83
|
-
"67": "Sessenta e
|
84
|
-
"68": "Sessenta e
|
85
|
-
"69": "Sessenta e
|
77
|
+
"61": "Sessenta e um",
|
78
|
+
"62": "Sessenta e dois",
|
79
|
+
"63": "Sessenta e três",
|
80
|
+
"64": "Sessenta e quatro",
|
81
|
+
"65": "Sessenta e cinco",
|
82
|
+
"66": "Sessenta e seis",
|
83
|
+
"67": "Sessenta e sete",
|
84
|
+
"68": "Sessenta e oito",
|
85
|
+
"69": "Sessenta e nove",
|
86
86
|
"70": "Setenta",
|
87
|
-
"71": "Setenta e
|
88
|
-
"72": "Setenta e
|
89
|
-
"73": "Setenta e
|
90
|
-
"74": "Setenta e
|
91
|
-
"75": "Setenta e
|
92
|
-
"76": "Setenta e
|
93
|
-
"77": "Setenta e
|
94
|
-
"78": "Setenta e
|
95
|
-
"79": "Setenta e
|
87
|
+
"71": "Setenta e um",
|
88
|
+
"72": "Setenta e dois",
|
89
|
+
"73": "Setenta e três",
|
90
|
+
"74": "Setenta e quatro",
|
91
|
+
"75": "Setenta e cinco",
|
92
|
+
"76": "Setenta e seis",
|
93
|
+
"77": "Setenta e sete",
|
94
|
+
"78": "Setenta e oito",
|
95
|
+
"79": "Setenta e nove",
|
96
96
|
"80": "Oitenta",
|
97
|
-
"81": "Oitenta e
|
98
|
-
"82": "Oitenta e
|
99
|
-
"83": "Oitenta e
|
100
|
-
"84": "Oitenta e
|
101
|
-
"85": "Oitenta e
|
102
|
-
"86": "Oitenta e
|
103
|
-
"87": "Oitenta e
|
104
|
-
"88": "Oitenta e
|
105
|
-
"89": "Oitenta e
|
97
|
+
"81": "Oitenta e um",
|
98
|
+
"82": "Oitenta e dois",
|
99
|
+
"83": "Oitenta e três",
|
100
|
+
"84": "Oitenta e quatro",
|
101
|
+
"85": "Oitenta e cinco",
|
102
|
+
"86": "Oitenta e seis",
|
103
|
+
"87": "Oitenta e sete",
|
104
|
+
"88": "Oitenta e oito",
|
105
|
+
"89": "Oitenta e nove",
|
106
106
|
"90": "Noventa",
|
107
|
-
"91": "Noventa e
|
108
|
-
"92": "Noventa e
|
109
|
-
"93": "Noventa e
|
110
|
-
"94": "Noventa e
|
111
|
-
"95": "Noventa e
|
112
|
-
"96": "Noventa e
|
113
|
-
"97": "Noventa e
|
114
|
-
"98": "Noventa e
|
115
|
-
"99": "Noventa e
|
107
|
+
"91": "Noventa e um",
|
108
|
+
"92": "Noventa e dois",
|
109
|
+
"93": "Noventa e três",
|
110
|
+
"94": "Noventa e quatro",
|
111
|
+
"95": "Noventa e cinco",
|
112
|
+
"96": "Noventa e seis",
|
113
|
+
"97": "Noventa e sete",
|
114
|
+
"98": "Noventa e oito",
|
115
|
+
"99": "Noventa e nove"
|
116
116
|
}
|
@@ -59,6 +59,7 @@ fmt_strike-md = nw_tb-strike-md.svg
|
|
59
59
|
fmt_subscript = nw_tb-subscript.svg
|
60
60
|
fmt_superscript = nw_tb-superscript.svg
|
61
61
|
fmt_underline = nw_tb-underline.svg
|
62
|
+
font = nw_font.svg
|
62
63
|
forward = typ_chevron-right.svg
|
63
64
|
import = mixed_import.svg
|
64
65
|
list = typ_th-list.svg
|
@@ -78,6 +79,7 @@ proj_scene = mixed_document-scene.svg
|
|
78
79
|
proj_section = mixed_document-section.svg
|
79
80
|
proj_stats = typ_chart-bar-grey.svg
|
80
81
|
proj_title = mixed_document-title.svg
|
82
|
+
quote = nw_quote.svg
|
81
83
|
refresh = typ_refresh.svg
|
82
84
|
remove = typ_minus.svg
|
83
85
|
revert = typ_refresh-flipped.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.3715 3.0659q-0.32092-0.25674-0.44928-0.44928-0.12836-0.19255-0.12837-0.44928 0-0.42361 0.28241-0.69319 0.28241-0.28241 0.68035-0.28241 0.25674 0 0.44928 0.10269 0.19255 0.089858 0.3466 0.23106 0.24391 0.4878 0.24391 1.0141 0 0.42361-0.14121 0.82157-0.12837 0.38511-0.37227 0.71886-0.23106 0.33377-0.55199 0.61618-0.30808 0.26958-0.65467 0.46213l-0.25674-0.41078q0.29525-0.21822 0.57766-0.53914 0.28241-0.33375 0.46213-0.73171zm2.7598 0q-0.32092-0.25674-0.44928-0.44928-0.12837-0.19255-0.12837-0.44928 0-0.42361 0.28241-0.69319 0.28241-0.28241 0.68035-0.28241 0.25674 0 0.44928 0.10269 0.19255 0.089858 0.3466 0.23106 0.24391 0.4878 0.24391 1.0141 0 0.42361-0.14121 0.82157-0.12837 0.38511-0.37227 0.71886-0.23106 0.33377-0.55199 0.61618-0.30808 0.26958-0.65467 0.46213l-0.25674-0.41078q0.29525-0.21822 0.57766-0.53914 0.28241-0.33375 0.46213-0.73171z" fill="#aeaeae" fill-opacity=".78039" stroke-width="1.8194"/>
|
4
|
+
</svg>
|
@@ -59,6 +59,7 @@ fmt_strike-md = nw_tb-strike-md.svg
|
|
59
59
|
fmt_subscript = nw_tb-subscript.svg
|
60
60
|
fmt_superscript = nw_tb-superscript.svg
|
61
61
|
fmt_underline = nw_tb-underline.svg
|
62
|
+
font = nw_font.svg
|
62
63
|
forward = typ_chevron-right.svg
|
63
64
|
import = mixed_import.svg
|
64
65
|
list = typ_th-list.svg
|
@@ -78,6 +79,7 @@ proj_scene = mixed_document-scene.svg
|
|
78
79
|
proj_section = mixed_document-section.svg
|
79
80
|
proj_stats = typ_chart-bar-grey.svg
|
80
81
|
proj_title = mixed_document-title.svg
|
82
|
+
quote = nw_quote.svg
|
81
83
|
refresh = typ_refresh.svg
|
82
84
|
remove = typ_minus.svg
|
83
85
|
revert = typ_refresh-flipped.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="m2.5744 5.8208v-4.2853h-1.4527v-1.0064h4.1067v1.0064h-1.4527v4.2853z" fill-opacity=".78039" stroke-width="1.1503"/>
|
4
|
+
</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.3715 3.0659q-0.32092-0.25674-0.44928-0.44928-0.12836-0.19255-0.12837-0.44928 0-0.42361 0.28241-0.69319 0.28241-0.28241 0.68035-0.28241 0.25674 0 0.44928 0.10269 0.19255 0.089858 0.3466 0.23106 0.24391 0.4878 0.24391 1.0141 0 0.42361-0.14121 0.82157-0.12837 0.38511-0.37227 0.71886-0.23106 0.33377-0.55199 0.61618-0.30808 0.26958-0.65467 0.46213l-0.25674-0.41078q0.29525-0.21822 0.57766-0.53914 0.28241-0.33375 0.46213-0.73171zm2.7598 0q-0.32092-0.25674-0.44928-0.44928-0.12837-0.19255-0.12837-0.44928 0-0.42361 0.28241-0.69319 0.28241-0.28241 0.68035-0.28241 0.25674 0 0.44928 0.10269 0.19255 0.089858 0.3466 0.23106 0.24391 0.4878 0.24391 1.0141 0 0.42361-0.14121 0.82157-0.12837 0.38511-0.37227 0.71886-0.23106 0.33377-0.55199 0.61618-0.30808 0.26958-0.65467 0.46213l-0.25674-0.41078q0.29525-0.21822 0.57766-0.53914 0.28241-0.33375 0.46213-0.73171z" fill-opacity=".78039" stroke-width="1.8194"/>
|
4
|
+
</svg>
|
novelwriter/assets/manual.pdf
CHANGED
Binary file
|
novelwriter/assets/sample.zip
CHANGED
Binary file
|
@@ -12,15 +12,17 @@ link = 77, 077, 255
|
|
12
12
|
headertext = 255, 255, 255
|
13
13
|
headertag = 50, 0, 180
|
14
14
|
emphasis = 0, 255, 255
|
15
|
-
|
16
|
-
|
17
|
-
|
15
|
+
dialog = 0, 255, 0
|
16
|
+
altdialog = 0, 140, 255
|
17
|
+
note = 150, 150, 150
|
18
18
|
hidden = 77, 77, 100
|
19
19
|
shortcode = 255, 255, 0
|
20
20
|
keyword = 255, 100, 255
|
21
|
+
tag = 255, 150, 10
|
21
22
|
value = 255, 150, 10
|
22
23
|
spellcheckline = 242, 72, 23
|
23
24
|
errorline = 186, 218, 4
|
24
25
|
replacetag = 0, 0, 180
|
25
26
|
modifier = 144, 142, 176
|
26
27
|
optional = 180, 180, 180
|
28
|
+
texthighlight = 255, 255, 132, 96
|
@@ -6,23 +6,37 @@ url = https://github.com/vkbo/novelWriter
|
|
6
6
|
license = CC BY-SA 4.0
|
7
7
|
licenseurl = https://creativecommons.org/licenses/by-sa/4.0/
|
8
8
|
|
9
|
+
##
|
10
|
+
# Colours:
|
11
|
+
# Background = 2a2a2a : 42, 42, 42
|
12
|
+
# Foreground = cccccc : 204, 204, 204
|
13
|
+
# Comment = 969696 : 150, 150, 150
|
14
|
+
# Red = e64250 : 230, 66, 80
|
15
|
+
# Orange = f99157 : 249, 145, 87
|
16
|
+
# Yellow = ffff84 : 255, 255, 132
|
17
|
+
# Green = 99cc99 : 153, 204, 153
|
18
|
+
# Blue = 288ed7 : 102, 153, 204
|
19
|
+
# Purple = 8c56d7 : 140, 86, 215
|
20
|
+
##
|
21
|
+
|
9
22
|
[Syntax]
|
10
|
-
background =
|
11
|
-
text =
|
12
|
-
link =
|
13
|
-
headertext =
|
14
|
-
headertag =
|
15
|
-
emphasis =
|
16
|
-
|
17
|
-
|
18
|
-
|
23
|
+
background = 42, 42, 42
|
24
|
+
text = 204, 204, 204
|
25
|
+
link = 102, 153, 204
|
26
|
+
headertext = 153, 204, 153
|
27
|
+
headertag = 153, 204, 153, 160
|
28
|
+
emphasis = 249, 145, 87
|
29
|
+
dialog = 102, 153, 204
|
30
|
+
altdialog = 102, 153, 204
|
31
|
+
note = 255, 255, 216
|
19
32
|
hidden = 150, 150, 150
|
20
|
-
shortcode =
|
21
|
-
keyword =
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
33
|
+
shortcode = 153, 204, 153
|
34
|
+
keyword = 230, 66, 80
|
35
|
+
tag = 153, 204, 153
|
36
|
+
value = 102, 153, 204
|
37
|
+
optional = 153, 204, 153
|
38
|
+
spellcheckline = 230, 66, 80
|
39
|
+
errorline = 153, 204, 153
|
40
|
+
replacetag = 153, 204, 153
|
41
|
+
modifier = 153, 204, 153
|
42
|
+
texthighlight = 255, 255, 132, 96
|
@@ -6,23 +6,37 @@ url = https://github.com/vkbo/novelWriter
|
|
6
6
|
license = CC BY-SA 4.0
|
7
7
|
licenseurl = https://creativecommons.org/licenses/by-sa/4.0/
|
8
8
|
|
9
|
+
##
|
10
|
+
# Colours:
|
11
|
+
# Background = ffffff : 255, 255, 255
|
12
|
+
# Foreground = 000000 : 0, 0, 0
|
13
|
+
# Comment = 646464 : 100, 100, 100
|
14
|
+
# Red = c83232 : 200, 50, 50
|
15
|
+
# Orange = ae6e1e : 174, 110, 30
|
16
|
+
# Yellow = 969600 : 150, 150, 0
|
17
|
+
# Green = 006400 : 0, 100, 0
|
18
|
+
# Blue = 0000c8 : 0, 0, 200
|
19
|
+
# Purple = 6400ae : 100, 0, 174
|
20
|
+
##
|
21
|
+
|
9
22
|
[Syntax]
|
10
23
|
background = 255, 255, 255
|
11
24
|
text = 0, 0, 0
|
12
25
|
link = 0, 0, 200
|
13
26
|
headertext = 0, 100, 0
|
14
|
-
headertag =
|
15
|
-
emphasis =
|
16
|
-
|
17
|
-
|
18
|
-
|
27
|
+
headertag = 0, 100, 0, 160
|
28
|
+
emphasis = 174, 110, 30
|
29
|
+
dialog = 0, 0, 200
|
30
|
+
altdialog = 0, 0, 200
|
31
|
+
note = 100, 100, 0
|
19
32
|
hidden = 100, 100, 100
|
20
33
|
shortcode = 0, 100, 0
|
21
34
|
keyword = 200, 50, 50
|
22
|
-
|
35
|
+
tag = 0, 100, 0
|
36
|
+
value = 0, 0, 200
|
23
37
|
optional = 0, 100, 0
|
24
|
-
spellcheckline = 200,
|
25
|
-
errorline = 0,
|
26
|
-
replacetag = 0,
|
27
|
-
modifier =
|
38
|
+
spellcheckline = 200, 50, 50
|
39
|
+
errorline = 0, 100, 0
|
40
|
+
replacetag = 0, 100, 0
|
41
|
+
modifier = 0, 100, 0
|
28
42
|
texthighlight = 150, 150, 0, 96
|
@@ -0,0 +1,44 @@
|
|
1
|
+
[Main]
|
2
|
+
name = Dracula
|
3
|
+
author = Veronica Berglyd Olsen (adaptation)
|
4
|
+
credit = Zeno Rocha
|
5
|
+
url = https://draculatheme.com
|
6
|
+
license = MIT
|
7
|
+
licenseurl = https://github.com/dracula/dracula-theme/blob/main/LICENSE
|
8
|
+
|
9
|
+
##
|
10
|
+
# Colours:
|
11
|
+
# Background = 282a36 : 40, 42, 54
|
12
|
+
# Foreground = f8f8f2 : 248, 248, 242
|
13
|
+
# Comment = 6272a4 : 98, 114, 164
|
14
|
+
# Cyan = 8be9fd : 139, 233, 253
|
15
|
+
# Green = 50fa7b : 80, 250, 123
|
16
|
+
# Orange = ffb86c : 255, 184, 108
|
17
|
+
# Pink = ff79c6 : 255, 121, 198
|
18
|
+
# Purple = bd93f9 : 189, 147, 249
|
19
|
+
# Red = ff5555 : 255, 85, 85
|
20
|
+
# Yellow = f1fa8c : 241, 250, 140
|
21
|
+
##
|
22
|
+
|
23
|
+
[Syntax]
|
24
|
+
# See: https://spec.draculatheme.com/
|
25
|
+
background = 40, 42, 54
|
26
|
+
text = 248, 248, 242
|
27
|
+
link = 255, 121, 198
|
28
|
+
headertext = 189, 147, 249
|
29
|
+
headertag = 189, 147, 249, 160
|
30
|
+
emphasis = 255, 184, 108
|
31
|
+
dialog = 80, 250, 123
|
32
|
+
altdialog = 241, 250, 140
|
33
|
+
note = 255, 204, 233
|
34
|
+
hidden = 98, 114, 164
|
35
|
+
shortcode = 139, 233, 253
|
36
|
+
keyword = 255, 121, 198
|
37
|
+
tag = 255, 184, 108
|
38
|
+
value = 255, 184, 108
|
39
|
+
optional = 80, 250, 123
|
40
|
+
spellcheckline = 255, 85, 85
|
41
|
+
errorline = 80, 250, 123
|
42
|
+
replacetag = 241, 250, 140
|
43
|
+
modifier = 139, 233, 253
|
44
|
+
texthighlight = 241, 250, 140, 96
|
@@ -11,14 +11,15 @@ background = 54, 54, 54
|
|
11
11
|
text = 200, 200, 200
|
12
12
|
link = 200, 200, 200
|
13
13
|
headertext = 225, 225, 225
|
14
|
-
headertag = 225, 225, 225
|
14
|
+
headertag = 225, 225, 225, 160
|
15
15
|
emphasis = 200, 200, 200
|
16
|
-
|
17
|
-
|
18
|
-
|
16
|
+
dialog = 200, 200, 200
|
17
|
+
altdialog = 200, 200, 200
|
18
|
+
note = 200, 200, 200
|
19
19
|
hidden = 150, 150, 150
|
20
20
|
shortcode = 225, 225, 225
|
21
21
|
keyword = 225, 225, 225
|
22
|
+
tag = 200, 200, 200
|
22
23
|
value = 200, 200, 200
|
23
24
|
optional = 225, 225, 225
|
24
25
|
spellcheckline = 200, 46, 0
|
@@ -11,14 +11,15 @@ background = 255, 255, 255
|
|
11
11
|
text = 20, 20, 20
|
12
12
|
link = 20, 20, 20
|
13
13
|
headertext = 0, 0, 0
|
14
|
-
headertag = 0, 0, 0
|
14
|
+
headertag = 0, 0, 0, 160
|
15
15
|
emphasis = 20, 20, 20
|
16
|
-
|
17
|
-
|
18
|
-
|
16
|
+
dialog = 20, 20, 20
|
17
|
+
altdialog = 20, 20, 20
|
18
|
+
note = 20, 20, 20
|
19
19
|
hidden = 100, 100, 100
|
20
20
|
shortcode = 0, 0, 0
|
21
21
|
keyword = 0, 0, 0
|
22
|
+
tag = 20, 20, 20
|
22
23
|
value = 20, 20, 20
|
23
24
|
optional = 0, 0, 0
|
24
25
|
spellcheckline = 200, 0, 0
|
@@ -31,18 +31,19 @@ background = 251, 251, 251
|
|
31
31
|
text = 64, 63, 82
|
32
32
|
link = 40, 142, 215
|
33
33
|
headertext = 40, 142, 215
|
34
|
-
headertag = 40, 142, 215
|
34
|
+
headertag = 40, 142, 215, 160
|
35
35
|
emphasis = 224, 175, 5
|
36
|
-
|
37
|
-
|
38
|
-
|
36
|
+
dialog = 8, 145, 106
|
37
|
+
altdialog = 218, 170, 1
|
38
|
+
note = 128, 118, 75
|
39
39
|
hidden = 152, 159, 177
|
40
40
|
shortcode = 40, 142, 215
|
41
41
|
keyword = 222, 61, 58
|
42
|
-
|
42
|
+
tag = 150, 74, 193
|
43
|
+
value = 224, 175, 5
|
43
44
|
optional = 40, 142, 215
|
44
45
|
spellcheckline = 222, 61, 58
|
45
46
|
errorline = 8, 145, 106
|
46
47
|
replacetag = 42, 162, 152
|
47
|
-
modifier =
|
48
|
+
modifier = 8, 145, 106
|
48
49
|
texthighlight = 218, 170, 1, 96
|
@@ -31,18 +31,19 @@ background = 1, 22, 39
|
|
31
31
|
text = 214, 222, 235
|
32
32
|
link = 130, 170, 255
|
33
33
|
headertext = 130, 170, 255
|
34
|
-
headertag = 130, 170, 255
|
34
|
+
headertag = 130, 170, 255, 160
|
35
35
|
emphasis = 236, 196, 141
|
36
|
-
|
37
|
-
|
38
|
-
|
36
|
+
dialog = 173, 219, 103
|
37
|
+
altdialog = 255, 235, 149
|
38
|
+
note = 255, 249, 202
|
39
39
|
hidden = 99, 119, 119
|
40
40
|
shortcode = 130, 170, 255
|
41
41
|
keyword = 247, 140, 108
|
42
|
-
|
42
|
+
tag = 199, 146, 234
|
43
|
+
value = 255, 235, 149
|
43
44
|
optional = 130, 170, 255
|
44
45
|
spellcheckline = 247, 140, 108
|
45
46
|
errorline = 173, 219, 103
|
46
47
|
replacetag = 127, 219, 202
|
47
|
-
modifier =
|
48
|
+
modifier = 173, 219, 103
|
48
49
|
texthighlight = 255, 235, 149, 96
|