Index: xdocs/changes.xml
===================================================================
--- xdocs/changes.xml	(revision 408148)
+++ xdocs/changes.xml	(arbetskopia)
@@ -23,6 +23,9 @@
     <author email="evenisse@ifrance.com">Emmanuel Venisse</author>
   </properties>
   <body>
+    <release version="1.6.1" date="In SVN">
+      <action dev="JoeDeveloper" type="fix" issue="MPFILEACTIVITY-3" due-to="Dennis Lundberg">Only show the timeframe when maven.changelog.type=range</action>
+    </release>
     <release version="1.6" date="2006-01-29">
       <action dev="ltheussl" type="fix" issue="MPFILEACTIVITY-2">File activity plugin creates wrong links for Subversion repositories. Use
         <code>maven.changelog.svn.baseurl</code>property.
Index: project.xml
===================================================================
--- project.xml	(revision 408148)
+++ project.xml	(arbetskopia)
@@ -22,7 +22,7 @@
   <pomVersion>3</pomVersion>
   <id>maven-file-activity-plugin</id>
   <name>Maven File Activity Plugin</name>
-  <currentVersion>1.6</currentVersion>
+  <currentVersion>1.6.1-SNAPSHOT</currentVersion>
   <gumpRepositoryId>jakarta</gumpRepositoryId>
   <description>This document provides a report of activity in terms of CVS commits and breaks it out by file.</description>
   <shortDescription>File activity Report</shortDescription>
Index: src/plugin-resources/maven-file-activity-plugin.jsl
===================================================================
--- src/plugin-resources/maven-file-activity-plugin.jsl	(revision 408148)
+++ src/plugin-resources/maven-file-activity-plugin.jsl	(arbetskopia)
@@ -3,7 +3,7 @@
 <!--
  * ========================================================================
  * 
- * Copyright 2004 The Apache Software Foundation.
+ * Copyright 2004-2006 The Apache Software Foundation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -57,7 +57,10 @@
         </j:choose>
     <subsection name="${setname}">
           <p>
-            Timeframe: ${maven.changelog.range} days,
+            <j:set var="type" value="${maven.changelog.type}"/>
+            <j:if test="${type == 'range'}">
+              Timeframe: ${maven.changelog.range} days,
+            </j:if>
             Total Commits:
             <x:expr select="count(./changelog-entry)"/>
             Total Number of Files Changed:

