- Timestamp:
- Nov 25, 2009, 11:55:12 AM (15 years ago)
- Location:
- trunk/BNC
- Files:
-
- 1 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bnchelp.html
r2008 r2012 1 <h3>BKG Ntrip Client (BNC) Version 1.7</h3>1 <h3>BKG Ntrip Client (BNC) Version 2.0</h3> 2 2 3 3 <p> … … 1292 1292 1293 1293 <tr> 1294 <td>Nov 2009 </td><td>Version 1.7 </td>1294 <td>Nov 2009 </td><td>Version 2.0 </td> 1295 1295 <td>[Bug] RINEX navigation file format<br> [Add] Upgrade to Qt Version 4.5.2<br> [Add] Support of NTRIP v2<br> [Add] Rover support via serial port<br> [Add] Show broadcaster table from www.rtcm-ntrip.org<br> [Add] Enable/disable tab widgets<br> [Add] User defined configuration file name<br> [Mod] Switch to configuration files in ini-Format<br> [Add] Daily logfile rotation<br> [Add] Read from TCP/IP port, by-pass NTRIP transport protocol<br> [Add] Save NMEA messages coming from rover<br> [Add] Auto start<br> [Add] Drag and drop ini files<br> [Add] Read from serial port, by-pass NTRIP transport protocol<br> [Mod] Update of SSR messages following RTCM 091-2009-SC104-542<br> [Add] Read from UPD port, by-pass NTRIP transport protocol<br> [Mod] Output format of Broadcast Corrections<br> [Add] Throughput plot<br> [Add] Latency plot</td> 1296 1296 </tr> -
trunk/BNC/bncmain.cpp
r2009 r2012 48 48 #include "bncwindow.h" 49 49 #include "bncsettings.h" 50 #include "bncversion.h" 50 51 51 52 using namespace std; … … 143 144 app.connect(caster, SIGNAL(getThreadsFinished()), &app, SLOT(quit())); 144 145 145 ((bncApp*)qApp)->slotMessage("========== Start BNC v 1.7=========", true);146 ((bncApp*)qApp)->slotMessage("========== Start BNC v" BNCVERSION " =========", true); 146 147 147 148 // Normal case - data from Internet -
trunk/BNC/bncnetqueryv2.cpp
r2011 r2012 116 116 request.setRawHeader("Host" , _url.host().toAscii()); 117 117 request.setRawHeader("Ntrip-Version", "Ntrip/2.0"); 118 request.setRawHeader("User-Agent" , "NTRIP BNC/ 1.7");118 request.setRawHeader("User-Agent" , "NTRIP BNC/"BNCVERSION); 119 119 if (!_url.userName().isEmpty()) { 120 120 QString uName = QUrl::fromPercentEncoding(_url.userName().toAscii()); -
trunk/BNC/bncrinex.cpp
r1876 r2012 56 56 #include "bncnetqueryv2.h" 57 57 #include "bncsettings.h" 58 #include "bncversion.h" 58 59 #include "RTCM3/rtcm3torinex.h" 59 60 … … 83 84 expandEnvVar(_rnxScriptName); 84 85 85 _pgmName = ((bncApp*)qApp)->bncVersion().leftJustified(20, ' ', true);86 _pgmName = QString(BNCPGMNAME).leftJustified(20, ' ', true); 86 87 #ifdef WIN32 87 88 _userName = QString("${USERNAME}"); -
trunk/BNC/bncwindow.cpp
r2010 r2012 55 55 #include "bncfigure.h" 56 56 #include "bncfigurelate.h" 57 #include "bncversion.h" 57 58 58 59 using namespace std; … … 73 74 setMinimumSize(85*ww, 65*ww); 74 75 75 setWindowTitle(tr("BKG Ntrip Client (BNC) Version 1.7"));76 setWindowTitle(tr("BKG Ntrip Client (BNC) Version " BNCVERSION)); 76 77 77 78 connect((bncApp*)qApp, SIGNAL(newMessage(QByteArray,bool)), … … 1100 1101 this, SLOT(slotMountPointsRead(QList<bncGetThread*>))); 1101 1102 1102 ((bncApp*)qApp)->slotMessage("========== Start BNC v 1.7=========", true);1103 ((bncApp*)qApp)->slotMessage("========== Start BNC v" BNCVERSION " =========", true); 1103 1104 1104 1105 bncSettings settings; … … 1318 1319 img->setPixmap(QPixmap(":ntrip-logo.png")); 1319 1320 dlgLayout->addWidget(img, 0,0); 1320 dlgLayout->addWidget(new QLabel("BKG Ntrip Client (BNC) Version 1.7"), 0,1);1321 dlgLayout->addWidget(new QLabel("BKG Ntrip Client (BNC) Version "BNCVERSION), 0,1); 1321 1322 dlgLayout->addWidget(tb,1,0,1,2); 1322 1323 dlgLayout->addWidget(_closeButton,2,1,Qt::AlignRight);
Note:
See TracChangeset
for help on using the changeset viewer.