0.8.3 final
This commit is contained in:
parent
4796e82f3c
commit
f07aeef314
|
|
@ -1,4 +1,4 @@
|
|||
0.8.3 / 2020-05-24 Fabian Kurz <fabian@fkurz.net>
|
||||
0.8.3 / 2020-05-23 Fabian Kurz <fabian@fkurz.net>
|
||||
* Added lowercase Greek alphabet
|
||||
* Added multiple language support by GNU gettext.
|
||||
* Added text command |Sx will add x (1 < x < 20000) milliseconds
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
.TH ebook2cw 1 "APRIL 2020" Linux "User Manuals"
|
||||
.TH ebook2cw 1 "MAY 2020" Linux "User Manuals"
|
||||
.SH NAME
|
||||
ebook2cw \- Convert ebooks to Morse code audio files (MP3/OGG)
|
||||
.SH SYNOPSIS
|
||||
|
|
|
|||
|
|
@ -220,6 +220,7 @@ int main (int argc, char** argv) {
|
|||
int pos, i, c, tmp;
|
||||
char word[1024]=""; /* will be cut when > 1024 chars long */
|
||||
int chapter = 0;
|
||||
int download = 0; /* CGI: Send content-disposition header? */
|
||||
int chw = 0, tw = 0; /* chapter words, total words */
|
||||
int chms = 0, tms = 0, qms = 0; /* millisec: chapter, total, since qrq */
|
||||
time_t start_time, end_time; /* conversion time */
|
||||
|
|
@ -382,10 +383,6 @@ cw.encoding = UTF8;
|
|||
* s=25&e=20&f=600&t=text => return normal file
|
||||
*/
|
||||
|
||||
int download = 0;
|
||||
|
||||
printf("QS: >%s<\n", querystring);
|
||||
|
||||
if (querystring[0] == 'd') {
|
||||
sscanf(querystring, "d=%d&s=%d&e=%d&f=%d&t=%9000s", &download, &cw.wpm, &cw.farnsworth, &cw.freq, text);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue