]> git.ipfire.org Git - thirdparty/AWStats.git/commitdiff
Update changelog
authorLaurent Destailleur <eldy@destailleur.fr>
Fri, 29 Apr 2016 09:30:20 +0000 (11:30 +0200)
committerLaurent Destailleur <eldy@destailleur.fr>
Fri, 29 Apr 2016 09:30:20 +0000 (11:30 +0200)
docs/awstats_changelog.txt
make/makepack-awstats.pl

index 8b4274fc6d954215532544a7e9051af762c3e748..95f04ddce05e9ac1e562962527320306f80d0621 100644 (file)
@@ -10,7 +10,10 @@ AWStats Changelog
 - Add .svgz to image list
 - Exclude groups.google from search engines
 - Add %time5 tag to support log format with iso time with timezone.
+- Add option DynamicDNSLookup to make DNS lookup during output instead
+  of during log analysis processing. 
+- Increase default value for MaxRowsInHTMLOutput
+
 
 ***** 7.4 *****
 
index ab56f458a01ef10415218f5480ce2abef64dd0b3..9054bdf0be3c082c7b3f5a4c82799464c3076356 100755 (executable)
@@ -230,6 +230,32 @@ foreach my $target (keys %CHOOSEDPUBLISH) {
 
 if ($nboftargetok) {
        
+       # Update GIT tag if required
+       #---------------------------
+       if ($nbofpublishneedtag)
+       {
+               print "Go to directory $SOURCE\n";
+               $olddir=getcwd();
+               chdir("$SOURCE");
+               
+               print 'Run git tag -a -m "'.$MAJOR.'.'.$MINOR.'" "'.$MAJOR.'.'.$MINOR.'"'."\n";
+               $ret=`git tag -a -m "$MAJOR.$MINOR.$BUILD" "$MAJOR.$MINOR" 2>&1`;
+               if ($ret =~ /already exists/)
+               {
+                       print "WARNING: Tag ".$MAJOR.'.'.$MINOR." already exists. Overwrite (y/N) ? ";
+                       $QUESTIONOVERWRITETAG=<STDIN>; 
+                       chomp($QUESTIONOVERWRITETAG);
+                       if ($QUESTIONOVERWRITETAG =~ /(o|y)/)
+                       {
+                               print 'Run git tag -a -f -m "'.$MAJOR.'.'.$MINOR.'" "'.$MAJOR.'.'.$MINOR.'"'."\n";
+                               $ret=`git tag -a -f -m "$MAJOR.$MINOR" "$MAJOR.$MINOR"`;
+                       }
+               }
+               print 'Run git push --tags'."\n";
+               $ret=`git push --tags`;
+               chdir("$olddir");
+       }
+               
        # Update buildroot
        #-----------------
        if (! $copyalreadydone) {