Subversion Repositories SvarDOS

Rev

Rev 1586 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1586 Rev 1789
1
<?php
1
<?php
2
 
2
 
3
$PROJNAME = 'SVED';
3
$PROJNAME = 'SVED';
4
$SHORT = 'the SvarDOS text editor';
4
$SHORT = 'the SvarDOS text editor';
5
 
5
 
6
$LONGHTML = '
6
$LONGHTML = '
7
<p>The SvarDOS editor (SVED) is designed for basic editing of configuration files
7
<p>The SvarDOS editor (SVED) is designed for basic editing of configuration files
8
and such. It is NOT meant to be a full-featured text editor. On the pro side,
8
and such. It is NOT meant to be a full-featured text editor. On the pro side,
9
it has a low memory footprint and is only a couple kilobytes big, which makes
9
it has a low memory footprint and is only a couple kilobytes big, which makes
10
it a good fit for bootdisks or systems with extremely limited resources.</p>
10
it a good fit for bootdisks or systems with extremely limited resources.</p>
11
 
11
 
12
<ul>
12
<ul>
13
<li>runs comfortably on a 8086-class PC with 256 KiB of RAM</li>
13
<li>runs comfortably on a 8086-class PC with 256 KiB of RAM</li>
14
<li>auto-detects color and monochrome video modes</li>
14
<li>auto-detects color and monochrome video modes</li>
15
<li>supports unusual text modes like 80x43, 80x50, 132x60, 40x25...</li>
15
<li>supports unusual text modes like 80x43, 80x50, 132x60, 40x25...</li>
16
<li>multilingual UI</li>
16
<li>multilingual UI</li>
17
<li>only 6 KiB of disk footprint</li>
17
<li>only 6 KiB of disk footprint</li>
18
<li>screen estate dedicated to text (no stupid frames, menus and such)</li>
18
<li>screen estate dedicated to text (no stupid frames, menus and such)</li>
19
<li>loads files larger than 64 KiB</li>
19
<li>loads files larger than 64 KiB</li>
20
<li>no line length limit</li>
20
<li>no line length limit</li>
21
<li>can load up to 10 files simultaneously</li>
21
<li>can load up to 10 files simultaneously</li>
22
<li>COPY/CUT/PASTE between files</li>
22
<li>COPY/CUT/PASTE between files</li>
23
<li>handles CR/LF and LF line endings and can convert between them</li>
23
<li>handles CR/LF and LF line endings and can convert between them</li>
24
</ul>
24
</ul>
25
';
25
';
26
 
26
 
27
$COPYRDATE = '2023';
27
$COPYRDATE = '2023-2024';
28
 
28
 
29
?>
29
?>
30
 
30