Added some info on how the Auto Update systems works to the FAQ document. Also added a "dummy" Manual file.
This commit is contained in:
parent
e4d414b822
commit
a6c55c69c2
20
doc/FAQ.html
20
doc/FAQ.html
@ -37,6 +37,7 @@ a:visited { color: #0000EE; }
|
||||
<li><a href="#900a2a6c">Is there a way to hide/show the LameXP console ("DOS Box") window?</a>
|
||||
<li><a href="#9b0a5c32">Why does application 'xyz' not open the Wave files created by LameXP?</a>
|
||||
<li><a href="#89cbd3d0">Why does LameXP run (only) N instances/threads in parallel on my computer?</a>
|
||||
<li><a href="#454e51dd">Why does LameXP try to connect to the web-server at 'xyz.com' secretly?</a>
|
||||
<li><a href="#12d077d5">How can I force LameXP to create ID3 version 2 (ID3v2) tags?</a>
|
||||
<li><a href="#d83ab3c6">Why does LameXP use LAME v3.99 rather than v3.98?</a><br>
|
||||
<li><a href="#4213adbc">Can LameXP be used to convert/extract tracks from an Audio CD?</a>
|
||||
@ -508,6 +509,25 @@ thus a single encoder instance may create several threads - LameXP has no contro
|
||||
|
||||
<br><br>
|
||||
|
||||
<a name="454e51dd"></a><b>Why does LameXP try to connect to the web-server at 'xyz.com' secretly?</b><br>
|
||||
<br>
|
||||
LameXP does NOT connect to any web-server secretly! Of course the 'Auto Update' feature of LameXP unavoidably<br>
|
||||
has to connect to one of our update servers. However in no event LameXP will search for updates without your<br>
|
||||
agreement. Also LameXP will NOT send any personal information to the update server. It won't even send your<br>
|
||||
program version to the server. Instead the latest version number will be downloaded from the server first and<br>
|
||||
will then be compared to your current version number on the local computer. Moreover all information obtained<br>
|
||||
from the update server are protected with a digital signature (GnuPG) in order to prevent spoofing attacks.<br>
|
||||
<br>
|
||||
Note: As LameXP is a non-profit project, we cannot afford a huge server infrastructure. Therefore the update<br>
|
||||
server may be overstrained or unavailable once in a while. As we need to be able to distinguish the case in<br>
|
||||
which our server is failing from the case in which your local internet connection has a problem, LameXP will<br>
|
||||
run a short connectivity test on your local system first. For this purpose LameXP contains a list of 64 known<br>
|
||||
hosts, taken (mostly) from the well-known Alexa 'top 500 sites on the web' listing. LameXP will assume that<br>
|
||||
your internet connection is working properly if a certain minimum number (currently four) of the known hosts<br>
|
||||
is reachable. That's also the reason why you may notice LameXP is trying to connect to a "random" web-site.<br><br>
|
||||
|
||||
<br><br>
|
||||
|
||||
<a name="12d077d5"></a><b>How can I force LameXP to create ID3 version 2 (ID3v2) tags?</b><br>
|
||||
<br>
|
||||
The LAME encoder automatically chooses the proper ID3 tag version. By default it will create a version 1 tag,<br>
|
||||
|
28
doc/Manual.html
Normal file
28
doc/Manual.html
Normal file
@ -0,0 +1,28 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<title>LameXP - User Manual</title>
|
||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
body { font-family:Monospace; font-size:10pt; }
|
||||
a { text-decoration:none; color:#0000EE; transition:color 0.5s ease; -moz-transition:background-color 0.5s ease; -o-transition:background-color 0.5s ease; -webkit-transition:background-color 0.5s ease; }
|
||||
a:hover { background-color: #CCCCCC; }
|
||||
a:active { color: #551A8B; }
|
||||
a:visited { color: #0000EE; }
|
||||
-->
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h3>LameXP - User Manual</h3>
|
||||
<br>
|
||||
<img src="http://img840.imageshack.us/img840/873/pagenotfoundman.jpg" alt="404" style="border-style:solid;border-width:1px;border-color:LightSteelBlue"><br>
|
||||
<br>
|
||||
<br>
|
||||
Sorry, there is no LameXP user manual (yet), but we have an extensive F.A.Q. document ;-)<br>
|
||||
<br>
|
||||
Please have a look at <b><a href="FAQ.html">FAQ.html</a></b>, it will probably answer your question!<br>
|
||||
<br>
|
||||
<br>
|
||||
eof
|
||||
</body></html>
|
@ -30,7 +30,7 @@
|
||||
#define VER_LAMEXP_MINOR_LO 4
|
||||
#define VER_LAMEXP_TYPE Alpha
|
||||
#define VER_LAMEXP_PATCH 6
|
||||
#define VER_LAMEXP_BUILD 798
|
||||
#define VER_LAMEXP_BUILD 799
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
// Tool versions (minimum expected versions!)
|
||||
|
@ -142,7 +142,7 @@ static const char *known_hosts[] = //Taken form: http://www.alexa.com/topsites
|
||||
NULL
|
||||
};
|
||||
|
||||
static const int MIN_CONNSCORE = 3;
|
||||
static const int MIN_CONNSCORE = 4;
|
||||
static const int VERSION_INFO_EXPIRES_MONTHS = 6;
|
||||
static char *USER_AGENT_STR = "Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.12) Gecko/20101101 IceCat/3.6.12 (like Firefox/3.6.12)";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user