Add licence notices

(thanks to Stephance F8CFE for the reminder)
Tweak About dialog html
pull/2/head
Stelios Bounanos 2008-10-11 23:57:43 +01:00
rodzic 62b901f7b6
commit e9ddc8f2a0
3 zmienionych plików z 17 dodań i 11 usunięć

Wyświetl plik

@ -38,6 +38,7 @@ AC_CONFIG_HEADER([src/config.h])
AC_CONFIG_MACRO_DIR([m4])
AC_DEFINE([PACKAGE_AUTHORS], ["Dave Freese, Stelios Bounanos, Leigh Klotz, and others"], [Authors])
AC_DEFINE([PACKAGE_HOME], ["http://www.w1hkj.com/Fldigi.html"], [Home page])
AC_DEFINE([PACKAGE_PROJ], ["http://developer.berlios.de/project/showfiles.php?group_id=9149"], [BerliOS page])
AC_DEFINE([PACKAGE_DOCS], ["http://www.w1hkj.com/FldigiHelp/index.html"], [Docs index])

Wyświetl plik

@ -548,31 +548,30 @@ char szAbout[] =
"<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">\
<html>\
<head>\
<title>about</title>\
<title>About</title>\
</head>\
<BODY BGCOLOR=FFFFCO TEXT=101010>\
<font size=\"0\" face=\"Verdana, Arial, Helvetica\">\
<CENTER>\
<H1><I>Fldigi " PACKAGE_VERSION "</I></H1>\
<br>\
</CENTER>\
<H4>Digital modem program for</H4><br>\
<P>\
<H4>Digital modem program for:</H4>\
&nbsp; &nbsp; &nbsp;Linux<br>\
&nbsp; &nbsp; &nbsp;FreeBSD<br>\
&nbsp; &nbsp; &nbsp;OS X<br>\
&nbsp; &nbsp; &nbsp;Windows<br>\
<br>\
<H4>Programmers:</H4><br>\
<P>\
<H4>Programmers:</H4>\
&nbsp; &nbsp; &nbsp;Dave Freese, W1HKJ<br>\
&nbsp; &nbsp; &nbsp;Stelios Bounanos, M0GLD<br>\
&nbsp; &nbsp; &nbsp;Leigh Klotz, WA5ZNU<br>\
<br>\
<H4>Beginners' Guide:</H4><br>\
<P>\
<H4>Beginners' Guide:</H4>\
&nbsp; &nbsp; &nbsp;Murray Greenman, ZL1BPU<br>\
</big>\
<br>\
<P>\
Distributed under the GNU General Public License version 2 or later.<br>\
This is free software: you are free to change and redistribute it.<br>\
There is NO WARRANTY, to the extent permitted by law.\
</body>\
</html>\
";

Wyświetl plik

@ -630,7 +630,13 @@ int parse_args(int argc, char **argv, int& idx)
void generate_version_text(void)
{
ostringstream s;
s << PACKAGE_NAME << ' ' << PACKAGE_VERSION << "\n\nSystem: ";
s << PACKAGE_STRING << '\n'
<< "Copyright (c) 2008 " << PACKAGE_AUTHORS << '\n'
<< "License GPLv2+: GNU GPL version 2 or later <http://www.gnu.org/licenses/old-licenses/gpl-2.0.html>\n"
<< "This is free software: you are free to change and redistribute it.\n"
<< "There is NO WARRANTY, to the extent permitted by law.\n";
s << "\nSystem: ";
struct utsname u;
if (uname(&u) != -1) {
s << u.sysname << ' ' << u.nodename