diff --git a/CHANGELOG b/CHANGELOG index 04dfe7a..4edcd11 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -6,6 +6,7 @@ will perform a lookup of this locator (and if it's a 6 character locator, of the square) in the log and print on which the square was worked/cfmed before, and which callsigns were logged from it. +- Download all details from LoTW (Zone, Grid, ...), not just basic QSO info 2019-Sep-08: Version 0.6.0 ------------------------------------------------------------------------------- diff --git a/yfksubs.pl b/yfksubs.pl index 7b086cf..a4a7f14 100644 --- a/yfksubs.pl +++ b/yfksubs.pl @@ -6447,7 +6447,7 @@ sub getlotwstartdate { sub downloadlotw { my $startdate = shift; - my $url = "https://lotw.arrl.org/lotwuser/lotwreport.adi?qso_query=1&login=$lotwuser&password=$lotwpass&qso_qsl=yes&qso_withown=yes&qso_qslsince=$startdate"; + my $url = "https://lotw.arrl.org/lotwuser/lotwreport.adi?qso_query=1&login=$lotwuser&password=$lotwpass&qso_qsl=yes&qso_withown=yes&qso_qsldetail=yes&qso_qslsince=$startdate"; my $filename = "/tmp/$mycall-lotw-download.adi";