1 |
|
1 |
|
2 |
|
2 |
|
3 |
THE SVARDOS EDITOR
|
3 |
THE SVARDOS EDITOR
|
4 |
|
4 |
|
5 |
|
5 |
|
6 |
### WHAT IT IS ###############################################################
|
6 |
### WHAT IT IS ###############################################################
|
7 |
|
7 |
|
8 |
The SvarDOS editor (SVED) is designed for basic editing of configuration files
|
8 |
The SvarDOS editor (SVED) is designed for basic editing of configuration files
|
9 |
and such. It is NOT meant to be a full-featured text editor. On the pro side,
|
9 |
and such. It is NOT meant to be a full-featured text editor. On the pro side,
|
10 |
it has a low memory footprint and is only a couple kilobytes big, which makes
|
10 |
it has a low memory footprint and is only a couple kilobytes big, which makes
|
11 |
it a good fit for bootdisks and systems with extremely limited resources.
|
11 |
it a good fit for bootdisks and systems with extremely limited resources.
|
12 |
|
12 |
|
13 |
- runs comfortably on a 8086-class PC with 256 KiB of RAM
|
13 |
- runs comfortably on a 8086-class PC with 256 KiB of RAM
|
14 |
- auto-detects color and monochrome video modes
|
14 |
- auto-detects color and monochrome video modes
|
15 |
- supports unusual text modes like 80x43, 80x50, 132x60, 40x25...
|
15 |
- supports unusual text modes like 80x43, 80x50, 132x60, 40x25...
|
16 |
- multilingual UI
|
16 |
- multilingual UI
|
17 |
- only 6 KiB of disk footprint
|
17 |
- only 6 KiB of disk footprint
|
18 |
- screen estate dedicated to text (no stupid frames, menus and such)
|
18 |
- screen estate dedicated to text (no stupid frames, menus and such)
|
19 |
- loads files larger than 64 KiB (limited to available conventional memory)
|
19 |
- loads files larger than 64 KiB (limited to available conventional memory)
|
20 |
- no line length limit
|
20 |
- no line length limit
|
21 |
- can load up to 10 files simultaneously
|
21 |
- can load up to 10 files simultaneously
|
22 |
- COPY/CUT/PASTE between files
|
22 |
- COPY/CUT/PASTE between files
|
23 |
- handles CR/LF and LF line endings and can convert between the two
|
23 |
- handles CR/LF and LF line endings and can convert between the two
|
24 |
|
24 |
|
25 |
What SVED does NOT have:
|
25 |
What SVED does NOT have:
|
26 |
|
26 |
|
27 |
- mouse support
|
27 |
- mouse support
|
28 |
- an integrated file browser
|
28 |
- an integrated file browser
|
29 |
- undo
|
29 |
- undo
|
30 |
- search
|
30 |
- search
|
31 |
- ...
|
31 |
- ...
|
32 |
|
32 |
|
33 |
|
33 |
|
34 |
### USAGE AND KEY BINDINGS ###################################################
|
34 |
### USAGE AND KEY BINDINGS ###################################################
|
35 |
|
35 |
|
36 |
Navigation within the text file is achieved through the usual, standard keys:
|
36 |
Navigation within the text file is achieved through the usual, standard keys:
|
37 |
- up, down, right and left arrows
|
37 |
- up, down, right and left arrows
|
38 |
- PageUp / PageDown
|
38 |
- PageUp / PageDown
|
39 |
- Home / End
|
39 |
- Home / End
|
40 |
|
40 |
|
41 |
On top of these, the following key bindings are available:
|
41 |
On top of these, the following key bindings are available:
|
42 |
|
42 |
|
43 |
ESC = access the program's menu
|
43 |
ESC = access the program's menu
|
44 |
CTRL+RIGHT = jump to next word
|
44 |
CTRL+RIGHT = jump to next word
|
45 |
CTRL+LEFT = jump to previous word
|
45 |
CTRL+LEFT = jump to previous word
|
46 |
CTRL+C = copy the current line to clipboard
|
46 |
CTRL+C = copy the current line to clipboard
|
47 |
CTRL+X = cut the current line and move it to clipboard
|
47 |
CTRL+X = cut the current line and move it to clipboard
|
48 |
CTRL+V = paste the clipboard content to current location
|
48 |
CTRL+V = paste the clipboard content to current location
|
49 |
|
49 |
|
50 |
SVED can load up to 10 files simultaneously. To switch from one file to
|
50 |
SVED can load up to 10 files simultaneously. To switch from one file to
|
51 |
another use the F1..F10 function keys (F1 = file 1, F2 = file 2, etc).
|
51 |
another use the F1..F10 function keys (F1 = file 1, F2 = file 2, etc).
|
52 |
|
52 |
|
53 |
|
53 |
|
54 |
### MULTILINGUAL SUPPORT #####################################################
|
54 |
### MULTILINGUAL SUPPORT #####################################################
|
55 |
|
55 |
|
56 |
The LNG file contains non-english strings. It should be placed in the same
|
56 |
The LNG file contains non-english strings. It should be placed in the same
|
57 |
directory where the program's executable resides. The UI language is
|
57 |
directory where the program's executable resides. The UI language is
|
58 |
controlled by the LANG environment variable, for example SET LANG=PL would
|
58 |
controlled by the LANG environment variable, for example SET LANG=PL would
|
59 |
make it display polish strings.
|
59 |
make it display polish strings.
|
60 |
Following LANG settings are supported: DE EN FR PL RU TR.
|
60 |
Following LANG settings are supported: DE EN FR PL RU TR.
|
61 |
|
61 |
|
62 |
If you rename the SVED.COM executable (for example to EDIT.COM), then you need
|
62 |
If you rename the SVED.COM executable (for example to EDIT.COM), then you need
|
63 |
to rename the LNG file accordingly (for example to EDIT.LNG).
|
63 |
to rename the LNG file accordingly (for example to EDIT.LNG).
|
64 |
|
64 |
|
65 |
You can safely delete the LNG file if you are happy with an english-only UI
|
65 |
You can safely delete the LNG file if you are happy with an english-only UI
|
66 |
and wish to free a bit of disk space.
|
66 |
and wish to free a bit of disk space.
|
67 |
|
67 |
|
68 |
|
68 |
|
69 |
### CHANGELOG ################################################################
|
69 |
### CHANGELOG ################################################################
|
70 |
|
70 |
|
71 |
2024.1 [xx xxx 2024]
|
71 |
2024.1 [xx xxx 2024]
|
72 |
- fixed tab-less mode (/t), got broken in 2024.0 making sved freeze
|
72 |
- fixed tab-less mode (/t), got broken in 2024.0 making sved freeze
|
- |
|
73 |
- fixed a register trashing during file save (potential cause of crash)
|
73 |
- updated german translations, courtesy of Robert Riebisch
|
74 |
- updated german translations, courtesy of Robert Riebisch
|
74 |
|
75 |
|
75 |
2024.0 [22 Feb 2024]
|
76 |
2024.0 [22 Feb 2024]
|
76 |
- TAB jumps to nearest 8-chars boundary instead of always inserting 8 blanks
|
77 |
- TAB jumps to nearest 8-chars boundary instead of always inserting 8 blanks
|
77 |
|
78 |
|
78 |
2023.5 [15 Nov 2023]
|
79 |
2023.5 [15 Nov 2023]
|
79 |
- modified files can be saved at exit time with the space key
|
80 |
- modified files can be saved at exit time with the space key
|
80 |
- fix: CTRL+X and CTRL+V were not flagging the file as "modified"
|
81 |
- fix: CTRL+X and CTRL+V were not flagging the file as "modified"
|
81 |
- improved compatibility with DOS 2.x
|
82 |
- improved compatibility with DOS 2.x
|
82 |
- removed the Watcom RTL; HUGE thanks to Bernd Boeckmann for WMINCRT
|
83 |
- removed the Watcom RTL; HUGE thanks to Bernd Boeckmann for WMINCRT
|
83 |
- SVED's disk footprint decreased from 7K to 6K
|
84 |
- SVED's disk footprint decreased from 7K to 6K
|
84 |
|
85 |
|
85 |
2023.4 [27 Aug 2023]
|
86 |
2023.4 [27 Aug 2023]
|
86 |
- added german translation, credits to Bernd Boeckmann
|
87 |
- added german translation, credits to Bernd Boeckmann
|
87 |
|
88 |
|
88 |
2023.3 [13 Aug 2023]
|
89 |
2023.3 [13 Aug 2023]
|
89 |
- added turkish translation, courtesy of Berki Yenigun
|
90 |
- added turkish translation, courtesy of Berki Yenigun
|
90 |
|
91 |
|
91 |
2023.2 [07 Aug 2023]
|
92 |
2023.2 [07 Aug 2023]
|
92 |
- added french translations
|
93 |
- added french translations
|
93 |
- fixed saving to new file when filename was passed on command-line
|
94 |
- fixed saving to new file when filename was passed on command-line
|
94 |
|
95 |
|
95 |
2023.1 [07 Aug 2023]
|
96 |
2023.1 [07 Aug 2023]
|
96 |
- fixed onscreen garbage when opening a non-existent file (sved notexist.txt)
|
97 |
- fixed onscreen garbage when opening a non-existent file (sved notexist.txt)
|
97 |
- abort with error when an invalid filename is given as argument (sved *)
|
98 |
- abort with error when an invalid filename is given as argument (sved *)
|
98 |
|
99 |
|
99 |
2023.0 [07 Aug 2023]
|
100 |
2023.0 [07 Aug 2023]
|
100 |
- initial release
|
101 |
- initial release
|
101 |
|
102 |
|
102 |
|
103 |
|
103 |
### LICENSE ##################################################################
|
104 |
### LICENSE ##################################################################
|
104 |
|
105 |
|
105 |
The SvarDOS editor (SVED) is released under the terms of the MIT license.
|
106 |
The SvarDOS editor (SVED) is released under the terms of the MIT license.
|
106 |
|
107 |
|
107 |
Copyright (C) 2023-2024 Mateusz Viste
|
108 |
Copyright (C) 2023-2024 Mateusz Viste
|
108 |
|
109 |
|
109 |
Permission is hereby granted, free of charge, to any person obtaining a copy
|
110 |
Permission is hereby granted, free of charge, to any person obtaining a copy
|
110 |
of this software and associated documentation files (the "Software"), to deal
|
111 |
of this software and associated documentation files (the "Software"), to deal
|
111 |
in the Software without restriction, including without limitation the rights
|
112 |
in the Software without restriction, including without limitation the rights
|
112 |
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
113 |
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
113 |
copies of the Software, and to permit persons to whom the Software is
|
114 |
copies of the Software, and to permit persons to whom the Software is
|
114 |
furnished to do so, subject to the following conditions:
|
115 |
furnished to do so, subject to the following conditions:
|
115 |
|
116 |
|
116 |
The above copyright notice and this permission notice shall be included in
|
117 |
The above copyright notice and this permission notice shall be included in
|
117 |
all copies or substantial portions of the Software.
|
118 |
all copies or substantial portions of the Software.
|
118 |
|
119 |
|
119 |
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
120 |
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
120 |
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
121 |
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
121 |
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
122 |
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
122 |
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
123 |
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
123 |
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
124 |
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
124 |
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
125 |
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
125 |
SOFTWARE.
|
126 |
SOFTWARE.
|
126 |
|
127 |
|
127 |
|
128 |
|
128 |
###################################################################### EOF ###
|
129 |
###################################################################### EOF ###
|
129 |
|
130 |
|