Showing 2 changed files with 7 additions and 2 deletions
+2
CHANGES
... ...
@@ -1,3 +1,5 @@
1
+2.3.2 (2016-08-17)
2
+  - add tar.gz download button
1 3
 2.3.1 (2016-08-12)
2 4
   - prevent XSS attack in issue and pull request message
3 5
 2.3 (2016-08-06)
+5 -2
templates/include/branch_select.html.ep
... ...
@@ -152,8 +152,11 @@
152 152
           </li>
153 153
           <li>
154 154
             <div class="donwload-zip">
155
-              <a class="btn btn-small" href="<%= url_for("/$user/$project/archive/$rev.zip") %>">
156
-                Download ZIP
155
+              <a title="Download ZIP" class="btn btn-small" href="<%= url_for("/$user/$project/archive/$rev.zip") %>">
156
+                ZIP
157
+              </a>
158
+              <a title="Download tar.gz" class="btn btn-small" href="<%= url_for("/$user/$project/archive/$rev.tar.gz") %>">
159
+                tar.gz
157 160
               </a>
158 161
             </div>
159 162
           </li>